diff --git a/.gitmodules b/.gitmodules index 16936c9f4f18e1fb671058c60ce97a21cb226317..4415d58606d040566c50f4fccee65707f1c1ac82 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,4 @@ [submodule "processing_modules/unit-converter"] path = processing_modules/unit-converter url = https://earth.bsc.es/gitlab/ac/unit-converter.git + branch= master diff --git a/processing_modules/CAPMoN_processor.py b/processing_modules/CAPMoN_processor.py index 21219793bb74722de44a5ea413ed7561ef56dd8e..98e782faab1591b4bd6a2d5285006d0d90e6c722 100755 --- a/processing_modules/CAPMoN_processor.py +++ b/processing_modules/CAPMoN_processor.py @@ -249,7 +249,6 @@ class StandardiseNetworkData: elif unique_config == '1.0': instrument_str = 'Thermo 49i' elif 'PREC' in self.run_details['parameter']: - print(parsing_obj.parsed_metadata['analytical_method']) instrument_str = str(parsing_obj.parsed_metadata['analytical_method']) instrument_str = re.sub("\(.*?\)","()",instrument_str).replace('(', '').replace(')', '')[:-1] else: diff --git a/processing_modules/EANET_processor.py b/processing_modules/EANET_processor.py index 645c90776a0aa15cc5efc4b02e90df4d5a472af0..64baa916d52c81961810de56baf55ce8a58703d0 100755 --- a/processing_modules/EANET_processor.py +++ b/processing_modules/EANET_processor.py @@ -405,7 +405,6 @@ class StandardiseNetworkData: #otherwise do nothing to measured values else: - print(parsing_obj.parsed_data[self.run_details['parameter']]) for n, meas in enumerate(parsing_obj.parsed_data[self.run_details['parameter']]): try: diff --git a/processing_modules/EBAS_processor.py b/processing_modules/EBAS_processor.py index 0725a7dfb0e935c8c3c55a7fc97e39bcdbfebeef..bd5d3f1f726e2b1add054a2d506902a15a66c935 100755 --- a/processing_modules/EBAS_processor.py +++ b/processing_modules/EBAS_processor.py @@ -1026,13 +1026,16 @@ class StandardiseNetworkData: if 'Station other IDs' in line_titles: other_ids = line_data[line_titles.index('Station other IDs')].strip() if (other_ids != '') & ('other_ids' not in self.concat_meta): - self.concat_meta['other_ids'] = '' + concat_other_ids = '' other_ids = other_ids.split(',') for o_id in other_ids: o_id_split = o_id.split('(') - self.concat_meta['other_ids'] = self.concat_meta['other_ids'] + '{}:{};'.format(o_id_split[1][:-1].strip(),o_id_split[0].strip()) - #remove end semi-colon - self.concat_meta['other_ids'] = self.concat_meta['other_ids'][:-1] + #ensure have a network and ID pair + if len(o_id_split) == 2: + concat_other_ids = concat_other_ids + '{}:{};'.format(o_id_split[1][:-1].strip(),o_id_split[0].strip()) + #remove end semi-colon and set variable + if concat_other_ids != '': + self.concat_meta['other_ids'] = concat_other_ids[:-1] #area_classification/land_use if 'Station setting' in line_titles: diff --git a/processing_modules/GHOST_standards.py b/processing_modules/GHOST_standards.py index 206758b9cb1bf72685797e72d941b47b6d76683c..127a3f8ea19d4752bfafa96f91bb3b075df7725c 100755 --- a/processing_modules/GHOST_standards.py +++ b/processing_modules/GHOST_standards.py @@ -1778,6 +1778,7 @@ EBAS_native_networks = {'ACTRIS':'EBAS-ACTRIS', 'ACTRIS_preliminary':'EBAS-ACTRIS', 'AMAP':'EBAS-AMAP', 'AMAP_public':'EBAS-AMAP', + 'ATMO-ACCESS':'EBAS-ATMO_ACCESS', 'CAMP':'EBAS-CAMP', 'CAMPAIGN':'EBAS-CAMPAIGN', 'COLOSSAL':'EBAS-COLOSSAL', @@ -1804,6 +1805,8 @@ EBAS_native_networks = {'ACTRIS':'EBAS-ACTRIS', 'NOAA-ESRL_NRT':'EBAS-NOAA_ESRL', 'NOAA-GGGRN':'EBAS-NOAA_GGGRN', 'OECD':'EBAS-OECD', + 'RI-URBANS':'EBAS-RI_URBANS', + 'RI-URBANS_NRT':'EBAS-RI_URBANS', 'UK_DECC':'EBAS-UK_DECC', 'GAW-WDCA':'EBAS-WMO_WDCA', 'GAW-WDCA_NRT':'EBAS-WMO_WDCA', @@ -1818,6 +1821,8 @@ EBAS_network_priorities = ['EBAS-EMEP', 'EBAS-NOAA_ESRL', 'EBAS-NOAA_GGGRN', 'EBAS-ACTRIS', + 'EBAS-RI_URBANS', + 'EBAS-ATMO_ACCESS', 'EBAS-EUCAARI', 'EBAS-EUSAAR', 'EBAS-HELCOM', @@ -1925,8 +1930,10 @@ standard_sampling_types = { 'KNF IP20-T': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'11.5', 'instrument_further_details':'See more detail here: https://www.overstocklabequipment.com/product-p/un811ktp.htm'}, 'Leckel SEQ 47-50': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'16.66-50', 'instrument_manual_name':'Leckel_SEQ_47-50_Specs.pdf'}, 'Leckel LVS3': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'16.66-38.33', 'instrument_manual_name':'Leckel_LVS3_MVS6_Specs.pdf'}, + 'Leckel LVS6': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'38.33-50', 'instrument_manual_name':'Leckel_LVS6_Specs.pdf'}, 'Leckel MVS6': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'38.33-58.33', 'instrument_manual_name':'Leckel_LVS3_MVS6_Specs.pdf'}, 'Lipinski AGT24': {'sample_preparation_type':'filter', 'instrument_further_details':'Not many details but what there is, is here: http://dd.eionet.europa.eu/vocabularyconcept/aq/samplingequipment/LipinskiAGT24/view?facet=HTML+Representation', 'primary_sampling_assumption':True, 'primary_sampling_process_details':'Make assumption sampling instrument is low volume continuous.'}, + 'MCV CBV-1Dm': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'38.33', 'instrument_manual_name':'See details here: https://mcvsa.com/es/productes/captador-de-bajo-volumen-para-el-muestreo-de-un-filtro/'}, 'MCZ LVS1': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'16.66-38.33', 'instrument_manual_name':'MCZ_LVS1_Specs.pdf'}, 'MCZ LVS16': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'16.66-38.33', 'instrument_manual_name':'MCZ_LVS16_Specs.pdf'}, 'Met One E-FRM-DC': {'sample_preparation_type':'filter', 'documented_flow_rate':'16.67', 'instrument_manual_name':'Met_One_E-FRM-DC_Specs.pdf'}, diff --git a/processing_modules/NZ_ECAN_processor.py b/processing_modules/NZ_ECAN_processor.py index 71adbbaa0ad283eaa66a7d41622eeb35ad6f5223..7a9731bd877501c7d7364e22ddf6fe980cce749a 100755 --- a/processing_modules/NZ_ECAN_processor.py +++ b/processing_modules/NZ_ECAN_processor.py @@ -46,7 +46,6 @@ class StandardiseNetworkData: #get data file to parse data_files = self.gather_data_files() - print(data_files) #parse station reference data files for data_file in data_files: diff --git a/processing_modules/WMO_WDCPC_processor.py b/processing_modules/WMO_WDCPC_processor.py index da94d942697291aba2690ca5ed8120785df24482..8498895c34e7238b4dd5452e5b62e2bb5b336fc3 100755 --- a/processing_modules/WMO_WDCPC_processor.py +++ b/processing_modules/WMO_WDCPC_processor.py @@ -383,7 +383,6 @@ class StandardiseNetworkData: else: site_data[column_header]['value'] = [255]*len(site_data['time']['value']) #------------------------------------------------------ - #print(site_data) #standardise metadata/data formats and write out station data to numpy file write_obj = NetworkFileStandardise(site_metadata, site_data, self.run_details, self.parameter_details) diff --git a/processing_modules/__pycache__/EBAS_processor.cpython-39.pyc b/processing_modules/__pycache__/EBAS_processor.cpython-39.pyc index bf347d54afd9be241243b70b92274f0be9d37126..5bc9852a26f090e93cebd1da33d6235c2ef5a159 100644 Binary files a/processing_modules/__pycache__/EBAS_processor.cpython-39.pyc and b/processing_modules/__pycache__/EBAS_processor.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/GHOST_standards.cpython-311.pyc b/processing_modules/__pycache__/GHOST_standards.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd2592045b8ee0c72808e4d456c05f644dac6c42 Binary files /dev/null and b/processing_modules/__pycache__/GHOST_standards.cpython-311.pyc differ diff --git a/processing_modules/__pycache__/GHOST_standards.cpython-39.pyc b/processing_modules/__pycache__/GHOST_standards.cpython-39.pyc index 6c389ef3d13525d9fcd7a52b374ccdeffd71ae9d..77edba7b9f13bcd3c076594263b017dd38e644d8 100644 Binary files a/processing_modules/__pycache__/GHOST_standards.cpython-39.pyc and b/processing_modules/__pycache__/GHOST_standards.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/crossnetwork_processing_functions.cpython-39.pyc b/processing_modules/__pycache__/crossnetwork_processing_functions.cpython-39.pyc index c6d9864a11cd38502a4cecaf8add77c06ae11fac..03b79eb7de4234be82287de136eadac3a9cac3ef 100644 Binary files a/processing_modules/__pycache__/crossnetwork_processing_functions.cpython-39.pyc and b/processing_modules/__pycache__/crossnetwork_processing_functions.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/data_product.cpython-39.pyc b/processing_modules/__pycache__/data_product.cpython-39.pyc index 7d2ebb636783629e38665351ec953ba5dca2e21c..c3a988e281b74ca62a7120847ee9fd5bcea288d1 100644 Binary files a/processing_modules/__pycache__/data_product.cpython-39.pyc and b/processing_modules/__pycache__/data_product.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/data_product_formulae.cpython-39.pyc b/processing_modules/__pycache__/data_product_formulae.cpython-39.pyc index 452833c5346e1c07e23f18517d65aa50cc862e34..6033c7d6bc33ad6afb476a547c45ec3ce18f1e9d 100644 Binary files a/processing_modules/__pycache__/data_product_formulae.cpython-39.pyc and b/processing_modules/__pycache__/data_product_formulae.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/globally_gridded_metadata.cpython-39.pyc b/processing_modules/__pycache__/globally_gridded_metadata.cpython-39.pyc index 8e2bf3a6ec6775fb9f0346c97043fa1ad42cda4b..90fdc7e09f57393eb42d3205110165a5b6d4432c 100644 Binary files a/processing_modules/__pycache__/globally_gridded_metadata.cpython-39.pyc and b/processing_modules/__pycache__/globally_gridded_metadata.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/merge.cpython-39.pyc b/processing_modules/__pycache__/merge.cpython-39.pyc index 46e78f80336660aee24f107bee1320f781b45cb2..0a1d4216b4892323330da9d01ac1fa992c244b52 100644 Binary files a/processing_modules/__pycache__/merge.cpython-39.pyc and b/processing_modules/__pycache__/merge.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/network_file_standardise.cpython-39.pyc b/processing_modules/__pycache__/network_file_standardise.cpython-39.pyc index a054a303465042fb31d5fed767665d5f9c82e8cb..91803955001dfd705e178f9e9041f51bfc4479b7 100644 Binary files a/processing_modules/__pycache__/network_file_standardise.cpython-39.pyc and b/processing_modules/__pycache__/network_file_standardise.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/network_parsers.cpython-39.pyc b/processing_modules/__pycache__/network_parsers.cpython-39.pyc index c3303f81663c10036762f83ea6d15f80176ba0ca..a55422eda46b852810c90a837cfd0bf39b3b071d 100644 Binary files a/processing_modules/__pycache__/network_parsers.cpython-39.pyc and b/processing_modules/__pycache__/network_parsers.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/process_GHOST_stage.cpython-39.pyc b/processing_modules/__pycache__/process_GHOST_stage.cpython-39.pyc index 8766b68cfd11d0452fbc976d5c109dd607f7e428..d1043572a32039c16cbf05ad1d3b979dbf849d83 100644 Binary files a/processing_modules/__pycache__/process_GHOST_stage.cpython-39.pyc and b/processing_modules/__pycache__/process_GHOST_stage.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/quality_control.cpython-39.pyc b/processing_modules/__pycache__/quality_control.cpython-39.pyc index 652c39c9fa17edd6b5825b15a8d44163a8714214..e19e85baaa27c7e477c4adb79df78721c720ecb1 100644 Binary files a/processing_modules/__pycache__/quality_control.cpython-39.pyc and b/processing_modules/__pycache__/quality_control.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/split_EBAS.cpython-39.pyc b/processing_modules/__pycache__/split_EBAS.cpython-39.pyc index 047efba30bf2b14c0ce57d0ef7611fc7b1f429e2..c6e62438b1821233f77c9cac6e0f64361dcead2f 100644 Binary files a/processing_modules/__pycache__/split_EBAS.cpython-39.pyc and b/processing_modules/__pycache__/split_EBAS.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/standardisation_mapping_functions.cpython-39.pyc b/processing_modules/__pycache__/standardisation_mapping_functions.cpython-39.pyc index 1c49d0e2826db9e840dc52885acdd75809199373..da528d7f3daf821011a21add90a9be5a774482c0 100644 Binary files a/processing_modules/__pycache__/standardisation_mapping_functions.cpython-39.pyc and b/processing_modules/__pycache__/standardisation_mapping_functions.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/station_aggregate.cpython-39.pyc b/processing_modules/__pycache__/station_aggregate.cpython-39.pyc index 312275097b2585f4f6afb883eda63ba554eb6cff..2b63b623f8791bd42cdb8b2070eaab90994fa168 100644 Binary files a/processing_modules/__pycache__/station_aggregate.cpython-39.pyc and b/processing_modules/__pycache__/station_aggregate.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/station_concatenate.cpython-39.pyc b/processing_modules/__pycache__/station_concatenate.cpython-39.pyc index 7241602ce97bbf10bc806f4e0ba26f96ffaa4885..516fe86d869e5d7241b5a5b095f2a0842f697c6f 100644 Binary files a/processing_modules/__pycache__/station_concatenate.cpython-39.pyc and b/processing_modules/__pycache__/station_concatenate.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/station_temporal_average.cpython-39.pyc b/processing_modules/__pycache__/station_temporal_average.cpython-39.pyc index 9421aa5b24da3438012f5d4c7f984b63652fe6f9..9ebc6ee94857fe53fb9ad1aa96a58f75d10048a5 100644 Binary files a/processing_modules/__pycache__/station_temporal_average.cpython-39.pyc and b/processing_modules/__pycache__/station_temporal_average.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/submit_greasy.cpython-39.pyc b/processing_modules/__pycache__/submit_greasy.cpython-39.pyc index 0213f4914dde2610233938d2b3186c4a3369ce5a..a96945d896aaabc4ffa839ab6f1800e5ce4825d5 100644 Binary files a/processing_modules/__pycache__/submit_greasy.cpython-39.pyc and b/processing_modules/__pycache__/submit_greasy.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/temporal_codes.cpython-39.pyc b/processing_modules/__pycache__/temporal_codes.cpython-39.pyc index 8327dcd1afe504f553c65900a8d432da5912d6ed..953dc0a7349ada2df73092d4e56bf2b66c63b771 100644 Binary files a/processing_modules/__pycache__/temporal_codes.cpython-39.pyc and b/processing_modules/__pycache__/temporal_codes.cpython-39.pyc differ diff --git a/processing_modules/__pycache__/time_functions.cpython-39.pyc b/processing_modules/__pycache__/time_functions.cpython-39.pyc index 82746e2db762d81f2e9854faafcd96c98e6845ba..7df2af8aaf9f7a13da0455a8f4dab8da64556550 100644 Binary files a/processing_modules/__pycache__/time_functions.cpython-39.pyc and b/processing_modules/__pycache__/time_functions.cpython-39.pyc differ diff --git a/processing_modules/crossnetwork_processing_functions.py b/processing_modules/crossnetwork_processing_functions.py index 9baf64bfbc9bbbef9e82a3630b5e3ee2379ec1c4..6c146cadf4848fd0c36b3876ccb5488c878e274e 100755 --- a/processing_modules/crossnetwork_processing_functions.py +++ b/processing_modules/crossnetwork_processing_functions.py @@ -25,7 +25,7 @@ def get_default_parameters_per_network(network): 'AERONET_v3_lev1.5':['AOD_380nm','AOD_440nm','AOD_500nm','AOD_500nm_COARSE','AOD_500nm_FINE','FINE_MODE_FRAC_500nm','AOD_675nm','AOD_870nm','AOD_1020nm','AE_440-870nm','EXTAOD_440nm','EXTAOD_440nm_COARSE','EXTAOD_440nm_FINE','EXTAOD_675nm','EXTAOD_675nm_COARSE','EXTAOD_675nm_FINE','EXTAOD_870nm','EXTAOD_870nm_COARSE','EXTAOD_870nm_FINE','EXTAOD_1020nm','EXTAOD_1020nm_COARSE','EXTAOD_1020nm_FINE','EXTAE_440-870nm','ABSAOD_440nm','ABSAOD_675nm','ABSAOD_870nm','ABSAOD_1020nm','ABSAE_440-870nm','SSA_440nm','SSA_675nm','SSA_870nm','SSA_1020nm','ASY_440nm','ASY_440nm_COARSE','ASY_440nm_FINE','ASY_675nm','ASY_675nm_COARSE','ASY_675nm_FINE','ASY_870nm','ASY_870nm_COARSE','ASY_870nm_FINE','ASY_1020nm','ASY_1020nm_COARSE','ASY_1020nm_FINE','SPH','RIN_REAL_440nm','RIN_REAL_675nm','RIN_REAL_870nm','RIN_REAL_1020nm','RIN_IMAG_440nm','RIN_IMAG_675nm','RIN_IMAG_870nm','RIN_IMAG_1020nm','VCONC','VCONC_FINE','VCONC_COARSE','VCONC_BIN1','VCONC_BIN2','VCONC_BIN3','VCONC_BIN4','VCONC_BIN5','VCONC_BIN6','VCONC_BIN7','VCONC_BIN8','VCONC_BIN9','VCONC_BIN10','VCONC_BIN11','VCONC_BIN12','VCONC_BIN13','VCONC_BIN14','VCONC_BIN15','VCONC_BIN16','VCONC_BIN17','VCONC_BIN18','VCONC_BIN19','VCONC_BIN20','VCONC_BIN21','VCONC_BIN22'], 'AERONET_v3_lev2.0':['AOD_380nm','AOD_440nm','AOD_500nm','AOD_500nm_COARSE','AOD_500nm_FINE','FINE_MODE_FRAC_500nm','AOD_675nm','AOD_870nm','AOD_1020nm','AE_440-870nm','EXTAOD_440nm','EXTAOD_440nm_COARSE','EXTAOD_440nm_FINE','EXTAOD_675nm','EXTAOD_675nm_COARSE','EXTAOD_675nm_FINE','EXTAOD_870nm','EXTAOD_870nm_COARSE','EXTAOD_870nm_FINE','EXTAOD_1020nm','EXTAOD_1020nm_COARSE','EXTAOD_1020nm_FINE','EXTAE_440-870nm','ABSAOD_440nm','ABSAOD_675nm','ABSAOD_870nm','ABSAOD_1020nm','ABSAE_440-870nm','SSA_440nm','SSA_675nm','SSA_870nm','SSA_1020nm','ASY_440nm','ASY_440nm_COARSE','ASY_440nm_FINE','ASY_675nm','ASY_675nm_COARSE','ASY_675nm_FINE','ASY_870nm','ASY_870nm_COARSE','ASY_870nm_FINE','ASY_1020nm','ASY_1020nm_COARSE','ASY_1020nm_FINE','SPH','RIN_REAL_440nm','RIN_REAL_675nm','RIN_REAL_870nm','RIN_REAL_1020nm','RIN_IMAG_440nm','RIN_IMAG_675nm','RIN_IMAG_870nm','RIN_IMAG_1020nm','VCONC','VCONC_FINE','VCONC_COARSE','VCONC_BIN1','VCONC_BIN2','VCONC_BIN3','VCONC_BIN4','VCONC_BIN5','VCONC_BIN6','VCONC_BIN7','VCONC_BIN8','VCONC_BIN9','VCONC_BIN10','VCONC_BIN11','VCONC_BIN12','VCONC_BIN13','VCONC_BIN14','VCONC_BIN15','VCONC_BIN16','VCONC_BIN17','VCONC_BIN18','VCONC_BIN19','VCONC_BIN20','VCONC_BIN21','VCONC_BIN22'], 'BJMEMC':['O3','NO2','SO2','CO','PM10','PM2.5'], - 'CANADA_NAPS':['O3','NO','NO2','SO2','CO','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','NH3','HNO3','HCHO','C','Ca++','Cl-','EC','K+','Mg++','Mn','MSA','Na+','NH4+','NO3-','OC','SO4--','PM10','PM10_Al','PM10_As','PM10_C','PM10_Ca++','PM10_Cd','PM10_Cl-','PM10_Co','PM10_Cr','PM10_Cu','PM10_EC','PM10_Fe','PM10_K+','PM10_Mg++','PM10_Mn','PM10_MSA','PM10_Na+','PM10_NH4+','PM10_Ni','PM10_NO3-','PM10_OC','PM10_Pb','PM10_Se','PM10_SO4--','PM10_V','PM10_Zn','PM2.5','PM2.5_Al','PM2.5_As','PM2.5_C','PM2.5_Ca++','PM2.5_Cd','PM2.5_Cl-','PM2.5_Co','PM2.5_Cr','PM2.5_Cu','PM2.5_EC','PM2.5_Fe','PM2.5_K+','PM2.5_Mg++','PM2.5_Mn','PM2.5_MSA','PM2.5_Na+','PM2.5_NH4+','PM2.5_Ni','PM2.5_NO3-','PM2.5_OC','PM2.5_Pb','PM2.5_Se','PM2.5_SO4--','PM2.5_V','PM2.5_Zn'], + 'CANADA_NAPS':['O3','NO','NO2','SO2','CO','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','NH3','HNO3','HCHO','C','Ca++','Cl-','EC','K+','Mg++','Mn','MSA','Na+','NH4+','NO3-','OC','SO4--','PM10','PM10_Al','PM10_As','PM10_C','PM10_Ca++','PM10_Cd','PM10_Cl-','PM10_Co','PM10_Cr','PM10_Cu','PM10_EC','PM10_Fe','PM10_K+','PM10_Mg++','PM10_Mn','PM10_MSA','PM10_Na+','PM10_NH4+','PM10_Ni','PM10_NO3-','PM10_OC','PM10_Pb','PM10_Se','PM10_SO4--','PM10_V','PM10_Zn','PM2.5','PM2.5_Al','PM2.5_As','PM2.5_C','PM2.5_Ca++','PM2.5_Cd','PM2.5_Cl-','PM2.5_Co','PM2.5_Cr','PM2.5_Cu','PM2.5_EC','PM2.5_Fe','PM2.5_K+','PM2.5_Mg++','PM2.5_Mn','PM2.5_MSA','PM2.5_Na+','PM2.5_NH4+','PM2.5_Ni','PM2.5_NO3-','PM2.5_OC','PM2.5_Pb','PM2.5_Se','PM2.5_SO4--','PM2.5_V','PM2.5_Zn','SO4--_PREC'], 'CAPMoN':['O3','PM10_Al','PM10_As','PM10_Cd','PM10_Co','PM10_Cr','PM10_Cu','PM10_Fe','PM10_Mn','PM10_Ni','PM10_Pb','PM10_Se','PM10_V','PM10_Zn', 'SO4--_PREC', 'NO3-_PREC', 'NH4+_PREC', 'Cl-_PREC', 'Na+_PREC', 'K+_PREC', 'Mg++_PREC', 'Ca++_PREC', 'PREC_ACCUM'], 'CHILE_SINCA':['O3','NO','NO2','CO','SO2','CH4','NMHC','HC','PM10','PM2.5','PM10_As','PM10_Cu','PM10_Pb'], 'CNEMC':['O3','NO2','SO2','CO','PM10','PM2.5'], @@ -92,6 +92,16 @@ def get_default_product_parameters_per_network(network): 'BrC_ABSAOD_440nm':{'function':'calculate_aod_brc', 'components':['ABSAOD_440nm','BC_ABSAOD_440nm']}, 'SCHUSTER_FILTER_BC_BrC':{'function':'calculate_schuster_bc_brc', 'components':['RIN_IMAG_675nm','RIN_IMAG_870nm','RIN_IMAG_1020nm']}, 'SCHUSTER_FILTER_SS':{'function':'calculate_schuster_ss', 'components':['SSA_440nm','SSA_675nm']}}, + 'CANADA_NAPS': {'Ca++_WETDEP': {'function':'calculate_wetdep', 'components':['Ca++_PREC', 'PREC_ACCUM']}, + 'Mg++_WETDEP': {'function':'calculate_wetdep', 'components':['Mg++_PREC', 'PREC_ACCUM']}, + 'K+_WETDEP': {'function':'calculate_wetdep', 'components':['K+_PREC', 'PREC_ACCUM']}, + 'Na+_WETDEP': {'function':'calculate_wetdep', 'components':['Na+_PREC', 'PREC_ACCUM']}, + 'NH4+_WETDEP': {'function':'calculate_wetdep', 'components':['NH4+_PREC', 'PREC_ACCUM']}, + 'NO3-_WETDEP': {'function':'calculate_wetdep', 'components':['NO3-_PREC', 'PREC_ACCUM']}, + 'Cl-_WETDEP': {'function':'calculate_wetdep', 'components':['Cl-_PREC', 'PREC_ACCUM']}, + 'SO4--_WETDEP': {'function':'calculate_wetdep', 'components':['SO4--_PREC', 'PREC_ACCUM']}, + 'SO4--_NSS_WETDEP': {'function':'calculate_wetdep', 'components':['SO4--_NSS_PREC', 'PREC_ACCUM']}, + 'PO4---_WETDEP': {'function':'calculate_wetdep', 'components':['PO4---_PREC', 'PREC_ACCUM']}}, 'CAPMoN': {'Ca++_WETDEP':{'function':'calculate_wetdep', 'components':['Ca++_PREC', 'PREC_ACCUM']}, 'Mg++_WETDEP':{'function':'calculate_wetdep', 'components':['Mg++_PREC', 'PREC_ACCUM']}, 'K+_WETDEP':{'function':'calculate_wetdep', 'components':['K+_PREC', 'PREC_ACCUM']}, @@ -324,7 +334,9 @@ def get_configuration_variables(slurm_job_ID, network=None, parameter=None, star #fill out defaults #networks + set_default_networks = False if run_details['networks'] == 'default': + set_default_networks = True run_details['networks'] = ['AERONET_v3_lev1.5','AERONET_v3_lev2.0','BJMEMC','CANADA_NAPS','CAPMoN', 'CHILE_SINCA','CNEMC','EANET','EBAS','EEA_AIRBASE','EEA_AQ_eReporting','JAPAN_NIES','MEXICO_CDMX','MITECO', 'NAPMD','NOAA_ISD','NZ_ECAN','NZ_LAWA','UK_AIR','US_EPA_AirNow_DOS','US_EPA_AQS','US_EPA_CASTNET', @@ -351,10 +363,14 @@ def get_configuration_variables(slurm_job_ID, network=None, parameter=None, star #stages_to_process if run_details['stages_to_process'] == 'default': - run_details['stages_to_process'] = ['S1','S2','S3','T1','T2','P1','M1','E1'] + if set_default_networks: + run_details['stages_to_process'] = ['S1','S2','S3','T1','T2','P1','E1','M1'] + else: + run_details['stages_to_process'] = ['S1','S2','S3','T1','T2','P1','E1'] + #if default not set, make sure stages are ordered correctly else: - ordered_stages = ['S1','S2','S3','T1','T2','P1','M1','E1'] + ordered_stages = ['S1','S2','S3','T1','T2','P1','E1','M1'] run_details['stages_to_process'] = [stage for stage in ordered_stages if stage in run_details['stages_to_process']] return run_details, parameter_details, network_details @@ -378,7 +394,7 @@ def create_GHOST_stage_logfile(process_code, run_details, previous_stage_data_fi #delete previous stage temporary data files associated with param_to_parallelise_by if configured to, if not stage S1/T1/P1/M1/E1, and process code is 0 or 1 if run_details['remove_temporary_data_files_after_stage']: - if run_details['GHOST_stage'] not in ['S1','T1','P1','M1','E1']: + if run_details['GHOST_stage'] not in ['S1','T1','P1','E1','M1']: if int(process_code) in [0,1]: if type(previous_stage_data_files) == list: for data_file in previous_stage_data_files: @@ -401,6 +417,8 @@ def check_GHOST_pipeline_outcome(pipeline_status, run_details): not_finished_pipeline = [] failed_caught = [] failed_uncaught = [] + dependent_not_processed = [] + dependent_failed = [] #get all output pipeline log filenames output_pipeline_log_files = [] @@ -426,40 +444,46 @@ def check_GHOST_pipeline_outcome(pipeline_status, run_details): #get specific pipeline reference pipeline_reference = output_pipeline_log_file.split('/')[-1].split('.out')[0] - #test if output log file exists for pipeline (if not write to not finished pipeline list) - if not os.path.isfile(output_pipeline_log_file): - not_finished_pipeline.append(pipeline_reference) - - #otherwise, output log file exists - else: - #get second last line of output - line = subprocess.check_output(['tail', '-2', output_pipeline_log_file], encoding='utf8').strip() - - #analyse pipeline outcome + #get second last line of output + line = subprocess.check_output(['tail', '-2', output_pipeline_log_file], encoding='utf8').strip() + + #analyse pipeline outcome + + #second last line should have the following string inside: 'PROCESSING OF ALL DESIRED STAGES FOR' if the pipeline has completed successfully + if 'PROCESSING OF ALL DESIRED STAGES FOR' in line: + success.append(pipeline_reference) + + #if the second last line contains the string: 'NOT PROCESSED AS HAVE NO', then the pipeline has terminated early due to a lack of data + elif 'NOT PROCESSED AS HAVE NO' in line: + no_data.append(pipeline_reference) + + #if the second last line contains the string: 'BUT 0 STATIONS REMAIN', then the pipeline has terminated early due to a lack of data + elif 'BUT 0 STATIONS REMAIN' in line: + no_data.append(pipeline_reference) - #second last line should have the following string inside: 'PROCESSING OF ALL DESIRED STAGES FOR' if the pipeline has completed successfully - if 'PROCESSING OF ALL DESIRED STAGES FOR' in line: - success.append(pipeline_reference) + #if the second last line contains the string: 'WITH CAUGHT ERROR, then the pipeline has terminated early due to caught error/s + elif 'WITH CAUGHT ERROR' in line: + failed_caught.append(pipeline_reference) - #if the second last line contains the string: 'NOT PROCESSED AS HAVE NO', then the pipeline has terminated early due to a lack of data - elif 'NOT PROCESSED AS HAVE NO' in line: - no_data.append(pipeline_reference) + #if the second last line contains the string: 'UNCAUGHT ERROR', then the pipeline has terminated early due to uncaught error/s + elif 'UNCAUGHT ERROR' in line: + failed_uncaught.append(pipeline_reference) - #if the second last line contains the string: 'BUT 0 STATIONS REMAIN', then the pipeline has terminated early due to a lack of data - elif 'BUT 0 STATIONS REMAIN' in line: - no_data.append(pipeline_reference) + #if the second last line contains the string: 'DID NOT FINISH DUE TO UNFINISHED JOB', then the pipeline has terminated early due stage job/s not terminating before wallclock + elif 'DID NOT FINISH DUE TO UNFINISHED JOB' in line: + not_finished_stage.append(pipeline_reference) - #if the second last line contains the string: 'WITH CAUGHT ERROR, then the pipeline has terminated early due to caught error/s - elif 'WITH CAUGHT ERROR' in line: - failed_caught.append(pipeline_reference) + #if the second last line contains the string: 'NOT PROCESSED AS DEPENDENT PARAMETERS NOT PROCESSED', then the pipeline has terminated early as dependent parameters are not processed + elif 'NOT PROCESSED AS DEPENDENT PARAMETERS NOT PROCESSED' in line: + dependent_not_processed.append(pipeline_reference) - #if the second last line contains the string: 'UNCAUGHT ERROR', then the pipeline has terminated early due to uncaught error/s - elif 'UNCAUGHT ERROR' in line: - failed_uncaught.append(pipeline_reference) + #if the second last line contains the string: 'NOT PROCESSED AS DEPENDENT PARAMETERS DID NOT FINISH PROCESSING CORRECTLY', then the pipeline has terminated early as dependent parameters did not finish processing correctly + elif 'NOT PROCESSED AS DEPENDENT PARAMETERS DID NOT FINISH PROCESSING CORRECTLY' in line: + dependent_failed.append(pipeline_reference) - #if the second last line contains the string: 'DID NOT FINISH DUE TO UNFINISHED JOB', then the pipeline has terminated early due stage job/s not terminating before wallclock - elif 'DID NOT FINISH DUE TO UNFINISHED JOB' in line: - not_finished_stage.append(pipeline_reference) + #if the second last line contains the string: 'NOT PROCESSED AS AT LEAST 1 NETWORK PROCESSING PIPELINE FAILED', then the pipeline has terminated early as at least 1 network processing pipeline failed + elif 'NOT PROCESSED AS AT LEAST 1 NETWORK PROCESSING PIPELINE FAILED' in line: + dependent_failed.append(pipeline_reference) #open a summary log file to report on GHOST processing output summary_file= open("{}/run/summary_logs/{}.out".format(run_details['process_root'],run_details['slurm_job_ID']),"w") @@ -476,6 +500,10 @@ def check_GHOST_pipeline_outcome(pipeline_status, run_details): summary_file.write("{} PIPELINE/S TERMINATED EARLY DUE TO STAGE JOBS NOT FINISHING BEFORE WALLCLOCK.\nTHESE ARE: {}\n".format(len(not_finished_stage),not_finished_stage)) if len(not_finished_pipeline) > 0: summary_file.write("{} PIPELINE/S TERMINATED EARLY DUE TO PIPELINE NOT FINISHING BEFORE WALLCLOCK.\nTHESE ARE: {}\n".format(len(not_finished_pipeline),not_finished_pipeline)) + if len(dependent_not_processed) > 0: + summary_file.write("{} PIPELINE/S TERMINATED EARLY DUE TO DEPENDENT PARAMETER NOT BEING PROCESSED.\nTHESE ARE: {}\n".format(len(dependent_not_processed),dependent_not_processed)) + if len(dependent_failed) > 0: + summary_file.write("{} PIPELINE/S TERMINATED EARLY DUE TO DEPENDENT PARAMETER PIPELINES FAILING.\nTHESE ARE: {}\n".format(len(dependent_failed),dependent_failed)) #close summary log file summary_file.close() diff --git a/processing_modules/data_product.py b/processing_modules/data_product.py index 0580f2a8d26ef9b827506213ddd051739a3e2e54..213cbf9da49c15ed3a272779ba7c68380a56f862 100644 --- a/processing_modules/data_product.py +++ b/processing_modules/data_product.py @@ -96,25 +96,24 @@ class DataProduct: max_calculation_parameters = max_calculation_parameters - (len(product_dict['option']) - 1) #iterate through calculation parameters and get intersecting station references across files + # parameters needed for product calculation are sometimes measured with different instruments, therefore + # have different method suffixes in station references -> cut them only take first part aka 'original station reference' + # removing this suffix can lead to cases where have duplicate references in the same file (as they use different methods) + # so ensure only 1 reference comes from the same file station_references = [] for calculation_parameter_bsc in calculation_parameters_bsc: param_fname = '{}{}/{}/{}/{}/{}_{}.nc'.format(self.run_details['data_root'],network_write_dir,self.run_details['ghost_version'],temporal_resolution_vars['temporal_resolution_path'],calculation_parameter_bsc,calculation_parameter_bsc,self.yearmonth_str) if os.path.isfile(param_fname): root = Dataset(param_fname) - station_references.extend(root['station_reference'][:]) + station_references.extend(np.unique([station_reference.split('_')[0] for station_reference in root['station_reference'][:]])) #close netCDF root.close() - # station_reference: stationcode_measurementinstrument - # parameters needed for calculation are measured with different instruments -> have different station reference -> cut them only take first part aka 'true station reference' - if 'WETDEP' in self.run_details['parameter']: - station_references = [station_reference.split('_')[0] for station_reference in station_references] - # station references of new netcdf files #get intersecting station references across files intersecting_station_references = [] for (name, count) in zip(*np.unique(station_references, return_counts=True)): - if count == max_calculation_parameters: # =2 + if count == max_calculation_parameters: intersecting_station_references.append(name) #for special cases where can have option of different middle wavelengths, @@ -142,7 +141,7 @@ class DataProduct: continue root = Dataset(param_fname) - if intersecting_station_reference not in root['station_reference'][:]: + if intersecting_station_reference not in [station_reference.split('_')[0] for station_reference in root['station_reference'][:]]: if calculation_parameter not in product_dict['option']: valid_station = False break @@ -288,74 +287,60 @@ class DataProduct: #load calculation parameter netCDF root = Dataset('{}{}/{}/{}/{}/{}_{}.nc'.format(self.run_details['data_root'],network_write_dir,self.run_details['ghost_version'],temporal_resolution_vars['temporal_resolution_path'],calculation_parameter_bsc,calculation_parameter_bsc,self.yearmonth_str)) - #get index for station - station_index = np.where(root['station_reference'][:] == intersecting_station_reference)[0] - if 'WETDEP' in self.run_details['parameter']: - try: - station_index = [b.split('_')[0] for b in root['station_reference'][:]].index(str(intersecting_station_reference)) # root['station_reference'][:] need to be cut by _ - except: - station_index = -1 - - #only proceed if station is in file - continue_processing = False - if type(station_index) == int: # WETDEP - if station_index > -1: - continue_processing = True - else: # OTHER PRODUCTS - if len(station_index) > 0: - station_index = station_index[0] - continue_processing = True - - if continue_processing == True: - - #iterate through data / metadata variables - for data_varname, data_var in root.variables.items(): - #get variable dtype and shape - data_var_dtype = data_var.dtype - data_var_shape = data_var.shape - - #if first calculation parameter, create station specific array for saving data - if calculation_parameter_ii == 0: - - #set shape of new station array by removing station dimension and adding calculation parameters dimension - if data_varname == 'time': - data_var_new_shape = (max_calculation_parameters,root.dimensions['time'].size) - elif data_varname == 'qa': - data_var_new_shape = (max_calculation_parameters,root.dimensions['time'].size,root.dimensions['N_qa_codes'].size) - elif data_varname == 'flag': - data_var_new_shape = (max_calculation_parameters,root.dimensions['time'].size,root.dimensions['N_flag_codes'].size) - elif len(data_var.dimensions) == 2: - data_var_new_shape = (max_calculation_parameters,root.dimensions['time'].size) - elif len(data_var.dimensions) == 1: - data_var_new_shape = (max_calculation_parameters) - - #create array - if data_varname == calculation_parameter_bsc: # parameters needed for calculation - station_data[self.parameter_details['bsc_parameter_name']] = np.full(data_var_new_shape, np.NaN, dtype=data_var_dtype) - elif data_varname == '{}_prefiltered_defaultqa'.format(calculation_parameter_bsc): - station_data['{}_prefiltered_defaultqa'.format(self.parameter_details['bsc_parameter_name'])] = np.full(data_var_new_shape, np.NaN, dtype=data_var_dtype) - elif data_var_dtype == str: - station_data[data_varname] = np.full(data_var_new_shape, np.NaN, dtype=object) - else: - station_data[data_varname] = np.full(data_var_new_shape, np.NaN, dtype=data_var_dtype) - - #place calculation parameter data inside station array + #get relevant index of current intersecting station reference in calculation parameter references + #if have duplicate references in the parameter station references (due to dropping methods suffixes), + #then will preferentially take first index + parameter_station_references = [station_reference.split('_')[0] for station_reference in root['station_reference'][:]] + station_index = parameter_station_references.index(intersecting_station_reference) + + #iterate through data / metadata variables + for data_varname, data_var in root.variables.items(): + #get variable dtype and shape + data_var_dtype = data_var.dtype + data_var_shape = data_var.shape + + #if first calculation parameter, create station specific array for saving data + if calculation_parameter_ii == 0: + + #set shape of new station array by removing station dimension and adding calculation parameters dimension if data_varname == 'time': - station_data[data_varname][calculation_parameter_ii,:] = root[data_varname][:] - elif data_varname == calculation_parameter_bsc: - station_data[self.parameter_details['bsc_parameter_name']][calculation_parameter_ii,:] = root[data_varname][station_index,:] - elif data_varname == '{}_prefiltered_defaultqa'.format(calculation_parameter_bsc): - station_data['{}_prefiltered_defaultqa'.format(self.parameter_details['bsc_parameter_name'])][calculation_parameter_ii,:] = root[data_varname][station_index,:] - elif len(data_var.dimensions) == 3: - station_data[data_varname][calculation_parameter_ii,:,:] = root[data_varname][station_index,:,:] + data_var_new_shape = (max_calculation_parameters,root.dimensions['time'].size) + elif data_varname == 'qa': + data_var_new_shape = (max_calculation_parameters,root.dimensions['time'].size,root.dimensions['N_qa_codes'].size) + elif data_varname == 'flag': + data_var_new_shape = (max_calculation_parameters,root.dimensions['time'].size,root.dimensions['N_flag_codes'].size) elif len(data_var.dimensions) == 2: - station_data[data_varname][calculation_parameter_ii,:] = root[data_varname][station_index,:] + data_var_new_shape = (max_calculation_parameters,root.dimensions['time'].size) elif len(data_var.dimensions) == 1: - if data_var_dtype == str: - station_data[data_varname][calculation_parameter_ii] = str(root[data_varname][station_index]) - else: - station_data[data_varname][calculation_parameter_ii] = root[data_varname][station_index] - + data_var_new_shape = (max_calculation_parameters) + + #create array + if data_varname == calculation_parameter_bsc: # parameters needed for calculation + station_data[self.parameter_details['bsc_parameter_name']] = np.full(data_var_new_shape, np.NaN, dtype=data_var_dtype) + elif data_varname == '{}_prefiltered_defaultqa'.format(calculation_parameter_bsc): + station_data['{}_prefiltered_defaultqa'.format(self.parameter_details['bsc_parameter_name'])] = np.full(data_var_new_shape, np.NaN, dtype=data_var_dtype) + elif data_var_dtype == str: + station_data[data_varname] = np.full(data_var_new_shape, np.NaN, dtype=object) + else: + station_data[data_varname] = np.full(data_var_new_shape, np.NaN, dtype=data_var_dtype) + + #place calculation parameter data inside station array + if data_varname == 'time': + station_data[data_varname][calculation_parameter_ii,:] = root[data_varname][:] + elif data_varname == calculation_parameter_bsc: + station_data[self.parameter_details['bsc_parameter_name']][calculation_parameter_ii,:] = root[data_varname][station_index,:] + elif data_varname == '{}_prefiltered_defaultqa'.format(calculation_parameter_bsc): + station_data['{}_prefiltered_defaultqa'.format(self.parameter_details['bsc_parameter_name'])][calculation_parameter_ii,:] = root[data_varname][station_index,:] + elif len(data_var.dimensions) == 3: + station_data[data_varname][calculation_parameter_ii,:,:] = root[data_varname][station_index,:,:] + elif len(data_var.dimensions) == 2: + station_data[data_varname][calculation_parameter_ii,:] = root[data_varname][station_index,:] + elif len(data_var.dimensions) == 1: + if data_var_dtype == str: + station_data[data_varname][calculation_parameter_ii] = str(root[data_varname][station_index]) + else: + station_data[data_varname][calculation_parameter_ii] = root[data_varname][station_index] + #close netCDF root.close() @@ -364,8 +349,10 @@ class DataProduct: if product_function_name == 'calculate_aod': new_wavelength = int(self.run_details['parameter'].split('_')[-1][:-2]) function_arguments = {'new_wavelength':new_wavelength, 'calculation_params':station_calculation_parameters, 'calculation_arr':station_data[self.parameter_details['bsc_parameter_name']]} - else: + elif product_function_name == 'calculate_wetdep': function_arguments = {'calculation_params':station_calculation_parameters, 'calculation_arr':station_data[self.parameter_details['bsc_parameter_name']], 'temporal_resolution_minutes': temporal_resolution_vars['minutes'], 'parameter_units': unit_convert_from_to} + else: + function_arguments = {'calculation_params':station_calculation_parameters, 'calculation_arr':station_data[self.parameter_details['bsc_parameter_name']]} #calculate new product for station (filtered and unfiltered) root_new[self.parameter_details['bsc_parameter_name']][station_ii,:] = getattr(Data_Products, product_function_name)(**function_arguments) diff --git a/processing_modules/data_product_formulae.py b/processing_modules/data_product_formulae.py index c433637f1a16c433130600f7eef966b56c74d152..bac9f3e809b3ccba1a117479b4f3c11a555f2128 100644 --- a/processing_modules/data_product_formulae.py +++ b/processing_modules/data_product_formulae.py @@ -349,7 +349,7 @@ class Data_Products(object): ae_param_indices = [calculation_param_ii for calculation_param_ii, calculation_param in enumerate(calculation_params) if 'SCATAE_' in calculation_param] # get absorption wavelength nms for calculation - abs_nm = calculation_params[abs_param_index].split('_')[-1][:-2] + abs_nm = float(calculation_params[abs_param_index].split('_')[-1][:-2]) # define array for calculated SSA ssa = np.full((calculation_arr.shape[1]), np.NaN, dtype=np.float32) @@ -358,7 +358,7 @@ class Data_Products(object): for scat_param_index in scat_param_indices: # get scattering wavelength nm for calculation - scat_nm = calculation_params[scat_param_index].split('_')[-1][:-2] + scat_nm = float(calculation_params[scat_param_index].split('_')[-1][:-2]) # iterate through AE params for ae_param_index in ae_param_indices: diff --git a/processing_modules/execute_pipeline.py b/processing_modules/execute_pipeline.py index a974434051149c9e9763be0069bfaf67a2832530..9640ef20d63feae96e367ba0e4212659c2b9a95e 100755 --- a/processing_modules/execute_pipeline.py +++ b/processing_modules/execute_pipeline.py @@ -26,7 +26,7 @@ check_GHOST_stage_arguments_logs_submit(run_details, stages_to_process) ###--------------------------------------------------------------------------------------------------### #add pipeline_start_time to run_details -run_details['pipeline_start_time'] = pipeline_start_time +run_details['pipeline_start_time'] = float(pipeline_start_time) #open the active pipeline logfile pipeline_logfile = open('{}/run/pipeline_logs/{}_{}.out'.format(run_details['process_root'],network, parameter),"a") diff --git a/processing_modules/execute_stage.py b/processing_modules/execute_stage.py index 9e113200a2bcf05925063387e47aa3861eea3daa..811388cbcdb768c4b117cb02f31514ac71f21a5e 100755 --- a/processing_modules/execute_stage.py +++ b/processing_modules/execute_stage.py @@ -6,6 +6,9 @@ import sys import time import traceback +#Add unit-converter submodule to python load path +sys.path.append('{}/unit-converter'.format(os.path.abspath(inspect.getsourcefile(lambda:0)).split('/execute_stage')[0])) + from crossnetwork_processing_functions import get_configuration_variables, create_GHOST_stage_logfile from station_concatenate import StationConcatenate from globally_gridded_metadata import GloballyGriddedMetadata @@ -17,9 +20,6 @@ from data_product import DataProduct from merge import Merge from split_EBAS import SplitEBAS -#Add unit-converter submodule to python load path -sys.path.append('{}/unit-converter'.format(os.path.abspath(inspect.getsourcefile(lambda:0)).split('/execute_stage')[0])) - ###--------------------------------------------------------------------------------------------------### #Get variables passed from job submittal script (variable by stage) ###--------------------------------------------------------------------------------------------------### @@ -34,12 +34,12 @@ elif GHOST_stage == 'T1': elif GHOST_stage in ['T2','P1']: slurm_job_ID, network, parameter, yearmonth_str, temporal_resolution_code, region = sys.argv[2], sys.argv[3], sys.argv[4], sys.argv[5], sys.argv[6], sys.argv[7] log_file_ref = '{}_{}_{}'.format(yearmonth_str,temporal_resolution_code,region) -elif GHOST_stage == 'M1': - slurm_job_ID, network, parameter, yearmonth_str, temporal_resolution_code = sys.argv[2], sys.argv[3], sys.argv[4], sys.argv[5], sys.argv[6] - log_file_ref = '{}_{}'.format(yearmonth_str,temporal_resolution_code) elif GHOST_stage == 'E1': slurm_job_ID, network, parameter, temporal_resolution_code, region = sys.argv[2], sys.argv[3], sys.argv[4], sys.argv[5], sys.argv[6] log_file_ref = '{}_{}'.format(temporal_resolution_code,region) +elif GHOST_stage == 'M1': + slurm_job_ID, network, parameter, yearmonth_str, temporal_resolution_code = sys.argv[2], sys.argv[3], sys.argv[4], sys.argv[5], sys.argv[6] + log_file_ref = '{}_{}'.format(yearmonth_str,temporal_resolution_code) ###--------------------------------------------------------------------------------------------------### #Execute stage processing @@ -87,13 +87,12 @@ try: elif GHOST_stage == 'P1': process_inst = DataProduct(yearmonth_str,temporal_resolution_code,region,run_details,parameter_details,network_details) process_inst.do_work() - elif GHOST_stage == 'M1': - process_inst = Merge(yearmonth_str,temporal_resolution_code,run_details,parameter_details,network_details) - process_inst.do_work() elif GHOST_stage == 'E1': process_inst = SplitEBAS(temporal_resolution_code,region,run_details,parameter_details,network_details) process_inst.do_work() - + elif GHOST_stage == 'M1': + process_inst = Merge(yearmonth_str,temporal_resolution_code,run_details,parameter_details,network_details) + process_inst.do_work() #write error log file if have uncaught error in stage except Exception as e: diff --git a/processing_modules/external_metadata_raw_to_npy.py b/processing_modules/external_metadata_raw_to_npy.py index b207643838d37b918c56fbb5e0bfe795c8a575ca..49510b7f398f6363522b5d89aecca1bba886f808 100755 --- a/processing_modules/external_metadata_raw_to_npy.py +++ b/processing_modules/external_metadata_raw_to_npy.py @@ -25,6 +25,9 @@ from GHOST_standards import standard_networks ###--------------------------------------------------------------------------------------------------### ###--------------------------------------------------------------------------------------------------### +#Define GHOST version +ghost_version = '1.5.1' + #Define list of networks' metadata to process #networks_to_process = ['BJMEMC','CANADA_NAPS','CHILE_SINCA','CNEMC','EBAS','EEA_AIRBASE','EEA_AQ_eReporting','JAPAN_NIES','MEXICO_CDMX','MITECO','NOAA_ISD','UK_AIR','US_EPA_AirNow_DOS','US_EPA_AQS','US_EPA_CASTNET','US_NADP_AMNet','US_NADP_AMoN'] networks_to_process = ['EBAS'] @@ -40,7 +43,8 @@ networks_to_process = ['EBAS'] ##workstation #else: # data_root = '/esarchive/obs/ghost/' -data_root = '/esarchive/obs/ghost/' +#data_root = '/esarchive/obs/ghost/' +data_root = '/gpfs/projects/bsc32/AC_cache/obs/ghost/' ###--------------------------------------------------------------------------------------------------### ###--------------------------------------------------------------------------------------------------### @@ -53,14 +57,14 @@ def get_raw_metadata_file_location(filename, network): '''Return location of a desired external metadata file''' - return data_root+network+'/metadata/network_provided/'+filename + return data_root+network+'/metadata/'+ghost_version+'/network_provided/'+filename def get_npy_metadata_file_location(filename, network): '''Return location to store new .npy external metadata file''' - return data_root+network+'/metadata/processed/'+filename + return data_root+network+'/metadata/'+ghost_version+'/processed/'+filename ###------------------------ diff --git a/processing_modules/globally_gridded_metadata.py b/processing_modules/globally_gridded_metadata.py index d0f89d87241601ffd2dcf664264f7b7d6369b3f3..95053b095e8ec618b52cd9d032db6764dace4915 100755 --- a/processing_modules/globally_gridded_metadata.py +++ b/processing_modules/globally_gridded_metadata.py @@ -99,7 +99,7 @@ class GloballyGriddedMetadata: self.get_WWF_TEOW_classifications() # get NUTS regions - self.get_NUTS_region() + #self.get_NUTS_region() #get WMO region self.get_WMO_region() diff --git a/processing_modules/merge.py b/processing_modules/merge.py index 89804c877ef60caff8f68744a8f8550235074b46..3b680b5043eee87f114da34abef383525393a7b5 100644 --- a/processing_modules/merge.py +++ b/processing_modules/merge.py @@ -72,14 +72,23 @@ class Merge: 'US_EPA_AirNow_DOS':28, 'US_EPA_AQS':75, 'US_EPA_CASTNET':76, + 'US_NADP_AIRMoN':11, 'US_NADP_AMNet':15, 'US_NADP_AMoN':14, - 'WMO_WDCGG':100 + 'US_NADP_MDN':12, + 'US_NADP_NTN':13, + 'WMO_WDCGG':100, + 'WMO_WDCPC':19 } # set networks to merge self.networks = networks_to_merge(self.run_details['network']) + # initialise pyproj transformer + lla = {"proj": "latlong", "ellps": "WGS84", "datum": "WGS84"} + ecef = {"proj": "geocent", "ellps": "WGS84", "datum": "WGS84"} + self.transformer = pyproj.Transformer.from_crs(lla, ecef) + def do_work(self): '''Function which does executes the functions of the class in a pipeline''' @@ -151,12 +160,8 @@ class Merge: # convert longitudes / latitudes / measurement_altitudes in geographic coordinates to cartesian ECEF # (Earth Centred, Earth Fixed) coordinates assuming WGS84 datum and ellipsoid, and that all heights equal zero # ECEF coordiantes represent positions (in metres) as X, Y, Z coordinates, approximating the earth surface as an ellipsoid of revolution - lla = pyproj.Proj(proj='latlong', ellps='WGS84', datum='WGS84') - ecef = pyproj.Proj(proj='geocent', ellps='WGS84', datum='WGS84') - current_x, current_y, current_z = pyproj.transform(lla, ecef, - longitudes, latitudes, measurement_altitudes, - radians=False) - + current_x, current_y, current_z = self.transformer.transform(longitudes, latitudes, measurement_altitudes, radians=False) + # merge coordinates to 3D array current_xyz = np.column_stack((current_x, current_y, current_z)) @@ -170,10 +175,8 @@ class Merge: nextnetwork_station_indices = np.arange(len(nextnetwork_longitudes)) # convert next network longitude and latitudes in geographic coordinates to cartesian ECEF - nextnetwork_x, nextnetwork_y, nextnetwork_z = pyproj.transform(lla, - ecef, nextnetwork_longitudes, nextnetwork_latitudes, nextnetwork_measurement_altitudes, - radians=False) - + nextnetwork_x, nextnetwork_y, nextnetwork_z = self.transformer.transform(nextnetwork_longitudes, nextnetwork_latitudes, nextnetwork_measurement_altitudes, radians=False) + # merge coordinates to 3D array nextnetwork_xyz = np.column_stack((nextnetwork_x, nextnetwork_y, nextnetwork_z)) @@ -364,6 +367,7 @@ class Merge: # get all unique networks giving data unique_networks = np.unique(networks) + print(unique_networks) # get year and month year = str(self.yearmonth_str[:4]) @@ -372,6 +376,7 @@ class Merge: # iterate through unique networks station_start_n = 0 for unique_network_ii, unique_network in enumerate(unique_networks): + print(unique_network) # get relevant indices for stations in network relevant_station_inds = np.where(networks == unique_network)[0] @@ -383,6 +388,8 @@ class Merge: root = Dataset(self.run_details['data_root'] + '{}/{}/{}/{}/{}_{}.nc'.format(unique_network,self.run_details['ghost_version'], self.temporal_resolution_vars['temporal_resolution_path'],self.parameter_details['bsc_parameter_name'],self.parameter_details['bsc_parameter_name'],self.yearmonth_str)) + print('read data') + #copy global attributes (on first pass) if unique_network_ii == 0: for name in root.ncattrs(): @@ -463,6 +470,8 @@ class Merge: #close new netCDF merged_root.close() + + #apply compression (-L1 = deflation level 1), and do not write operation history (-h) #and set to original name submit_list = ['ncks', '-h', '-O', '-L', '1', merged_filename, merged_filename] diff --git a/processing_modules/network_parsers.py b/processing_modules/network_parsers.py index ffc279170b5ccf38b16df8125964ae982c0ebeb5..d616b2bbdd29860fc44a1ac701770bb8591a4217 100755 --- a/processing_modules/network_parsers.py +++ b/processing_modules/network_parsers.py @@ -1066,7 +1066,6 @@ class ParseCAPMoNFile: #metadata if table_name == 'site_information': - #print(column_names) for column_name in column_names: if column_name != '': if column_name == 'SiteName': @@ -1935,7 +1934,6 @@ class ParseMITECOFile: start_min = 0 start_sec = 0 else: - print(start_date) 1+'a' if len(end_date) == 19: @@ -1953,7 +1951,6 @@ class ParseMITECOFile: end_min = 0 end_sec = 0 else: - print(end_date) 1+'a' start_dt = datetime.datetime(start_yyyy,start_mm,start_dd,start_hour,start_min,start_sec) @@ -2505,17 +2502,14 @@ class ISDLineParser: else: break if line[pos:pos + self.section_chars] == 'EQD': - # while pos < num_char: try: read = self.parse_eqd_section(line[pos:self.num_char]) pos += read except Exception as e: - print(line[pos:pos + self.section_chars]) # change to logging + #print(line[pos:pos + self.section_chars]) # change to logging + pass if line[pos:pos + self.section_chars] == 'QNN': self.parse_qnn_section() - print(pos, self.num_char) - # if pos < self.num_char: - def parse_control_section(self, line): """Function to read the Control Data Section""" @@ -2982,9 +2976,6 @@ class ISDLineParser: pos = 0 self.rem_content = block[pos:to_read] - # # sanity check - # print('block: {}'.format(block)) - # print('rem content: {}'.format(rem_content)) return self.rem_content def parse_eqd_section(self, block): @@ -3369,7 +3360,6 @@ class ParseUKAIRFile: row = row[:len(column_headers)] # otherwise skip line else: - #print('SKIP:{}vs{}'.format(len(column_headers), len(row))) continue # process start/end dt @@ -3806,7 +3796,6 @@ class ParseUSNADPFile: #data lines else: for column_header, element in zip(column_headers, row): - print(element) self.parsed_data[column_header].append(element) #convert lists to numpy arrays @@ -3832,7 +3821,6 @@ class ParseUSNADPFile: # parse flags in AIRMoN to lower case, and ensure qrcode to be upper case if 'AIRMoN' in self.filename: for ii in range(len(self.parsed_data['sl'])): - #print(flag) self.parsed_data['sl'][ii] = self.parsed_data['sl'][ii].lower() self.parsed_data['qrcode'][ii] = self.parsed_data['qrcode'][ii].upper() diff --git a/processing_modules/process_GHOST_stage.py b/processing_modules/process_GHOST_stage.py index f94d78f5fcde7e26240d110e1a6ecf317873ffde..22d4883cb5539f3a1a4403321fa98b7c32d17697 100755 --- a/processing_modules/process_GHOST_stage.py +++ b/processing_modules/process_GHOST_stage.py @@ -397,7 +397,7 @@ class ProcessGHOSTStage: for yearmonth_ii, yearmonth_str in enumerate(yearmonth_strings): #append yearmonth_str, temporal resolution code arguments.append([yearmonth_str, temporal_resolution_code]) - + #check you have some data to process if len(arguments) > 0: diff --git a/processing_modules/split_EBAS.py b/processing_modules/split_EBAS.py index 81f50f01e18aafd3ab49ec0be869f6b7447d77bd..89fc13b9801ea955345b152f529f07850d9af4a4 100644 --- a/processing_modules/split_EBAS.py +++ b/processing_modules/split_EBAS.py @@ -103,14 +103,14 @@ class SplitEBAS: if (chosen_option == 'EBAS-WMO_WDCA') & (self.parameter_details['matrix'] == 'gas'): if self.parameter_details['bsc_parameter_name'] in ['sconcco','sconcch4']: chosen_option = 'EBAS-WMO_WDCGG' - print('CHANGING {} CHOSEN OPTION TO WDCGG'.format(station_ref)) + self.run_details['log_file_str'] += 'CHANGING {} CHOSEN OPTION TO WDCGG'.format(station_ref) else: chosen_option = 'EBAS-WMO_WDCRG' - print('CHANGING {} CHOSEN OPTION TO WDCRG'.format(station_ref)) + self.run_details['log_file_str'] += 'CHANGING {} CHOSEN OPTION TO WDCRG'.format(station_ref) elif (chosen_option in ['EBAS-WMO_WDCGG','EBAS-WMO_WDCRG']) & (self.parameter_details['matrix'] in ['pm','pm10','pm2.5','pm1']): chosen_option = 'EBAS-WMO_WDCA' - print('CHANGING {} CHOSEN OPTION TO WDCA'.format(station_ref)) + self.run_details['log_file_str'] += 'CHANGING {} CHOSEN OPTION TO WDCA'.format(station_ref) chosen_options[station_ref] = chosen_option diff --git a/processing_modules/standardisation_mapping_functions.py b/processing_modules/standardisation_mapping_functions.py index 7845edbd22a857eb40dc49828cd8d4457dc06494..6201073986947a83422bb53a90cce5461cc23272 100755 --- a/processing_modules/standardisation_mapping_functions.py +++ b/processing_modules/standardisation_mapping_functions.py @@ -398,7 +398,7 @@ def map_network_classifications_to_standard_classifications(native_classificatio #EMEP NATIVE CLASSIFICATIONS = AREA_CLASSIFICATION, LAND_USE -#AREA_CLASSIFICATION = mountain, polar, coastal, rural, suburban, urbanandcentercity, other +#AREA_CLASSIFICATION = mountain, polar, coastal, rural, suburban, traffic, urbanandcentercity, other #LAND_USE = agricultural, airport, blightedarea, commercial, desert, forest, grassland, #gravelandstone, industrial, militaryreservation, remotepark, residential, singlepointsourcearea, #snowfield, urbanpark, wetland, other @@ -406,8 +406,8 @@ def map_network_classifications_to_standard_classifications(native_classificatio elif run_details['network'] == 'EBAS': #AREA CLASSIFICATION - mapping_area_classification = {'mountain':'rural','polar':'rural','coastal':'rural','rural':'rural','suburban':'urban','urbanandcentercity':'urban','other':'','notavailable':'','unknown':'','':''} - mapping_area_classification_urban_subdivision = {'urbanandcentercity':'centre','suburban':'suburban'} + mapping_area_classification = {'mountain':'rural','polar':'rural','coastal':'rural','rural':'rural','suburban':'urban','urbanandcentercity':'urban','traffic':'urban','other':'','notavailable':'','unknown':'','':''} + mapping_area_classification_urban_subdivision = {'urbanandcentercity':'centre','traffic':'centre','suburban':'suburban'} area_classification = mapping_area_classification[native_classifications['area_classification']] if area_classification == 'urban': @@ -3467,8 +3467,10 @@ def network_measurement_information_to_standard_measurement_information_mapping( 'impactor': {'primary_sampling':{'sampling_type':'low volume continuous', 'primary_sampling_assumption':True}, 'preparation_1':{'sample_preparation_type':'filter'}, 'preparation_2':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'process_details':'Assume methodolgy is thermal-optical analysis with EUSAAR2 protocol', 'measuring_assumption':True}}, 'impactor_eusaar': {'primary_sampling':{'sampling_type':'low volume continuous', 'primary_sampling_assumption':True}, 'preparation_1':{'sample_preparation_type':'filter'}, 'preparation_2':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2'}}, 'low_vol_sampler': {'primary_sampling':{'sampling_type':'low volume continuous'}, 'preparation_1':{'sample_preparation_type':'filter', 'preparation_assumption':True}, 'preparation_2':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'process_details':'Assume methodolgy is thermal-optical analysis with EUSAAR2 protocol', 'measuring_assumption':True}}, + 'low_vol_sampler,custom_build_-_leckel,modified_lvs6,thermal-optical_analysis,sunset_laboratory,ocec_lab_instrument_model_5l': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Leckel LVS6'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'instrument':'Sunset OCEC Model 5', 'process_details':'Assume protocol is EUSAAR2 protocol', 'measuring_assumption':True}}, 'low_vol_sampler,derenda,lvs_3.1,thermal-optical_analysis,sunset_laboratory,ocec_lab_instrument_model_5': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Comde Derenda LVS 3.1'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'instrument':'Sunset OCEC Model 5', 'process_details':'Assume protocol is EUSAAR2 protocol', 'measuring_assumption':True}}, 'low_vol_sampler,derenda,mvs_6.1': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Comde Derenda MVS 6.1'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'process_details':'Assume methodolgy is thermal-optical analysis with EUSAAR2 protocol', 'measuring_assumption':True}}, + 'low_vol_sampler,derenda,mvs_6.1,thermal-optical_analysis,sunset_laboratory,ocec_lab_instrument_model_4l': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Comde Derenda MVS 6.1'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'instrument':'Sunset OCEC Model 4', 'process_details':'Assume protocol is EUSAAR2 protocol', 'measuring_assumption':True}}, 'low_vol_sampler,derenda,pns_16t,thermal-optical_analysis,sunset_laboratory,ocec_lab_instrument_model_5l': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Comde Derenda PNS 16T'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'instrument':'Sunset OCEC Model 5', 'process_details':'Assume protocol is EUSAAR2 protocol', 'measuring_assumption':True}}, 'low_vol_sampler,digitel,dpa-14,thermal-optical_analysis,sunset_laboratory,ocec_lab_instrument_model_5': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Digitel DPA-14'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'instrument':'Sunset OCEC Model 5', 'process_details':'Assume protocol is EUSAAR2 protocol', 'measuring_assumption':True}}, 'low_vol_sampler,eccc_cair_lab,lvs1': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'MCZ LVS1'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'process_details':'Assume methodolgy is thermal-optical analysis with EUSAAR2 protocol', 'measuring_assumption':True}}, @@ -3480,6 +3482,8 @@ def network_measurement_information_to_standard_measurement_information_mapping( 'low_vol_sampler,leckel,seq47_50': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Leckel SEQ 47-50'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'process_details':'Assume methodolgy is thermal-optical analysis with EUSAAR2 protocol', 'measuring_assumption':True}}, 'low_vol_sampler,leckel,seq47_50,thermal-optical_analysis,sunset_laboratory,carbon_aerosol_analyzer': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Leckel SEQ 47-50'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'instrument':'Sunset OCEC Model 5', 'process_details':'Make assumption measuring instrument is Sunset OCEC Model 5 and protocol is EUSAAR2', 'measuring_assumption':True}}, 'low_vol_sampler,leckel,seq47_50,thermal-optical_analysis,sunset_laboratory,ocec_lab_instrument_model_5': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Leckel SEQ 47-50'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'instrument':'Sunset OCEC Model 5', 'process_details':'Assume protocol is EUSAAR2', 'measuring_assumption':True}}, + 'low_vol_sampler,mcv,cbv-1dm,thermal-optical_analysis,sunset_laboratory,ocec_lab_instrument_model_4l': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'MCV CBV-1Dm'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'instrument':'Sunset OCEC Model 4', 'process_details':'Assume protocol is EUSAAR2 protocol', 'measuring_assumption':True}}, + 'low_vol_sampler,mcv,cmv-1d-m,thermal-optical_analysis,sunset_laboratory,ocec_lab_instrument_model_4l': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'MCV CBV-1Dm', 'primary_sampling_assumption':True}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'instrument':'Sunset OCEC Model 4', 'process_details':'Assume protocol is EUSAAR2 protocol', 'measuring_assumption':True}}, 'low_vol_sampler,rupprecht&patashnick,partisol2025': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Thermo Partisol 2025'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'process_details':'Assume methodolgy is thermal-optical analysis with EUSAAR2 protocol', 'measuring_assumption':True}}, 'low_vol_sampler,rupprecht&patashnick,partisol2025,thermal-optical_analysis,sunset_laboratory,carbon_aerosol_analyzer_eusaar': {'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Thermo Partisol 2025'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'instrument':'Sunset OCEC Model 5', 'process_details':'Make assumption measuring instrument is Sunset OCEC Model 5 and protocol is EUSAAR2', 'measuring_assumption':True}}, 'low_vol_sampler,rupprecht&patashnick,partisol2025,thermal-optical_analysis,sunset_laboratory,ocec_lab_instrument_model_4l_eusaar':{'primary_sampling':{'sampling_type':'low volume continuous', 'instrument':'Thermo Partisol 2025'}, 'preparation_1':{'sample_preparation_type':'intermediate measurement', 'methodology':'gravimetry', 'preparation_assumption':True}, 'measurement':{'methodology':'thermal-optical analysis - EUSAAR2', 'instrument':'Sunset OCEC Model 4'}}, @@ -3530,6 +3534,7 @@ def network_measurement_information_to_standard_measurement_information_mapping( 'nephelometer': {'measurement':{'methodology':'nephelometry'}}, 'nephelometer,ecotech,aurora1000': {'measurement':{'methodology':'nephelometry', 'instrument':'Ecotech Aurora 1000'}}, 'nephelometer,ecotech,aurora3000': {'measurement':{'methodology':'nephelometry', 'instrument':'Ecotech Aurora 3000'}}, + 'nephelometer,ecotech,aurora4000': {'measurement':{'methodology':'nephelometry', 'instrument':'Ecotech Aurora 4000'}}, 'nephelometer,ecotech,m9003': {'measurement':{'methodology':'nephelometry', 'instrument':'Ecotech 9003'}}, 'nephelometer,meteorology_research,inc.,1550':{'measurement':{'methodology':'nephelometry', 'instrument':'Meteorology Research Inc. 1550'}}, 'nephelometer,ms_electron,3w-02': {'measurement':{'methodology':'nephelometry', 'instrument':'MS Electron 3W-02'}}, diff --git a/processing_modules/start_GHOST.py b/processing_modules/start_GHOST.py index 94391c766359559ea57824ac5d13fefab5cd407b..2c5bafc92c5658864d029657743bfa0e77fc1d60 100755 --- a/processing_modules/start_GHOST.py +++ b/processing_modules/start_GHOST.py @@ -3,9 +3,16 @@ import os import shutil import sys import time +import subprocess -from crossnetwork_processing_functions import get_configuration_variables, get_default_parameters_per_network, get_default_product_parameters_per_network -from GHOST_standards import standard_parameters +import numpy as np +import pandas as pd + +from crossnetwork_processing_functions import (get_configuration_variables, get_default_parameters_per_network, + get_default_product_parameters_per_network, + get_default_temporal_resolutions_per_matrix, + check_GHOST_pipeline_outcome) +from GHOST_standards import standard_parameters, standard_temporal_resolutions from submit_greasy import SubmitGreasy #start timer on GHOST processing @@ -77,11 +84,10 @@ while True: #get parameters to process across all stages #get default parameters per network if set - if run_details['parameters'] == 'default': - parameter_defaults = get_default_parameters_per_network(network) - parameter_defaults_product = get_default_product_parameters_per_network(network) + parameter_defaults = get_default_parameters_per_network(network) + parameter_defaults_product = get_default_product_parameters_per_network(network) #take those given otherwise - else: + if run_details['parameters'] != 'default': parameters = copy.deepcopy(run_details['parameters']) #have processing stages? @@ -114,6 +120,7 @@ while True: #add information about stage to pipeline_status for parameter in parameters: + #ensure parameter is a product, to allow product stage to be processed if parameter in parameter_defaults_product: if parameter not in pipeline_status[network]: @@ -192,9 +199,9 @@ while True: pipeline_logfile.write('**************************************************************************************************************\n') pipeline_logfile.close() - #before submittal determine if the current parameter has any dependencies to be processed first, if so put on hold + #determine if the current parameter has any dependencies to be processed first, if so put on hold #if no dependencies are queued then write logfile for parameter informing that it cannot be processed - if pipeline_status[network][parameter]['current_stages'] == 'P1': + if (pipeline_status[network][parameter]['current_stages'] == 'P1') or ('P1' in pipeline_status[network][parameter]['stages_remaining']): #get dependencies for parameter param_dependencies = dependencies[network][parameter] #iterate through dependent parameters @@ -202,14 +209,19 @@ while True: #if dependent parameter not set to be processed, check if previously processed files exist for current date range if param not in pipeline_status[network]: + + # get dependent parameter details + param_details = standard_parameters[param] + #check if dependent parameter has been previously processed and exist for current date range exist_files = False #get temporal resolutions if run_details['temporal_resolutions'] == 'default': - temporal_resolutions = get_default_temporal_resolutions_per_matrix(parameter_details['matrix']) + temporal_resolution_codes = get_default_temporal_resolutions_per_matrix(parameter_details['matrix']) else: - temporal_resolutions = run_details['temporal_resolutions'] + temporal_resolution_codes = copy.deepcopy(run_details['temporal_resolutions']) + temporal_resolutions = [standard_temporal_resolutions[temporal_resolution_code]['temporal_resolution_path'] for temporal_resolution_code in temporal_resolution_codes] #check if file exist for yearmonth and temporal resolution #iterate through yearmonths @@ -218,8 +230,9 @@ while True: break #iterate through temporal rersolutions for temporal_resolution in temporal_resolutions: + #check if file exists - if os.path.isfile(run_details['data_root']+'{}/{}/{}/{}/{}_{}.nc'.format(run_details['network'],run_details['ghost_version'],temporal_resolution,parameter_details['bsc_parameter_name'],parameter_details['bsc_parameter_name'],yearmonth_str)): + if os.path.isfile(run_details['data_root']+'{}/{}/{}/{}/{}_{}.nc'.format(network,run_details['ghost_version'],temporal_resolution,param_details['bsc_parameter_name'],param_details['bsc_parameter_name'],yearmonth_str)): exist_files = True break @@ -227,12 +240,12 @@ while True: if not exist_files: pipeline_status[network][parameter]['status'] = 'killed' pipeline_logfile = open('{}/run/pipeline_logs/{}_{}.out'.format(run_details['process_root'],network,parameter),"a") - pipeline_logfile.write('P1 NOT PROCESSED AS DEPENDENT PARAMETERS NOT PROCESSED.\nTERMINATING PIPELINE HERE') + pipeline_logfile.write('PIPELINE NOT PROCESSED AS DEPENDENT PARAMETERS NOT PROCESSED.\nTERMINATING PIPELINE HERE') pipeline_logfile.close() break - #if dependent parameter set to be processed, then put current parameter on hold - else: + #if dependent parameter set to be processed, and current stage is P1, then put current parameter on hold + elif pipeline_status[network][parameter]['current_stages'] == 'P1': pipeline_status[network][parameter]['status'] = 'hold' #add argument for pipeline if it is alive @@ -243,7 +256,10 @@ while True: #add argument arguments.append([slurm_job_ID, network, parameter, current_stages_to_process, pipeline_status[network][parameter]['pipeline_start_time']]) - + #print('PIPELINE STATUS:', pipeline_status) + #print('ARGUMENTS TO SUBMIT:', arguments) + #print() + #if no more pipelines to submit, break out of loop if len(arguments) == 0: break @@ -251,10 +267,13 @@ while True: #submit pipeline for jobs (and monitor outcomes) SubmitGreasy('GPipe_{}'.format(slurm_job_ID), 'pipeline', arguments, run_details) + #--------------------------------------------------------------------------------------------# + #--------------------------------------------------------------------------------------------# + #now determine if submitted pipelines were successful, and gather arguments to submit new pipelines #iterate through arguments and check if pipeline did not finish correctly - for arg_ii, (slurm_job_ID, network, parameter, stages_to_process) in enumerate(arguments): + for arg_ii, (slurm_job_ID, network, parameter, stages_to_process, pipeline_start_time) in enumerate(arguments): #get pipeline logfile name pipeline_logfile = '{}/run/pipeline_logs/{}_{}.out'.format(run_details['process_root'],network,parameter) @@ -273,11 +292,9 @@ while True: #iterate through parameter for parameter in pipeline_status[network]: - # get parameter details - parameter_details = standard_parameters[parameter] - #move all alive pipelines to next stages if pipeline_status[network][parameter]['status'] == 'alive': + #add previous stages to processed_stages pipeline_status[network][parameter]['processed_stages'].append(pipeline_status[network][parameter]['current_stages']) #check if have stages remaining, if so, then update current_stages and stages_remaining @@ -289,7 +306,7 @@ while True: pipeline_status[network][parameter]['current_stages'] = [] pipeline_status[network][parameter]['stages_remaining'] = [] pipeline_status[network][parameter]['status'] = 'finished' - total_pipeline_time = (time.time() - pipeline_status[network][parameter]['pipeline_start_time'])/60. + total_pipeline_time = (time.time() - float(pipeline_status[network][parameter]['pipeline_start_time']))/60. pipeline_logfile = open('{}/run/pipeline_logs/{}_{}.out'.format(run_details['process_root'],network,parameter),"a") pipeline_logfile.write('\n') pipeline_logfile.write('PROCESSING OF ALL DESIRED STAGES FOR {}:{} COMPLETE IN {:.2f} MINUTES'.format(network,parameter,total_pipeline_time)) @@ -303,38 +320,9 @@ while True: #iterate through dependent parameters for param in param_dependencies: - #if dependent parameter not set to be processed, check if previously processed files exist for current date range - if param not in pipeline_status[network]: - #check if dependent parameter has been previously processed and exist for current date range - exist_files = False - - #get temporal resolutions - if run_details['temporal_resolutions'] == 'default': - temporal_resolutions = get_default_temporal_resolutions_per_matrix(parameter_details['matrix']) - else: - temporal_resolutions = run_details['temporal_resolutions'] - - #check if file exist for yearmonth and temporal resolution - #iterate through yearmonths - for yearmonth_str in yearmonth_strs: - if exist_files: - break - #iterate through temporal resolutions - for temporal_resolution in temporal_resolutions: - #check if file exists - if os.path.isfile(run_details['data_root']+'{}/{}/{}/{}/{}_{}.nc'.format(run_details['network'],run_details['ghost_version'],temporal_resolution,parameter_details['bsc_parameter_name'],parameter_details['bsc_parameter_name'],yearmonth_str)): - exist_files = True - break - - #if not all neccessary files exist, then do not submit pipeline for parameter, and terminate pipeline logfile - if not exist_files: - pipeline_status[network][parameter]['status'] = 'killed' - pipeline_logfile = open('{}/run/pipeline_logs/{}_{}.out'.format(run_details['process_root'],network,parameter),"a") - pipeline_logfile.write('P1 NOT PROCESSED AS DEPENDENT PARAMETERS NOT PROCESSED.\nTERMINATING PIPELINE HERE') - pipeline_logfile.close() - break + #if dependent parameter set to be processed, check if pipeline finished or was killed + if param in pipeline_status[network]: - else: #check if dependent pipeline was killed early, if so, terminate pipeline logfile if pipeline_status[network][param]['status'] == 'killed': pipeline_status[network][parameter]['status'] = 'killed' @@ -358,17 +346,29 @@ while True: #check if dependent components have now been processed if pipeline_status[network][parameter]['current_stages'] == 'P1': + #get dependencies for parameter param_dependencies = dependencies[network][parameter] - - #iterate through dependent components + #iterate through dependent parameters for param in param_dependencies: - #check if have any stages remaining to process, if so do not resume pipeline - if (('S1' in pipeline_status[network][param]['stages_remaining']) or ('S2' in pipeline_status[network][param]['stages_remaining']) or - ('S3' in pipeline_status[network][param]['stages_remaining']) or ('T1' in pipeline_status[network][param]['stages_remaining']) or - ('T2' in pipeline_status[network][param]['stages_remaining']) or ('P1' in pipeline_status[network][param]['stages_remaining'])): - ready_to_start = False - break + #if dependent parameter set to be processed, check if pipeline finished or was killed + if param in pipeline_status[network]: + + #check if dependent pipeline was killed early, if so, terminate pipeline logfile + if pipeline_status[network][param]['status'] == 'killed': + pipeline_status[network][parameter]['status'] = 'killed' + pipeline_logfile = open('{}/run/pipeline_logs/{}_{}.out'.format(run_details['process_root'],network,parameter),"a") + pipeline_logfile.write('P1 NOT PROCESSED AS DEPENDENT PARAMETERS DID NOT FINISH PROCESSING CORRECTLY.\nTERMINATING PIPELINE HERE') + pipeline_logfile.close() + ready_to_start = False + break + + #check if have any stages remaining to process, if so do not resume pipeline + elif (('S1' in pipeline_status[network][param]['stages_remaining']) or ('S2' in pipeline_status[network][param]['stages_remaining']) or + ('S3' in pipeline_status[network][param]['stages_remaining']) or ('T1' in pipeline_status[network][param]['stages_remaining']) or + ('T2' in pipeline_status[network][param]['stages_remaining']) or ('P1' in pipeline_status[network][param]['stages_remaining'])): + ready_to_start = False + break #for merge stage, check if all pipelines for parameter are finished elif pipeline_status[network][parameter]['current_stages'] == 'M1': @@ -379,6 +379,7 @@ while True: #if pipeline has been killed, then cannot process merge stage. terminate pipeline logfile if pipeline_status[net][parameter]['status'] == 'killed': + pipeline_status[network][parameter]['status'] = 'killed' pipeline_logfile = open('{}/run/pipeline_logs/{}_{}.out'.format(run_details['process_root'],network,parameter),"a") pipeline_logfile.write('M1 NOT PROCESSED AS AT LEAST 1 NETWORK PROCESSING PIPELINE FAILED.\nTERMINATING PIPELINE HERE') pipeline_logfile.close() @@ -392,7 +393,7 @@ while True: # if pipeline can be started, update pipeline status if ready_to_start: - pipeline_status[network][parameter]['status'] == 'alive' + pipeline_status[network][parameter]['status'] = 'alive' #add argument for pipeline if it is alive if pipeline_status[network][parameter]['status'] == 'alive': @@ -408,5 +409,7 @@ while True: #end timer on GHOST processing run_details['end_GHOST_time'] = (time.time() - start_GHOST_time)/60. +#print('PIPELINE STATUS:', pipeline_status) + #check summary outcome of all pipelines check_GHOST_pipeline_outcome(pipeline_status, run_details) \ No newline at end of file diff --git a/processing_modules/station_concatenate.py b/processing_modules/station_concatenate.py index bed9fd2f39d6c60a222460396a501b009f1deaab..c0cd90b741b600fed9b8a3359dbe768d07f112cc 100755 --- a/processing_modules/station_concatenate.py +++ b/processing_modules/station_concatenate.py @@ -1039,7 +1039,7 @@ class StationConcatenate: while True: try: #read external metadata file into memory (specific for network) - self.external_metadata = np.load(self.run_details['data_root']+'{}/metadata/processed/{}_META.npy'.format(self.run_details['network'], self.run_details['network']), allow_pickle=True) + self.external_metadata = np.load(self.run_details['data_root']+'{}/metadata/{}/processed/{}_META.npy'.format(self.run_details['network'], self.run_details['ghost_version'], self.run_details['network']), allow_pickle=True) except: time.sleep(10.0) continue diff --git a/processing_modules/unit-converter b/processing_modules/unit-converter index 74f3f6d81c2aa50f46f6ac4daeaec703c8940cf7..ea49b74ce93d79082ec5039590cb82db621f1444 160000 --- a/processing_modules/unit-converter +++ b/processing_modules/unit-converter @@ -1 +1 @@ -Subproject commit 74f3f6d81c2aa50f46f6ac4daeaec703c8940cf7 +Subproject commit ea49b74ce93d79082ec5039590cb82db621f1444 diff --git a/run/GHOST_configuration.py b/run/GHOST_configuration.py index eaf0409cb489a888c453a71e5c981fce362e244b..4aadd8cca03191e83d4e2aad5c4778da64bd7417 100644 --- a/run/GHOST_configuration.py +++ b/run/GHOST_configuration.py @@ -14,14 +14,14 @@ process_root = os.getcwd().split('/run')[0] #define the BSC account to do the processing on #OPTIONS: bsc32, cns101 -> this is for prace account -bsc_account = 'bsc32' +bsc_account = 'cns101' #define the QOS (Quality of Service) used to manage jobs on the SLURM system #it is possible to define the qos of the pipeline/stage levels of submission #OPTIONS: gp_bsces (max walltime of 2 days), gp_resa (max walltime of 3 days), gp_debug (max walltime of 2 hours) # gp_hbm (max walltime of 3 days) -qos_pipeline = 'gp_bsces' -qos_stage = 'gp_bsces' +qos_pipeline = 'gp_resa' +qos_stage = 'gp_resa' #define the chunk size to process the GHOST pipeline tasks (i.e. the size of CPU chunks used to process pipeline tasks) #this should not exceed the number of CPUs per node on machine (112 physical cores on Marenostrum5) @@ -35,8 +35,8 @@ stage_chunk_size = 55 #if 'default' is set the maximum allowed walltime for the qos is taken #pipeline_max_walltime = 'default' #stage_max_walltime = 'default' -pipeline_max_walltime = '02:00:00' -stage_max_walltime = '02:00:00' +pipeline_max_walltime = '04:00:00' +stage_max_walltime = '03:00:00' #define job array limit to process GHOST stage tasks (i.e. the number of packed chunks allowed to be submitted simultaneously) job_array_limit = 100 @@ -94,7 +94,8 @@ networks = ['EBAS'] # MERGE NETWORKS (list of networks to merge other network data) # default = all networks # VALID OPTIONS: GHOST, GHOST-PUBLIC -merge_networks = 'default' +#merge_networks = 'default' +merge_networks = ['GHOST'] # PARAMETERS (list of parameters that you wish to process, or default per network) # default = all parameters @@ -224,10 +225,19 @@ merge_networks = 'default' #parameters = ['PM10', 'PM2.5'] #parameters = ['BC_MAC_637nm', 'SSA_470nm'] #parameters = ['BC_MAC_637nm', 'BC_MAC_880nm', 'SSA_470nm', 'SSA_520nm', 'SSA_590nm', 'SSA_637nm', 'SSA_660nm', 'PM10_BC_MAC_637nm', 'PM10_BC_MAC_880nm', 'PM10_SSA_470nm', 'PM10_SSA_520nm', 'PM10_SSA_590nm', 'PM10_SSA_637nm', 'PM10_SSA_660nm', 'PM2.5_BC_MAC_637nm', 'PM2.5_BC_MAC_880nm', 'PM2.5_SSA_470nm', 'PM2.5_SSA_520nm', 'PM2.5_SSA_590nm', 'PM2.5_SSA_637nm', 'PM2.5_SSA_660nm', 'PM1_BC_MAC_637nm', 'PM1_BC_MAC_880nm', 'PM1_SSA_470nm', 'PM1_SSA_520nm', 'PM1_SSA_590nm', 'PM1_SSA_637nm', 'PM1_SSA_660nm'] -parameters = ['AERO_ABS_COEFF_637nm','EC','BC_MAC_637nm'] +#parameters = ['EC','AERO_ABS_COEFF_637nm','BC_MAC_637nm','AERO_ABS_COEFF_880nm','BC_MAC_880nm','PM10_EC','PM10_AERO_ABS_COEFF_637nm','PM10_BC_MAC_637nm','PM10_AERO_ABS_COEFF_880nm','PM10_BC_MAC_880nm','PM2.5_EC','PM2.5_AERO_ABS_COEFF_637nm','PM2.5_BC_MAC_637nm','PM2.5_AERO_ABS_COEFF_880nm','PM2.5_BC_MAC_880nm'] +#parameters = ['AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_637nm','AERO_ABS_COEFF_660nm','SCATAE_450-635nm','SCATAE_450-700nm', +# 'PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_637nm','PM10_AERO_ABS_COEFF_660nm','PM10_SCATAE_450-635nm','PM10_SCATAE_450-700nm', +# 'PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_637nm','PM2.5_AERO_ABS_COEFF_660nm','PM2.5_SCATAE_450-635nm','PM2.5_SCATAE_450-700nm', +# 'PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_637nm','PM1_AERO_ABS_COEFF_660nm','PM1_SCATAE_450-635nm','PM1_SCATAE_450-700nm'] +#parameters = ['PM10_EC', 'PM2.5_EC', 'PM1_AERO_ABS_COEFF_470nm', 'PM1_AERO_ABS_COEFF_520nm', 'PM1_AERO_ABS_COEFF_590nm', 'PM1_AERO_ABS_COEFF_637nm', 'PM1_AERO_ABS_COEFF_660nm'] +#parameters = ['SCATAE_450-635nm','SCATAE_450-700nm','PM10_SCATAE_450-635nm','PM10_SCATAE_450-700nm','PM2.5_SCATAE_450-635nm','PM2.5_SCATAE_450-700nm','PM1_SCATAE_450-635nm','PM1_SCATAE_450-700nm', +# 'BC_MAC_637nm', 'BC_MAC_880nm', 'SSA_470nm', 'SSA_520nm', 'SSA_590nm', 'SSA_637nm', 'SSA_660nm', 'PM10_BC_MAC_637nm', 'PM10_BC_MAC_880nm', 'PM10_SSA_470nm', 'PM10_SSA_520nm', 'PM10_SSA_590nm', 'PM10_SSA_637nm', 'PM10_SSA_660nm', 'PM2.5_BC_MAC_637nm', 'PM2.5_BC_MAC_880nm', 'PM2.5_SSA_470nm', 'PM2.5_SSA_520nm', 'PM2.5_SSA_590nm', 'PM2.5_SSA_637nm', 'PM2.5_SSA_660nm', 'PM1_BC_MAC_637nm', 'PM1_BC_MAC_880nm', 'PM1_SSA_470nm', 'PM1_SSA_520nm', 'PM1_SSA_590nm', 'PM1_SSA_637nm', 'PM1_SSA_660nm'] +#parameters = ['PM1_AERO_ABS_COEFF_637nm','PM1_AERO_ABS_COEFF_880nm','PM1_EC'] +parameters = ['PM1_BC_MAC_637nm', 'PM1_BC_MAC_880nm', 'SSA_470nm', 'SSA_520nm', 'SSA_590nm', 'SSA_637nm', 'SSA_660nm'] #TEMPORAL_RESOLUTIONS = H, D, M, HI (temporal resolution desired of merged output netCDF files: hourly, daily, monthly, hourly instantaneous) -#default = all temporal resolutions for +#default = all temporal resolutions for instantaneous measured parameters, and H, D, M for all others temporal_resolutions = 'default' #REGIONS = GLOBAL, EU, IP, NA (this works by selectively keeping data within a defined rectangle per region) @@ -237,14 +247,15 @@ regions = 'default' #regions = ['GLOBAL'] #STAGES_TO_PROCESS (list of GHOST stages that you wish to process) -#default = all stages +#default = if all default networks are being processed, this is all stages. +# if a selection of networks is being processed, this is all stages except M1 #PARSING OF NETWORK DATA FILES PARSING TO STATION SPECIFIC .npz FILES # S1 = Raw network file parse # S2 = Concatenate parsed station data files / Split stations by significantly changing locational information # S3 = Add globally gridded metadata / Quality control / Add temporal classification codes -#TEMPORAL AVERAGING/AGGREGATION OF STATIONS TO netCDF +#TEMPORAL AVERAGING / AGGREGATION OF STATIONS TO netCDF # T1 = Temporally averaging by station # T2 = Aggregate temporally averaged station data in monthly netCDFs @@ -257,11 +268,12 @@ regions = 'default' #MERGE # M1 = Merge data across networks -stages_to_process = 'default' +#stages_to_process = 'default' +#stages_to_process = ['S1','S2','S3','T1','T2','P1','E1','M1'] #stages_to_process = ['S1','S2','S3','T1','T2'] #stages_to_process = ['S1', 'S2'] #stages_to_process = ['S1'] #stages_to_process = ['M1'] -#stages_to_process = ['P1'] +stages_to_process = ['P1'] ###--------------------------------------------------------------------------------------------------### ###--------------------------------------------------------------------------------------------------### diff --git a/run/__pycache__/GHOST_configuration.cpython-39.pyc b/run/__pycache__/GHOST_configuration.cpython-39.pyc index 7f5ce362726363f157e7e18dbc899bc3ef24d899..2fe336446ceb263638a8f9ef019cae27a5895fe4 100644 Binary files a/run/__pycache__/GHOST_configuration.cpython-39.pyc and b/run/__pycache__/GHOST_configuration.cpython-39.pyc differ diff --git a/run/stage_logs/NAPMD_BENZENE/S1/0_2019.out b/run/stage_logs/NAPMD_BENZENE/S1/0_2019.out deleted file mode 100644 index 9cb166e495be2ef77d91557930ec55c089efa50d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/S1/0_2019.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/BENZENE_2019.csv -110 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.015517576535542806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/S1/0_2020.out b/run/stage_logs/NAPMD_BENZENE/S1/0_2020.out deleted file mode 100644 index 8bc90f65f29c5b5b3411f47737f5d98ba401b417..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/S1/0_2020.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/BENZENE_2020.csv -110 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.005723138650258382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/S2/0_110_UNK.out b/run/stage_logs/NAPMD_BENZENE/S2/0_110_UNK.out deleted file mode 100644 index 92b8a10358bdb3065780c2e83ed5b0ba10e51ec9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/S2/0_110_UNK.out +++ /dev/null @@ -1,4 +0,0 @@ -110_UNK -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00823461612065633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/S2/0_96_UNK.out b/run/stage_logs/NAPMD_BENZENE/S2/0_96_UNK.out deleted file mode 100644 index 8928578e11a28ac4e61e78040203ad0ad74e3713..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/S2/0_96_UNK.out +++ /dev/null @@ -1,4 +0,0 @@ -96_UNK -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004898397127787272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/S3/0_110_UNK.out b/run/stage_logs/NAPMD_BENZENE/S3/0_110_UNK.out deleted file mode 100644 index 6f45372c5ecceff862bd375d2b3e36ff97c99716..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/S3/0_110_UNK.out +++ /dev/null @@ -1,23 +0,0 @@ -110_UNK -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9138068596522013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/S3/0_96_UNK.out b/run/stage_logs/NAPMD_BENZENE/S3/0_96_UNK.out deleted file mode 100644 index 20087d680244f7599739554a0b269dd2f4ccae3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/S3/0_96_UNK.out +++ /dev/null @@ -1,23 +0,0 @@ -96_UNK -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9232311407725017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T1/0_110_UNK_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T1/0_110_UNK_D_GLOBAL.out deleted file mode 100644 index a3437f8dd0647b9e2743c6847c4f2e13da56c3bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T1/0_110_UNK_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09995988607406617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T1/0_110_UNK_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T1/0_110_UNK_H_GLOBAL.out deleted file mode 100644 index 603f400dc9103c589d6ee7908ea2b2fbc207182d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T1/0_110_UNK_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2874062697092692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T1/0_110_UNK_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T1/0_110_UNK_M_GLOBAL.out deleted file mode 100644 index 0ee091e5d8e62ae117b15db4f6d5d8edcd0d00ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T1/0_110_UNK_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0909884214401245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T1/0_96_UNK_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T1/0_96_UNK_D_GLOBAL.out deleted file mode 100644 index b1902e9d687a30ca6d4454192fbd6f464f9fc686..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T1/0_96_UNK_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06476238171259562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T1/0_96_UNK_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T1/0_96_UNK_H_GLOBAL.out deleted file mode 100644 index 996eaefc0e5b58fb89e4cfe02895a82efee5e62b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T1/0_96_UNK_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.218377157052358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T1/0_96_UNK_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T1/0_96_UNK_M_GLOBAL.out deleted file mode 100644 index 070dc93c075b31b9727ff03ff9e5c0762d879490..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T1/0_96_UNK_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1944366653760274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201812_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201812_D_GLOBAL.out deleted file mode 100644 index 43b9369b51090e9a542e7075cddd74e2734ebdc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.040570791562398276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201812_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201812_H_GLOBAL.out deleted file mode 100644 index b7d88db1a5f9e3b46bae771c84b0941d5b1b3ff9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.027640930811564126 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201812_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201812_M_GLOBAL.out deleted file mode 100644 index ecd05eca87cc9cc292b2ad810d93a453d7da0c57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.04209668636322021 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201901_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201901_D_GLOBAL.out deleted file mode 100644 index 0b8061832e07cb3aec2598b74f8cd8fcf9ef3342..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.04232249657313029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201901_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201901_H_GLOBAL.out deleted file mode 100644 index c31857e90a7c80eab89ff4712b7c3709750a21cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.027288031578063966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201901_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201901_M_GLOBAL.out deleted file mode 100644 index def522ef567eea489535ce4f8833084fa6200dd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.027205522855122885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201902_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201902_D_GLOBAL.out deleted file mode 100644 index b7d5ccd9781e14f44f60d316e8abbf3196bad440..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.04211757183074951 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201902_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201902_H_GLOBAL.out deleted file mode 100644 index 6df46b3d548a81c6f87c9e0166b9966212b12c36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.018651493390401206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201902_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201902_M_GLOBAL.out deleted file mode 100644 index fa2d92f7c2a9b88ac90f37819bcb9a35ad250a5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.023088375727335613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201903_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201903_D_GLOBAL.out deleted file mode 100644 index a59c8a5c2eb2f40ecc21246c1d2936d54b2ae661..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.04150075117746989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201903_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201903_H_GLOBAL.out deleted file mode 100644 index 959c75823f6d74d1a33bb2eb0402db6f9b06f194..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.027591180801391602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201903_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201903_M_GLOBAL.out deleted file mode 100644 index b3517286f7b4f1b76023d877d44fc21efd8c7499..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.02771014372507731 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201904_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201904_D_GLOBAL.out deleted file mode 100644 index 52dd823df0593f1fffc56c3e62db896ad5ea6597..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.03277205626169841 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201904_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201904_H_GLOBAL.out deleted file mode 100644 index 80d47952c147484e2a0465162853bd182dad558e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.0264758825302124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201904_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201904_M_GLOBAL.out deleted file mode 100644 index 74c17199ba02e7ad168dd06e29143ffef4267875..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.03829768101374308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201905_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201905_D_GLOBAL.out deleted file mode 100644 index 3b2084364df1c0849dfaa48d253de4c006c4711e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.04016587734222412 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201905_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201905_H_GLOBAL.out deleted file mode 100644 index 5abf597046ce8a57829c4644492b8f47c5dd3489..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.03915288845698039 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201905_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201905_M_GLOBAL.out deleted file mode 100644 index 09bb7e7ea428e988aec349baceac9643de6378cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.03964780171712239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201906_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201906_D_GLOBAL.out deleted file mode 100644 index b50aec9cbdaa3d405017a860fb103472dc9edceb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.026659619808197022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201906_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201906_H_GLOBAL.out deleted file mode 100644 index bcafd43a19231ef486e18f1a490bc53a592c3576..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.04177751938501994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201906_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201906_M_GLOBAL.out deleted file mode 100644 index 300c0affd76aed26ee50a3a967e5ea3719435445..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.04090044895807902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201907_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201907_D_GLOBAL.out deleted file mode 100644 index 0ef55ffb99c8b1a391fe0d2e7105c51316b230d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.040624841054280596 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201907_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201907_H_GLOBAL.out deleted file mode 100644 index eae380cf5a7c2203a6abe161683d5eb5bb65a5fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.03771638870239258 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201907_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201907_M_GLOBAL.out deleted file mode 100644 index 32474714822618b90c486d39e8bbe5d0ddfa30d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.02414206266403198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201908_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201908_D_GLOBAL.out deleted file mode 100644 index 3fc88b033ff90a04b59578e5b99b16d5655c3aff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.04178438584009806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201908_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201908_H_GLOBAL.out deleted file mode 100644 index d418a1ce3a90e84bef44e81bcb7bb57d08055812..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.03944502274195353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201908_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201908_M_GLOBAL.out deleted file mode 100644 index d32aad2911edb7437fd04cac59bae6e3a85d8be0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.026887834072113037 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201909_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201909_D_GLOBAL.out deleted file mode 100644 index d68684e8bc432837f87b5a8b65d2ada7d0b9855a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.025729143619537355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201909_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201909_H_GLOBAL.out deleted file mode 100644 index 564fbdaed2e74963a360ed52d23d51937f32bb45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.042125380039215087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201909_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201909_M_GLOBAL.out deleted file mode 100644 index 4f45bff32ee706c949187ddaba58243e409344b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.03975916306177775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201910_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201910_D_GLOBAL.out deleted file mode 100644 index 5f10933e99bc9b1ea159d3d84920152909c66444..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.04198798735936483 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201910_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201910_H_GLOBAL.out deleted file mode 100644 index 452a154b83dc111888b5f7175ee0a0af3e9f3484..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.040330966313680015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201910_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201910_M_GLOBAL.out deleted file mode 100644 index 237ba3bed72b04ec4376b2ba1357b045549e45b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.02841509977976481 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201911_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201911_D_GLOBAL.out deleted file mode 100644 index aa0685d78510c9905041b1397c8d119946b030a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.03843484719594319 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201911_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201911_H_GLOBAL.out deleted file mode 100644 index 71205dc8a105092093d6350c4c912944ad60883b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.026890150705973306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201911_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201911_M_GLOBAL.out deleted file mode 100644 index 27a4f7c822c6a3ba04c4c5d035253e26e92ec527..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.04081792831420898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index fe4ea4a95746b34c10b3eeebd38d38b95b288a78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.04027918577194214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index c8cb839d71d4804aca00513d029e6986dc326a14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.037461249033610027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index d41f7bbd7a59f8058558c86e863bc9668d97256c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.027834649880727133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index b9e273b28b4181df23600edaaf046efc0463961a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.04140853484471639 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index 8267289f8edb8454eb5a0382242ee1a5bc3c90fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.0270734707514445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index 835d527fce18ad348bc4298ecbfff1cbd7978948..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.027895514170328775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index 224976dea69ce59944269183c59358b225e960f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.02192918062210083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index 6997ad227f2b99c707c2e09a257f83ec43dd68ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.04210921128590902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index 3de648f54805354950dca0bb92dc0c4a98ede6d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.037365301450093584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index 6b15e46cf29b32e4266106d357a013fc42bd5ca8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.04008355140686035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index 608f2a5215c4f8d23156284810ab19efc40489a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.0404555082321167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index 5d69055d3d751ad9e38e2e032c32293b13ac7c83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.027776698271433514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index 7bcd3bd873524ef5a3de4517edb85026a85fe4bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.027724842230478924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index 79eca016d75b1b6cd87a2d41c5b87c493d96cf8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.04090636173884074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index 4dcbf6a6d391df241674a84d6a0aa9f6cba38538..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.040830469131469725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index ddb4658d3098bd91b18b1c3ab36dc6ec15b3373c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.02710565725962321 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index 303b5b57e625c6eb5ac37458335e89b121238abf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.04254385232925415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_BENZENE/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_BENZENE/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index e7f0af890eb15f87fc20c0efac80f0b8b2087f8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_BENZENE/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.040692798296610516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CH4/S1/0_2019.out b/run/stage_logs/NAPMD_CH4/S1/0_2019.out deleted file mode 100644 index ba6e8f5b7bf37fc0cce58a11bbdc05d17af489e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CH4/S1/0_2019.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/CH4_2019.csv -0.010056531429290772 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1979.out b/run/stage_logs/NAPMD_CO/S1/0_1979.out deleted file mode 100644 index 4f032879e2b0034e337eaa21a6b58f336486f5d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1979.out +++ /dev/null @@ -1,3 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1979/CO_1979.csv -325 -- PARSING RAW DATA -0.00614159901936849 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1980.out b/run/stage_logs/NAPMD_CO/S1/0_1980.out deleted file mode 100644 index 1d0b73c842e0482133bdc10813e58b21867435c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1980.out +++ /dev/null @@ -1,3 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1980/CO_1980.csv -325 -- PARSING RAW DATA -0.005610080560048422 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1981.out b/run/stage_logs/NAPMD_CO/S1/0_1981.out deleted file mode 100644 index 28683a53ff9c72ac6f9bfdfefe45b6d43e6820bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1981.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1981/CO_1981.csv -325 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.009176297982533773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1982.out b/run/stage_logs/NAPMD_CO/S1/0_1982.out deleted file mode 100644 index 16e90eb671ce16f1c52882fec5f7194f439f8500..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1982.out +++ /dev/null @@ -1,5 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1982/CO_1982.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.022539166609446208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1983.out b/run/stage_logs/NAPMD_CO/S1/0_1983.out deleted file mode 100644 index d5da388c08ccedfce8bc991a7006ef59cb143906..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1983.out +++ /dev/null @@ -1,6 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1983/CO_1983.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.016976133982340495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1984.out b/run/stage_logs/NAPMD_CO/S1/0_1984.out deleted file mode 100644 index 2a5afd101a6db93e9bfe09ff82ec1a2823d94808..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1984.out +++ /dev/null @@ -1,7 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1984/CO_1984.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.031192052364349365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1985.out b/run/stage_logs/NAPMD_CO/S1/0_1985.out deleted file mode 100644 index 46152529095f99751684623b2ac7e90502405969..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1985.out +++ /dev/null @@ -1,5 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1985/CO_1985.csv -325 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -0.021722257137298584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1986.out b/run/stage_logs/NAPMD_CO/S1/0_1986.out deleted file mode 100644 index 3f01d07c2df9b9f1c52067395415c79fde9cf167..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1986.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1986/CO_1986.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -0.00883158047993978 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1987.out b/run/stage_logs/NAPMD_CO/S1/0_1987.out deleted file mode 100644 index 6b1b929030fba3b927369cb4962dbaf7397267fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1987.out +++ /dev/null @@ -1,3 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1987/CO_1987.csv -331 -- PARSING RAW DATA -0.004814052581787109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1988.out b/run/stage_logs/NAPMD_CO/S1/0_1988.out deleted file mode 100644 index 2652b20b5b493b72d39c5005ed999fc4b906be55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1988.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1988/CO_1988.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -0.007601189613342285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1989.out b/run/stage_logs/NAPMD_CO/S1/0_1989.out deleted file mode 100644 index da308e3300bb876278ab3937b0321b4d469faa49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1989.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1989/CO_1989.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -0.014393122990926106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1990.out b/run/stage_logs/NAPMD_CO/S1/0_1990.out deleted file mode 100644 index 2fdb38f280194425a3e3b2a2c310ce88e03770b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1990.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1990/CO_1990.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -0.010979882876078288 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1991.out b/run/stage_logs/NAPMD_CO/S1/0_1991.out deleted file mode 100644 index 8e8815d34b9f158a0581ba6cf1e00e01a9daeeb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1991.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1991/CO_1991.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -0.010984448591868083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1992.out b/run/stage_logs/NAPMD_CO/S1/0_1992.out deleted file mode 100644 index ef5ca979eeffd29062e6bafdef699372496c5de9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1992.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1992/CO_1992.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -0.006817138195037842 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1993.out b/run/stage_logs/NAPMD_CO/S1/0_1993.out deleted file mode 100644 index e40f151371bcb8da9e89df949dd8d4849f5e27af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1993.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1993/CO_1993.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -0.018793718020121256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1994.out b/run/stage_logs/NAPMD_CO/S1/0_1994.out deleted file mode 100644 index edba43d0559e992ea89a991269fb9d2f0ac7a4d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1994.out +++ /dev/null @@ -1,10 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1994/CO_1994.csv -14 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.06785515944163005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1995.out b/run/stage_logs/NAPMD_CO/S1/0_1995.out deleted file mode 100644 index f10fda3ebcdafb3381e816696d9c7241eb132906..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1995.out +++ /dev/null @@ -1,11 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1995/CO_1995.csv -14 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -342 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.053349443276723224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1996.out b/run/stage_logs/NAPMD_CO/S1/0_1996.out deleted file mode 100644 index 5d5375a3349f5b847c14421aee1708f49d3ab651..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1996.out +++ /dev/null @@ -1,10 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1996/CO_1996.csv -14 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.08539635340372721 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1997.out b/run/stage_logs/NAPMD_CO/S1/0_1997.out deleted file mode 100644 index eba140f0a8759c05caf4661cbf098ffc6313a2b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1997.out +++ /dev/null @@ -1,10 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1997/CO_1997.csv -14 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.08071235020955404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1998.out b/run/stage_logs/NAPMD_CO/S1/0_1998.out deleted file mode 100644 index 5e8a35b0aa0dac244033a8d6601bf041299b59df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1998.out +++ /dev/null @@ -1,10 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1998/CO_1998.csv -14 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.10042494535446167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_1999.out b/run/stage_logs/NAPMD_CO/S1/0_1999.out deleted file mode 100644 index 91b0cd9703f8a0b852c1a715fa99a6abb47de10a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_1999.out +++ /dev/null @@ -1,10 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1999/CO_1999.csv -14 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.09185177485148112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2000.out b/run/stage_logs/NAPMD_CO/S1/0_2000.out deleted file mode 100644 index 4716ea917c384bbd1183a8dec33c2c187d5a5757..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2000.out +++ /dev/null @@ -1,11 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2000/CO_2000.csv -14 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.10334011316299438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2001.out b/run/stage_logs/NAPMD_CO/S1/0_2001.out deleted file mode 100644 index 7833055f3a58e74b38da426ddf8283d5f1a77867..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2001.out +++ /dev/null @@ -1,11 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2001/CO_2001.csv -14 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.10401135683059692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2002.out b/run/stage_logs/NAPMD_CO/S1/0_2002.out deleted file mode 100644 index ab70041cd3d0fb7fee32a683c541a267f8c61b2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2002.out +++ /dev/null @@ -1,19 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2002/CO_2002.csv -14 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -342 -- PARSING RAW DATA -343 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.19369690418243407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2003.out b/run/stage_logs/NAPMD_CO/S1/0_2003.out deleted file mode 100644 index 5151a2c603ecba8e0b9500a8d6de541621db0b92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2003.out +++ /dev/null @@ -1,18 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2003/CO_2003.csv -14 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -342 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.20101940234502155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2004.out b/run/stage_logs/NAPMD_CO/S1/0_2004.out deleted file mode 100644 index cba1817f7d91ada87a2248bad184546278ecbf33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2004.out +++ /dev/null @@ -1,19 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2004/CO_2004.csv -14 -- PARSING RAW DATA -22 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -342 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.20166210333506265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2005.out b/run/stage_logs/NAPMD_CO/S1/0_2005.out deleted file mode 100644 index 190fb9021776a0d853e50b9048021bc238636974..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2005.out +++ /dev/null @@ -1,18 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2005/CO_2005.csv -22 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -342 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.1991117795308431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2006.out b/run/stage_logs/NAPMD_CO/S1/0_2006.out deleted file mode 100644 index 41e01c497da32fc0f9f36ecc3149dd33794d90af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2006.out +++ /dev/null @@ -1,18 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2006/CO_2006.csv -22 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -342 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -46 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.22390015920003256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2007.out b/run/stage_logs/NAPMD_CO/S1/0_2007.out deleted file mode 100644 index 309fb794cff772d66d0181a475c04fdf6e42f751..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2007.out +++ /dev/null @@ -1,18 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2007/CO_2007.csv -22 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -46 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.21019248167673746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2008.out b/run/stage_logs/NAPMD_CO/S1/0_2008.out deleted file mode 100644 index ae248fa0adb0cb81a546043d4b278fed2f4b798b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2008.out +++ /dev/null @@ -1,18 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2008/CO_2008.csv -22 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -46 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.2047603726387024 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2009.out b/run/stage_logs/NAPMD_CO/S1/0_2009.out deleted file mode 100644 index 20161d825556ba44cd84487a8add6f951787496c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2009.out +++ /dev/null @@ -1,18 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2009/CO_2009.csv -22 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -46 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.1988980491956075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2010.out b/run/stage_logs/NAPMD_CO/S1/0_2010.out deleted file mode 100644 index c57d9e769c2da78fdb54db991c1c03dc749f4af5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2010.out +++ /dev/null @@ -1,23 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2010/CO_2010.csv -105 -- PARSING RAW DATA -108 -- PARSING RAW DATA -118 -- PARSING RAW DATA -22 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -46 -- PARSING RAW DATA -62 -- PARSING RAW DATA -68 -- PARSING RAW DATA -80 -- PARSING RAW DATA -0.2510185201962789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2011.out b/run/stage_logs/NAPMD_CO/S1/0_2011.out deleted file mode 100644 index 81afd0ba2e607897de20e7ce672c83353eb5686b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2011.out +++ /dev/null @@ -1,24 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2011/CO_2011.csv -105 -- PARSING RAW DATA -108 -- PARSING RAW DATA -118 -- PARSING RAW DATA -22 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -46 -- PARSING RAW DATA -62 -- PARSING RAW DATA -80 -- PARSING RAW DATA -0.25496464570363364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2012.out b/run/stage_logs/NAPMD_CO/S1/0_2012.out deleted file mode 100644 index 397c698246c1a51fe360aad7330dcaeedb50be01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2012.out +++ /dev/null @@ -1,30 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2012/CO_2012.csv -1 -- PARSING RAW DATA -105 -- PARSING RAW DATA -108 -- PARSING RAW DATA -118 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -46 -- PARSING RAW DATA -5 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -80 -- PARSING RAW DATA -0.2843204895655314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2013.out b/run/stage_logs/NAPMD_CO/S1/0_2013.out deleted file mode 100644 index 669f8e5dd4c19e2013e1866210405d1ff6355d13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2013.out +++ /dev/null @@ -1,28 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2013/CO_2013.csv -1 -- PARSING RAW DATA -105 -- PARSING RAW DATA -108 -- PARSING RAW DATA -118 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -46 -- PARSING RAW DATA -5 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -80 -- PARSING RAW DATA -0.282840092976888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2014.out b/run/stage_logs/NAPMD_CO/S1/0_2014.out deleted file mode 100644 index e0d53c7911e66eae731e9c3f6d4515229cf94c92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2014.out +++ /dev/null @@ -1,32 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2014/CO_2014.csv -1 -- PARSING RAW DATA -105 -- PARSING RAW DATA -108 -- PARSING RAW DATA -118 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -46 -- PARSING RAW DATA -5 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -80 -- PARSING RAW DATA -0.33488284746805824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2015.out b/run/stage_logs/NAPMD_CO/S1/0_2015.out deleted file mode 100644 index 9dae679358497e8d557de3b9b80a795aa36588e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2015.out +++ /dev/null @@ -1,37 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2015/CO_2015.csv -1 -- PARSING RAW DATA -105 -- PARSING RAW DATA -108 -- PARSING RAW DATA -118 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -271 -- PARSING RAW DATA -279 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -46 -- PARSING RAW DATA -5 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -80 -- PARSING RAW DATA -89 -- PARSING RAW DATA -98 -- PARSING RAW DATA -0.32787453730901084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2016.out b/run/stage_logs/NAPMD_CO/S1/0_2016.out deleted file mode 100644 index 4d806bcba4d4eae01858d5f72c1baa57cd951d06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2016.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2016/CO_2016.csv -0.09320483605066936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2017.out b/run/stage_logs/NAPMD_CO/S1/0_2017.out deleted file mode 100644 index a063d802fe1069633f4455a65299ee8e3089b6e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2017.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2017/CO_2017.csv -0.07148180007934571 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2018.out b/run/stage_logs/NAPMD_CO/S1/0_2018.out deleted file mode 100644 index 9cd702489a608bf81db2655a39fd3eaed11f3080..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2018.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2018/CO_2018.csv -0.07844159205754599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2019.out b/run/stage_logs/NAPMD_CO/S1/0_2019.out deleted file mode 100644 index bccfe139d7a1b66262b3abde6c0c01d749ee6bb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2019.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/CO_2019.csv -0.09573561350504557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2020.out b/run/stage_logs/NAPMD_CO/S1/0_2020.out deleted file mode 100644 index 7ed1d5b1e5b58c6117661af35415ea2e461a1e1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2020.out +++ /dev/null @@ -1,49 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/CO_2020.csv -108 -- PARSING RAW DATA -118 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -273 -- PARSING RAW DATA -279 -- PARSING RAW DATA -28 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -340 -- PARSING RAW DATA -35 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -356 -- PARSING RAW DATA -357 -- PARSING RAW DATA -360 -- PARSING RAW DATA -363 -- PARSING RAW DATA -368 -- PARSING RAW DATA -369 -- PARSING RAW DATA -370 -- PARSING RAW DATA -372 -- PARSING RAW DATA -373 -- PARSING RAW DATA -374 -- PARSING RAW DATA -375 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -46 -- PARSING RAW DATA -5 -- PARSING RAW DATA -534 -- PARSING RAW DATA -540 -- PARSING RAW DATA -547 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -80 -- PARSING RAW DATA -89 -- PARSING RAW DATA -98 -- PARSING RAW DATA -0.3939271370569865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S1/0_2021.out b/run/stage_logs/NAPMD_CO/S1/0_2021.out deleted file mode 100644 index 8351aca59225cc8566e40bb6cbaf1993646b54eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S1/0_2021.out +++ /dev/null @@ -1,6 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2021/CO_2021.csv -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -357 -- PARSING RAW DATA -360 -- PARSING RAW DATA -0.027305444081624348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_105_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_105_FTIR.out deleted file mode 100644 index f9837b8162496bdc91e86140319c16267826e255..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_105_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -105_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013805099328358968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_108_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_108_FTIR.out deleted file mode 100644 index 699e9507bb0d32187e274385108a0c48175354b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_108_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -108_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020028181870778403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_118_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_118_FTIR.out deleted file mode 100644 index 7e43729c825f8921bfb93b182449043126492f55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_118_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -118_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.021297021706899007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_14_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_14_FTIR.out deleted file mode 100644 index 6debdf509133654c516dc956e9233013f9b3acd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_14_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -14_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.029944082101186115 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_18_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_18_FTIR.out deleted file mode 100644 index 2e1676ae3a1810ad77b3286f45b1166fa6cdd3ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_18_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -18_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011279559135437012 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_1_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_1_FTIR.out deleted file mode 100644 index 0239241e9a124f7400967a5874d23fa653e4e4bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_1_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -1_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00752477248509725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_20_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_20_FTIR.out deleted file mode 100644 index 37ce3d86daf4af60f9c9220c262ea7aba4ed6385..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_20_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -20_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010756965478261311 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_22_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_22_FTIR.out deleted file mode 100644 index 39099f90789c159c89ce0779c076dee2c3d7d796..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_22_FTIR.out +++ /dev/null @@ -1,21 +0,0 @@ -22_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2004-01-09 16:00:00 2004-12-31 12:00:00 1053487680 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1053487680_1054001520.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/22_FTIR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1375375747680664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_271_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_271_FTIR.out deleted file mode 100644 index b00aced45f18fcb5bd5c7204d0591be088d75c0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_271_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -271_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0032277941703796388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_273_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_273_FTIR.out deleted file mode 100644 index 1cadfbda5e0840d15939176e729a7e17b4437d79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_273_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -273_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002757620811462402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_279_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_279_FTIR.out deleted file mode 100644 index 74651cbba0957cd4c03d97a4dc347d2b7a445ae0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_279_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -279_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005587470531463623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_28_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_28_FTIR.out deleted file mode 100644 index 25c70b29e49db41930731bd5fb1677fc52bb8e92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_28_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -28_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002554515997568766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_2_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_2_FTIR.out deleted file mode 100644 index a0e4387baf4253f2fc886c430868ba3ccaa480e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_2_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -2_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0054955561955769856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_30_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_30_FTIR.out deleted file mode 100644 index 128c0e939fa4af7136c11afbaf427baf922de281..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_30_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -30_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.058691151936848956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_31_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_31_FTIR.out deleted file mode 100644 index 8a444a0ba5c2a8fc7032b6f3bbeef7a22d22671f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_31_FTIR.out +++ /dev/null @@ -1,17 +0,0 @@ -31_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2005-06-10 04:00:00 2005-12-31 12:00:00 1054232880 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1054232880_1054527120.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-07-23 23:00:00 1057682160 1057978020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1057682160_1057978020.npz'] -2015-08-19 01:00:00 2015-08-19 22:00:00 1059592380 1059593640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/31_FTIR_1059592380_1059593640.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1335476040840149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_324_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_324_FTIR.out deleted file mode 100644 index 84eb18f0b23f15bd52cb12c411a51b8c66e4d935..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_324_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -324_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.041671005884806316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_325_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_325_FTIR.out deleted file mode 100644 index 552e621fa9f93fa184eaee297fb285ad55a3e7eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_325_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -325_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0682499130566915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_326_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_326_FTIR.out deleted file mode 100644 index 5a7f6112bae32a43d92e26b43397b7a0ceb40078..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_326_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -326_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00301053524017334 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_32_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_32_FTIR.out deleted file mode 100644 index 1c8a9700d48b6fd0cbfd533b0ecd8e5175fb08db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_32_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -32_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0037466049194335937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_330_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_330_FTIR.out deleted file mode 100644 index 9c4b11994581fe8f082c1d9b23e349015d15aa5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_330_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -330_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0026697556177775065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_331_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_331_FTIR.out deleted file mode 100644 index dfc322567b72a265e0e8965a9aefa18b2e9fde10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_331_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -331_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.07916492621103922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_332_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_332_FTIR.out deleted file mode 100644 index b5a146a6493c0f88786f91ce2bd33364fff6d2ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_332_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -332_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.050312558809916176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_335_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_335_FTIR.out deleted file mode 100644 index 827a39328325d4a3ed3e7688d4faa6a887092a72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_335_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -335_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04102339347203573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_336_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_336_FTIR.out deleted file mode 100644 index 95dbd6e65a91ce235ef260277907d4c1bc713ee0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_336_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -336_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00591588020324707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_337_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_337_FTIR.out deleted file mode 100644 index 47c317e0bf5626023e090a883f375aeedbb1038a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_337_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -337_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006279897689819336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_339_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_339_FTIR.out deleted file mode 100644 index 4d3d85d1b6c7e20631ca4563b78f141a220665c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_339_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -339_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03575365543365479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_340_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_340_FTIR.out deleted file mode 100644 index d4bf6092a9ed869c03203e4de8298b8ce8eac3f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_340_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -340_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006762707233428955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_342_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_342_FTIR.out deleted file mode 100644 index 86c0703cc2e60cf5bf20b870087da08f7d388ade..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_342_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -342_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0129266619682312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_343_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_343_FTIR.out deleted file mode 100644 index 31170eba66c5285beab268eaf135514f5e5c476b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_343_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -343_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.001720257600148519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_347_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_347_FTIR.out deleted file mode 100644 index 0031a01b516b39503fe55a0be7b746944e3a73ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_347_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -347_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006683250268300374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_352_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_352_FTIR.out deleted file mode 100644 index e1b2735500a26880d05ef8119e8c8051e2366d32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_352_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -352_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0524250864982605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_354_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_354_FTIR.out deleted file mode 100644 index f4a564ef91bc52798c2f7f833989995dbd5afe46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_354_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -354_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.057066563765207926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_356_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_356_FTIR.out deleted file mode 100644 index 0bc28f43d8a21365b686c96dc6ff53a6571ee323..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_356_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -356_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0026663422584533693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_357_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_357_FTIR.out deleted file mode 100644 index b25f571d21b9a327ae53c8b1cccd8181e0c51994..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_357_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -357_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004455935955047607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_35_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_35_FTIR.out deleted file mode 100644 index 5489b60fcf30f0088ff7d07e492b28b759155ff6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_35_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -35_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0015012780825297038 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_360_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_360_FTIR.out deleted file mode 100644 index 6bbf8eacfbcf5f5ffc5853eabcc36d65c8955162..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_360_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -360_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.058741092681884766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_362_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_362_FTIR.out deleted file mode 100644 index 6f3a90cdb49f1c43d6de496c52773c0a665518ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_362_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -362_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002296710014343262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_363_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_363_FTIR.out deleted file mode 100644 index 9b0cfc6c82d97a859011fe8a222771bf04eab5d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_363_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -363_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0017242948214213052 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_368_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_368_FTIR.out deleted file mode 100644 index ffee9e457c16c5d0bb20318a69f368b5a1c23f34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_368_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -368_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0017526904741923014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_369_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_369_FTIR.out deleted file mode 100644 index 974b3b83d638880b2081df886be1425f754582c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_369_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -369_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0012241284052530925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_370_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_370_FTIR.out deleted file mode 100644 index 7f5dd2e378cb7147e8f9dbab80228da00aa13917..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_370_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -370_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0031818230946858723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_372_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_372_FTIR.out deleted file mode 100644 index 4950ad33f65d1e270e41402a61213a0a80a097e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_372_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -372_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002191758155822754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_373_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_373_FTIR.out deleted file mode 100644 index b939c436d2a5feb25db01748ecc0b0b3c3e0727f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_373_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -373_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0028241554896036784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_374_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_374_FTIR.out deleted file mode 100644 index d8518290230a447febda470e32c5bcf2fc108778..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_374_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -374_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002734816074371338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_375_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_375_FTIR.out deleted file mode 100644 index 562561465a11aa484f0e58156c6207805bc41ec5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_375_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -375_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0021908362706502277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_3_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_3_FTIR.out deleted file mode 100644 index a379c1858caa701355f9b82fa122e53eadf14a5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_3_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -3_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013262577851613363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_40_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_40_FTIR.out deleted file mode 100644 index 2cbd5f088ed747c97fada7bc57111f0b42940ba0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_40_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -40_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05157497326533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_42_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_42_FTIR.out deleted file mode 100644 index a0a0712fa6ff7390c194e991ceb2dc44b3ca90e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_42_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -42_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003494699796040853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_43_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_43_FTIR.out deleted file mode 100644 index 437cdd47432887e221a7b37efe6a6867ccf6d87b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_43_FTIR.out +++ /dev/null @@ -1,18 +0,0 @@ -43_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2007-02-28 12:00:00 2007-12-31 11:00:00 1055137680 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1055137680_1055578320.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1055137680_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/43_FTIR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.11112456719080607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_46_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_46_FTIR.out deleted file mode 100644 index bdafbecad25c477e4d999f14677d0fa4880429f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_46_FTIR.out +++ /dev/null @@ -1,31 +0,0 @@ -46_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 14:00:00 1994-12-31 12:00:00 1048215720 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1048215720_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/46_FTIR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1756725271542867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_4_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_4_FTIR.out deleted file mode 100644 index dc1e157e8bf87057b35384218ebd6844c7bbff46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_4_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -4_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01588368813196818 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_534_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_534_FTIR.out deleted file mode 100644 index c4ab7bf6450f9a557a2815dcba62d05b70eae978..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_534_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -534_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0020607948303222657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_540_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_540_FTIR.out deleted file mode 100644 index fb6d80b6f6d6123b0094931a0783c33da0a8c7ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_540_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -540_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.001227716604868571 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_5_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_5_FTIR.out deleted file mode 100644 index 1fdf2e8ec9246004db6d19cbdc38fe9ecd0eb767..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_5_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -5_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010191659132639566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_61_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_61_FTIR.out deleted file mode 100644 index f2484ecae180fea22cfaa070a4fa93e9129498f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_61_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -61_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02020258108774821 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_62_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_62_FTIR.out deleted file mode 100644 index 38e43d8d7018ffb3a96f24afc4d1ed5695f4c2fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_62_FTIR.out +++ /dev/null @@ -1,31 +0,0 @@ -62_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-10-15 04:00:00 1048215660 1048629840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1048215660_1048629840.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1995-02-01 03:00:00 1995-12-31 12:00:00 1048786740 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1048786740_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1055578260_1056103740.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1055578260_1056103740.npz -2007-12-31 12:00:00 2008-12-30 09:00:00 1055578320 1056103740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1055578260_1056103740.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcco/temporary_S1/62_FTIR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16709725062052408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_64_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_64_FTIR.out deleted file mode 100644 index fbcff901d1fa80c50504763a8cff9c7d6356d2e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_64_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -64_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012411995728810628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_68_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_68_FTIR.out deleted file mode 100644 index 0460a1aedd96472fea9e1287eb90986d98d9b39f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_68_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -68_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003150002161661784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_6_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_6_FTIR.out deleted file mode 100644 index d5e128a745fd7a6f3445cec8f57c59a991e9c633..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_6_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -6_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0031425873438517254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/0_80_FTIR.out b/run/stage_logs/NAPMD_CO/S2/0_80_FTIR.out deleted file mode 100644 index 311bd3c5ab348b93d2cc3e192f295c9258f8dc83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/0_80_FTIR.out +++ /dev/null @@ -1,4 +0,0 @@ -80_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01825951337814331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/1_547_FTIR.out b/run/stage_logs/NAPMD_CO/S2/1_547_FTIR.out deleted file mode 100644 index 99eae5efe0102f1802fd56c40755fed0257461d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/1_547_FTIR.out +++ /dev/null @@ -1,3 +0,0 @@ -547_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/1_89_FTIR.out b/run/stage_logs/NAPMD_CO/S2/1_89_FTIR.out deleted file mode 100644 index 7e21b50467d313c56fc9dd0fbcd783cb945e32ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/1_89_FTIR.out +++ /dev/null @@ -1,3 +0,0 @@ -89_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S2/1_98_FTIR.out b/run/stage_logs/NAPMD_CO/S2/1_98_FTIR.out deleted file mode 100644 index b84aa927716f7e55aaf440bd0375c324f8473c09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S2/1_98_FTIR.out +++ /dev/null @@ -1,3 +0,0 @@ -98_FTIR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_105_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_105_FTIR.out deleted file mode 100644 index 88e28d8e310329052d80c4f909c95979b9e01e57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_105_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -105_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.057316823800405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_108_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_108_FTIR.out deleted file mode 100644 index 170cc7229e33acb27cb98089f0e1a8b6b01f8bb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_108_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -108_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1227028648058572 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_118_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_118_FTIR.out deleted file mode 100644 index b952d3a7559e3b3d15f898a20f1e27e728568fe8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_118_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -118_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1008179505666098 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_14_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_14_FTIR.out deleted file mode 100644 index 650208803331d04618db7cf08d2931ae47a3ed89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_14_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -14_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2741800546646118 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_18_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_18_FTIR.out deleted file mode 100644 index 98abffa9576be081fcc2f1f4b090194198b8404f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_18_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -18_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9935057361920675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_1_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_1_FTIR.out deleted file mode 100644 index 3c7c98df74217bc5a6e5bcb967b5b05f5fdbf35f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_1_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -1_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9217991352081298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_20_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_20_FTIR.out deleted file mode 100644 index aa372f8b9a4f4bd9ff06bbed59eea6bb1e570168..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_20_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -20_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6027719815572102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_22_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_22_FTIR.out deleted file mode 100644 index b65990982988bd4b05b0f48e417b63176ce90b67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_22_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -22_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9324483434359232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_271_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_271_FTIR.out deleted file mode 100644 index ad076ef3a2649dc1311240805817ae19ffee5c69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_271_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -271_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7446120659510295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_273_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_273_FTIR.out deleted file mode 100644 index af039a65bc81aa9f5f40a9387e8c1f8227b07960..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_273_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -273_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7301663279533386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_279_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_279_FTIR.out deleted file mode 100644 index fac9db29c52754dc69ea32d2fceb16b836ef8d84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_279_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -279_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5830862840016683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_28_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_28_FTIR.out deleted file mode 100644 index 90e3aa8b6ca18f575a7924a647b1151129a57ac9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_28_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -28_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5160263856252034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_2_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_2_FTIR.out deleted file mode 100644 index 52c25a272809b22a23b38df13f9162f3b236607d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_2_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -2_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7660380959510803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_30_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_30_FTIR.out deleted file mode 100644 index 5423223dc3442c08273f317f6cda2bba9a9b8343..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_30_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -30_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9447914759318035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_31_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_31_FTIR.out deleted file mode 100644 index ae41bd54fea2deea96f617000f9cc6779b5b4d43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_31_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -31_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1323767224947612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_324_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_324_FTIR.out deleted file mode 100644 index fc1e0ada33f8b43aba401f4f3b3781874b3b32db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_324_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -324_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.600322147210439 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_325_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_325_FTIR.out deleted file mode 100644 index 148169c8cd1d7d097033950f915d3b8e3af980a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_325_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -325_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -3.014815938472748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_326_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_326_FTIR.out deleted file mode 100644 index 0fa1f53d7d7e2b8acf695bbd211498098eaa5937..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_326_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -326_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.4478389819463094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_32_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_32_FTIR.out deleted file mode 100644 index eb6d396041c538b8e9810362e1f3c872a0d25b99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_32_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -32_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7514410138130188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_330_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_330_FTIR.out deleted file mode 100644 index bcabfee41b6cac6c18018d515f1fb2a9a9e59a60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_330_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -330_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5915383497873942 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_331_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_331_FTIR.out deleted file mode 100644 index 2322da46fc2500bd76eef41e2a07b98f6dcd4f9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_331_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -331_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -3.6098795175552367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_332_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_332_FTIR.out deleted file mode 100644 index 729c81102775293df1c2bdeceff53f3451be5819..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_332_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -332_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.509825070699056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_335_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_335_FTIR.out deleted file mode 100644 index 361648624263b6aadfe0935b78f43f90f4030e3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_335_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -335_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2313073039054871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_336_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_336_FTIR.out deleted file mode 100644 index f12847b10c0081adef20e7e0033d7a7a9ca2b1b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_336_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -336_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8157068133354187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_337_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_337_FTIR.out deleted file mode 100644 index be402fab5c4e9e23d099c603f9a00606c0f649f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_337_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -337_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8339186191558838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_339_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_339_FTIR.out deleted file mode 100644 index e71e223d398bef3bd9faa224cba7baed9d926c47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_339_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -339_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4321723222732543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_340_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_340_FTIR.out deleted file mode 100644 index fac587aa1f42060cf5a830adf81dac3dd512192d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_340_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -340_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7678798397382101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_342_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_342_FTIR.out deleted file mode 100644 index f5da40646331d5fca010ba8dc833106edbdae540..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_342_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -342_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9540404995282491 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_343_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_343_FTIR.out deleted file mode 100644 index f9832ee36cde3c789655ca3d5ae70b38ac41eb4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_343_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -343_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7135881145795187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_347_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_347_FTIR.out deleted file mode 100644 index 94ff1b1a1b79d028e906b68890848d5d8d050ade..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_347_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -347_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8743119637171427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_352_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_352_FTIR.out deleted file mode 100644 index 17ead0dee5ea6528be9e3902bd6072506cd968f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_352_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -352_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6706999739011128 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_354_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_354_FTIR.out deleted file mode 100644 index b4de72e6f77d5bc80c8b75ec47bfbc1ea1e26a44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_354_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -354_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.8449437896410625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_356_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_356_FTIR.out deleted file mode 100644 index ebf970bb95db03f27d817b60a5f27a4e63bb9952..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_356_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -356_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7350699027379354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_357_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_357_FTIR.out deleted file mode 100644 index 7d68adb54bc2b3caf85e116b3e3480e6a2d6b60a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_357_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -357_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7856717705726624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_35_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_35_FTIR.out deleted file mode 100644 index 2cc1d57a664b59e9136c2185cd4421bbc7a76e2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_35_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -35_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5082554221153259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_360_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_360_FTIR.out deleted file mode 100644 index c6eb8c1d4bc37b24ed864063422579f0302e0a62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_360_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -360_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.678785999615987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_362_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_362_FTIR.out deleted file mode 100644 index 8a8cab3948ffeddbe8542e2e0056636f2fed8a25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_362_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -362_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7208228826522827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_363_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_363_FTIR.out deleted file mode 100644 index fd8a53756f33c923142de86ab28f6c2ca87364dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_363_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -363_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7768341898918152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_368_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_368_FTIR.out deleted file mode 100644 index 26ecc4999a0384b19c398518085aa811ee8bbd1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_368_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -368_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7203761259714763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_369_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_369_FTIR.out deleted file mode 100644 index 9b864ca7df3a52714f99ccfdf01fd7e5388b3870..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_369_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -369_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7700522581736247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_370_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_370_FTIR.out deleted file mode 100644 index 9b43eaf425aa8dcd46e16c4948d64969267f1257..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_370_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -370_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7345657070477803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_372_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_372_FTIR.out deleted file mode 100644 index c8dc5e72c5d0c7a00dd9df4276bf986a266de0f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_372_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -372_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5955533901850383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_373_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_373_FTIR.out deleted file mode 100644 index b5a402352450146d01fcbb66711065b8d50424fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_373_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -373_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6116304119427999 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_374_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_374_FTIR.out deleted file mode 100644 index 0610795bdd8839be5ce230a5b6c990951026fe34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_374_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -374_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6504100322723388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_375_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_375_FTIR.out deleted file mode 100644 index 4ede1d7fc312ac97974f3dd3feba254f5359bfa3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_375_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -375_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7344135721524556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_3_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_3_FTIR.out deleted file mode 100644 index 8e80a6de84d4c3a4295395f006cd2fda9bc7526e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_3_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -3_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9960999687512716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_40_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_40_FTIR.out deleted file mode 100644 index 4c0497e7fe816c0a7cdd3fcdb12db5c59dcd7c44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_40_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -40_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.8900901714960736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_42_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_42_FTIR.out deleted file mode 100644 index 5c6251cbcff829247bf4d0a20a4e9c4aa22efb38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_42_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -42_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.44447651704152424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_43_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_43_FTIR.out deleted file mode 100644 index 9fa33661b56ab2a3e660838e16edf37eddf201af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_43_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -43_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2458715637524922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_46_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_46_FTIR.out deleted file mode 100644 index 1c4d3d072c38a3ed2744660ec02a355ff9076465..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_46_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -46_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.0308411200841268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_4_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_4_FTIR.out deleted file mode 100644 index 211cc99eb7a7dbcd99d96a12e740a37ee3a0292a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_4_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -4_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.996934692064921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_534_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_534_FTIR.out deleted file mode 100644 index 8e2dbf603e06ffb3a72cc532b08399a63f8add3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_534_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -534_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8252196947733561 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_540_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_540_FTIR.out deleted file mode 100644 index 4ae9d5dbae74ff5e5d4229591a44c0ec401ad6ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_540_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -540_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5572916070620219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_5_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_5_FTIR.out deleted file mode 100644 index 1417c764f447a8f791e9c95ea1c6b63d8275216b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_5_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -5_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9298707683881123 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_61_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_61_FTIR.out deleted file mode 100644 index b61210bf4301acbcb0351ad0ea40edf593802c91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_61_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -61_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2327185908953349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_62_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_62_FTIR.out deleted file mode 100644 index e15b1834b3559fa26dacedd7b303532f5a6b3409..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_62_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -62_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.951171092192332 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_64_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_64_FTIR.out deleted file mode 100644 index 2f97154fd90e62437a18af510f6fe8606e16b02c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_64_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -64_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9177037954330445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_68_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_68_FTIR.out deleted file mode 100644 index 23d936adc853623a1ba8890e63cde9b977833253..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_68_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -68_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8637305498123169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_6_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_6_FTIR.out deleted file mode 100644 index 7e92540e43e0700b8e3db7d81de7fa55fb2efe0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_6_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -6_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7372823715209961 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/S3/0_80_FTIR.out b/run/stage_logs/NAPMD_CO/S3/0_80_FTIR.out deleted file mode 100644 index b0b149e822c7f4e607d99a6430fb353e268348e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/S3/0_80_FTIR.out +++ /dev/null @@ -1,23 +0,0 @@ -80_FTIR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0590289235115051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_105_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_105_FTIR_D_GLOBAL.out deleted file mode 100644 index 3eb82803c0f92997f3fbabbdd09bbbfd98f768b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_105_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7237156589825948 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_105_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_105_FTIR_H_GLOBAL.out deleted file mode 100644 index 5dd79e696f9236c2dbf5361355d807b412e232d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_105_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2507028857866922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_105_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_105_FTIR_M_GLOBAL.out deleted file mode 100644 index 872bfe7531e7da99672e91af34eefcdf097bdacb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_105_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0263441880544026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_108_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_108_FTIR_D_GLOBAL.out deleted file mode 100644 index b454c086d8271208547094f2ceeaa2ac90cbb08b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_108_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9389721035957337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_108_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_108_FTIR_H_GLOBAL.out deleted file mode 100644 index 0d979a8304670c3e849b75ceb4d1d413eab8ff60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_108_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5265695810317994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_108_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_108_FTIR_M_GLOBAL.out deleted file mode 100644 index 6462c49d583079f7f63dcf583adc99bb5ad4e31b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_108_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2504558881123862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_118_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_118_FTIR_D_GLOBAL.out deleted file mode 100644 index 21513d3572ae659ee47ca332c7969cdf49c0382f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_118_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2734612822532654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_118_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_118_FTIR_H_GLOBAL.out deleted file mode 100644 index 03ba3dcd3219ee074d40572fb849e29b9e49faa4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_118_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5553502400716146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_118_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_118_FTIR_M_GLOBAL.out deleted file mode 100644 index ff9a23ff9995406908a258ce5f2561196bee1914..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_118_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7654085834821065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_14_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_14_FTIR_D_GLOBAL.out deleted file mode 100644 index f1ad45f6cf2dc8c786e6106e551f955411f220ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_14_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4164991855621338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_14_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_14_FTIR_H_GLOBAL.out deleted file mode 100644 index 59e115f2f0532954787f8363368072497588cd14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_14_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7127633333206176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_14_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_14_FTIR_M_GLOBAL.out deleted file mode 100644 index 5474a16c4d3dd0d5dfe456d9ccf3f303000e909a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_14_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8363343318303427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_18_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_18_FTIR_D_GLOBAL.out deleted file mode 100644 index 8605ba5531587d2a2b20b0c6713513c609a72e5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_18_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9211896220842998 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_18_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_18_FTIR_H_GLOBAL.out deleted file mode 100644 index cd9eabb053e5c6b75efe071c19d0a24a0ba2c7ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_18_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9248615582784017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_18_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_18_FTIR_M_GLOBAL.out deleted file mode 100644 index a885fd42355bde3bfa7dd5bb70e0fc7642850a52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_18_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5983099857966105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_1_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_1_FTIR_D_GLOBAL.out deleted file mode 100644 index 3a1cb854540c99c92582458aadefc708bc6a66a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_1_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.36923256317774455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_1_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_1_FTIR_H_GLOBAL.out deleted file mode 100644 index 7006412c32b7b7f58dc70de869fdc78b47e59502..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_1_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8570867498715719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_1_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_1_FTIR_M_GLOBAL.out deleted file mode 100644 index 3352c28a233e9a94ed951edaf47ba638b2f437fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_1_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3994958758354187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_20_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_20_FTIR_D_GLOBAL.out deleted file mode 100644 index b2dd37348f1f203bb27965c07553c41ea5d9d419..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_20_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9519838213920593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_20_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_20_FTIR_H_GLOBAL.out deleted file mode 100644 index 18c7173d764b76e54a8f1f6a90a4ee3f877a80aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_20_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9450037201245626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_20_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_20_FTIR_M_GLOBAL.out deleted file mode 100644 index 1925684c4454d5de8f42b1c01bde28ca33e1fabd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_20_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8825563112894694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_22_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_22_FTIR_D_GLOBAL.out deleted file mode 100644 index 71ce27b0eb27c73c9a34adcbbfbc59b6f64f33cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_22_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3603555520375568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_22_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_22_FTIR_H_GLOBAL.out deleted file mode 100644 index a45c26acb81f7515ff78397b11e188bc72b4f4d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_22_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.560498615105947 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_22_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_22_FTIR_M_GLOBAL.out deleted file mode 100644 index d7e58e57ab2bc7767dd206f9735088a54a9dc341..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_22_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6539072871208191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_271_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_271_FTIR_D_GLOBAL.out deleted file mode 100644 index 4975fe8d08d904fc5a40b56057bd16ec008fc9e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_271_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12289827664693197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_271_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_271_FTIR_H_GLOBAL.out deleted file mode 100644 index 6b06e5f10e4b263ea0b629ab6c2f482a898f8514..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_271_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4409539063771566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_271_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_271_FTIR_M_GLOBAL.out deleted file mode 100644 index a6faaa6a669e3292ad6c1e6949a4683bbda6481a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_271_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2137108047803243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_273_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_273_FTIR_D_GLOBAL.out deleted file mode 100644 index f8935ade238e9ad21ece98dfa67b8beddedbe643..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_273_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -273_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04106434186299642 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_273_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_273_FTIR_H_GLOBAL.out deleted file mode 100644 index 5febbd8f16cfa0832b7e845c184bb3eb5b8fb496..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_273_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -273_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4526108423868815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_273_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_273_FTIR_M_GLOBAL.out deleted file mode 100644 index 630dd62f230588bd450447fab89624482e6f5ad1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_273_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -273_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10048260688781738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_279_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_279_FTIR_D_GLOBAL.out deleted file mode 100644 index 08cdeb8a275b85ed73d348ec41522cdf7b1ce39c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_279_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.27138051589330037 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_279_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_279_FTIR_H_GLOBAL.out deleted file mode 100644 index 43c96e6c7e6b6f219fbda69d74f75c17c2388bf6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_279_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7727020343144735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_279_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_279_FTIR_M_GLOBAL.out deleted file mode 100644 index 54f773ef91005a17f45d53042f80932875f46b7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_279_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2760899066925049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_28_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_28_FTIR_D_GLOBAL.out deleted file mode 100644 index fed3369bf2c9d43836c703bc1bdd99644e409e8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_28_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06859926780064901 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_28_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_28_FTIR_H_GLOBAL.out deleted file mode 100644 index ade889d74b65c7255b2c5a36b04032d8215c8cd7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_28_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3322171171506246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_28_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_28_FTIR_M_GLOBAL.out deleted file mode 100644 index 6f28b743864cc11e4c235ef9a5d160238645799c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_28_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.14975217978159586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_2_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_2_FTIR_D_GLOBAL.out deleted file mode 100644 index 92dc74d50df606772f88b9ba14b766d62250804e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_2_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5135075012842815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_2_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_2_FTIR_H_GLOBAL.out deleted file mode 100644 index 6f491ac744b3a0e09a6a7e52520a489dc257892a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_2_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7390759627024333 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_2_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_2_FTIR_M_GLOBAL.out deleted file mode 100644 index b202607759af2d7d4b8f2fa1c33ef17f82b8eca9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_2_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.307017449537913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_30_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_30_FTIR_D_GLOBAL.out deleted file mode 100644 index 5b2c1478b7311aa108e96a22dc6d73c44ebd4b8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_30_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.205662270387014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_30_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_30_FTIR_H_GLOBAL.out deleted file mode 100644 index 0d91eae03b1aed902a32f69cd7ce1e524ea10caa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_30_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.436336115996043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_30_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_30_FTIR_M_GLOBAL.out deleted file mode 100644 index fa796629adb5c40207558b4e2c77dce6e47af83f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_30_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.199124558766683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_31_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_31_FTIR_D_GLOBAL.out deleted file mode 100644 index 21ccf9667846cd9dffa9999808cb83a2cbc0b37a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_31_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8756690382957458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_31_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_31_FTIR_H_GLOBAL.out deleted file mode 100644 index 2b907fe374224a8d31fc0793f894a7fcb2f4391f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_31_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3368352850278218 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_31_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_31_FTIR_M_GLOBAL.out deleted file mode 100644 index 7008487f1910110061634aa6e005f02fcd4b630f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_31_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9986828605333964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_324_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_324_FTIR_D_GLOBAL.out deleted file mode 100644 index dca6f5f5016035f53648832e1b11d7158c444863..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_324_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8022687991460165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_324_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_324_FTIR_H_GLOBAL.out deleted file mode 100644 index 52c66f76063e884b4aca3924442830c61eca2843..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_324_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7507070660591126 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_324_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_324_FTIR_M_GLOBAL.out deleted file mode 100644 index e3c8c378c0ca257538f49d9d6053bd9bc4f9c59e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_324_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3743327498435973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_325_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_325_FTIR_D_GLOBAL.out deleted file mode 100644 index 4567fc4a632e042c05b960ac9d170f452e140c7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_325_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.458323582013448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_325_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_325_FTIR_H_GLOBAL.out deleted file mode 100644 index 99d13fc88f9eb8a0b4cce44a05bec1918f2a4768..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_325_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.682726740837097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_325_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_325_FTIR_M_GLOBAL.out deleted file mode 100644 index 5e7c0cc8e3d753d25517aa4546db411ebba1f90f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_325_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4513940175374347 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_326_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_326_FTIR_D_GLOBAL.out deleted file mode 100644 index 40ec175eec02d72b09952a1392d336a5bda9518d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_326_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09337439537048339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_326_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_326_FTIR_H_GLOBAL.out deleted file mode 100644 index 7d7afa56aac9bcd38977a089919b8ff0213e9228..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_326_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3613866925239563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_326_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_326_FTIR_M_GLOBAL.out deleted file mode 100644 index 22d37a1e87a753c9f5b8f8fa2f4d53e9ae78650c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_326_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2660618185997009 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_32_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_32_FTIR_D_GLOBAL.out deleted file mode 100644 index ca77fc530945599a72b83ce406eead178008a72c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_32_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12985278367996217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_32_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_32_FTIR_H_GLOBAL.out deleted file mode 100644 index 8ac8f4262629521344edb241d105304f6a51a288..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_32_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4178271492322286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_32_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_32_FTIR_M_GLOBAL.out deleted file mode 100644 index 855a252d16b95533b13d5ce09f18f939376d93d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_32_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21124314069747924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_330_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_330_FTIR_D_GLOBAL.out deleted file mode 100644 index 7f9b1d941714fc358c93ac4d997463a54df9bdca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_330_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09909860293070476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_330_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_330_FTIR_H_GLOBAL.out deleted file mode 100644 index ead1417870fa55ff600803ba4904dc970131446f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_330_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.34773879051208495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_330_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_330_FTIR_M_GLOBAL.out deleted file mode 100644 index 54df575270fbd78d295be286dfa0dc34e889a908..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_330_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05096777677536011 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_331_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_331_FTIR_D_GLOBAL.out deleted file mode 100644 index 4b05ed6d924a2589ccbd8a86e2f1a57de0373210..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_331_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4294267853101092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_331_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_331_FTIR_H_GLOBAL.out deleted file mode 100644 index 4cfa3c85ab59f1242818ea993280e86932592fe2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_331_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.717330288887024 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_331_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_331_FTIR_M_GLOBAL.out deleted file mode 100644 index 8221ab7929ce57424dacee102dc6e2d6c0d61676..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_331_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.2933547457059222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_332_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_332_FTIR_D_GLOBAL.out deleted file mode 100644 index 99c5b6ee1f76b4682f5e93c73176237dc37ec0cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_332_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8551816821098328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_332_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_332_FTIR_H_GLOBAL.out deleted file mode 100644 index 0a5c5abab5b5d893fadbbe595c5d29c648c3d422..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_332_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2390373150507608 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_332_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_332_FTIR_M_GLOBAL.out deleted file mode 100644 index 7930d0ffe0a2adfdcda9a20c46239cbac802cad9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_332_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9425251007080078 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_335_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_335_FTIR_D_GLOBAL.out deleted file mode 100644 index 78a205daa956a4900c42cb8b15f125956eb49f23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_335_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4771552602450053 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_335_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_335_FTIR_H_GLOBAL.out deleted file mode 100644 index 2f1ca4b20ce7e19096bfc48c236381a791207c23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_335_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9783727804819742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_335_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_335_FTIR_M_GLOBAL.out deleted file mode 100644 index 34ef1437c168053e30d5a63654def7f2d9ffe689..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_335_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1395740071932474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_336_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_336_FTIR_D_GLOBAL.out deleted file mode 100644 index 163df52aa20e78495fca108564377bc4a34cd301..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_336_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6323576807975769 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_336_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_336_FTIR_H_GLOBAL.out deleted file mode 100644 index fde3a16659761360ea8b63d7504be2617dc69f14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_336_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.87600785891215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_336_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_336_FTIR_M_GLOBAL.out deleted file mode 100644 index 7e607f119dc3ac07373db16d865dadfe24acc2a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_336_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.32521063884099327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_337_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_337_FTIR_D_GLOBAL.out deleted file mode 100644 index be8306954d3e919c7f8d4df31773c9d433b1efe9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_337_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.419259246190389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_337_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_337_FTIR_H_GLOBAL.out deleted file mode 100644 index a2682ef6f15e0aa3635b2f2b8a4b78337c72a4e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_337_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6921675562858581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_337_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_337_FTIR_M_GLOBAL.out deleted file mode 100644 index d778f8ed0fa1836923e9451b52c707fc6679e91d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_337_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4048239827156067 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_339_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_339_FTIR_D_GLOBAL.out deleted file mode 100644 index 9d3f579b8554a9c3b61d5029384683b2dfefcd2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_339_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.236581250031789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_339_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_339_FTIR_H_GLOBAL.out deleted file mode 100644 index b294d2aa9446a1869e7cf83597324423f6f62d83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_339_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.583622376124064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_339_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_339_FTIR_M_GLOBAL.out deleted file mode 100644 index 90c3d5aa7ff1dc237d960296ef9af7cc97f39dde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_339_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.352043549219767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_340_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_340_FTIR_D_GLOBAL.out deleted file mode 100644 index d9a285c3e69a9f3dc33732920e990e3698e068c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_340_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6300796667734782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_340_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_340_FTIR_H_GLOBAL.out deleted file mode 100644 index af84685b107f138cec8525c6648106e16896da21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_340_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8853881041208903 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_340_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_340_FTIR_M_GLOBAL.out deleted file mode 100644 index 83be50bf40f0d830f7964b3a6e51ab8f362a3ff8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_340_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6367533961931865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_342_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_342_FTIR_D_GLOBAL.out deleted file mode 100644 index 98d356b57cd482626c995bf2e89276bd0d0091aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_342_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.038756501674652 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_342_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_342_FTIR_H_GLOBAL.out deleted file mode 100644 index 6e2cd98a1b07f2aa961286ff6cda4631d786608a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_342_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3252718567848205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_342_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_342_FTIR_M_GLOBAL.out deleted file mode 100644 index 8c94c6a90095632fe0c73685f1c623c1ff55a111..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_342_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6997732400894165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_343_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_343_FTIR_D_GLOBAL.out deleted file mode 100644 index ebb9f37789b71cba04af048173cb059c339a738f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_343_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05780628522237142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_343_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_343_FTIR_H_GLOBAL.out deleted file mode 100644 index a09d4da9f88b4610ec5b86b51c926a90c78177e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_343_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.19403565327326458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_343_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_343_FTIR_M_GLOBAL.out deleted file mode 100644 index 8f9f40b900fb1d207e149d3a21f86b4c57291ab0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_343_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.041429297129313154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_347_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_347_FTIR_D_GLOBAL.out deleted file mode 100644 index 04c26b0d95244b9d72706b28fe07bd03f59ff270..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_347_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.47555767695109047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_347_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_347_FTIR_H_GLOBAL.out deleted file mode 100644 index 8eb966026b7437e73cf4398f5c1179f21354064a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_347_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6949678977330526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_347_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_347_FTIR_M_GLOBAL.out deleted file mode 100644 index a9ae32fa84dfa037edd3df821352aef88f753f4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_347_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7253747304280599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_352_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_352_FTIR_D_GLOBAL.out deleted file mode 100644 index eae94bbb78520293eb165ca15604817bb02a77d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_352_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2885971665382385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_352_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_352_FTIR_H_GLOBAL.out deleted file mode 100644 index 232e6047c076f2654ff8050ae2a94c1d14368666..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_352_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.4230481584866843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_352_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_352_FTIR_M_GLOBAL.out deleted file mode 100644 index f9773ad04a17f2a45e8a30897aafc2841ab53301..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_352_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.226580305894216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_354_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_354_FTIR_D_GLOBAL.out deleted file mode 100644 index f8bd4e3fa356beb2a40a16e7ec21d2a52909c2ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_354_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.264469035466512 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_354_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_354_FTIR_H_GLOBAL.out deleted file mode 100644 index 34b3ae5ce0cdc61dfb7d9952cc55a491902387c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_354_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.4149182120958965 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_354_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_354_FTIR_M_GLOBAL.out deleted file mode 100644 index c33c2591a86ea20d747c5be398c64557d7021824..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_354_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.0353822747866315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_356_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_356_FTIR_D_GLOBAL.out deleted file mode 100644 index 92382fa9da2c9ea4db80b54dde7f8a9b94ef4169..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_356_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03145347833633423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_356_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_356_FTIR_H_GLOBAL.out deleted file mode 100644 index 3370f57f83e0acf87174f7c7613d5d64e772bb13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_356_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.32612903118133546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_356_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_356_FTIR_M_GLOBAL.out deleted file mode 100644 index 1bf3bd5e0d6873e610dd010b0787826869aa6e52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_356_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.061951033274332684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_357_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_357_FTIR_D_GLOBAL.out deleted file mode 100644 index c94985d1e85a1682db3e772b925e393010e781a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_357_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3565109570821126 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_357_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_357_FTIR_H_GLOBAL.out deleted file mode 100644 index 9f20950493e2a8986115705233cf15d5a40a3db8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_357_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.532481582959493 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_357_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_357_FTIR_M_GLOBAL.out deleted file mode 100644 index e1f6d12a9362d28c51dca57f8882669087afdb9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_357_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2998331308364868 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_35_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_35_FTIR_D_GLOBAL.out deleted file mode 100644 index 14727b6c511cfeb458911beb046e9e47046f5ec2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_35_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07949803670247396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_35_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_35_FTIR_H_GLOBAL.out deleted file mode 100644 index 0695c6c45d47061f60f05ce3ef360dc81bf54dea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_35_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2581411878267924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_35_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_35_FTIR_M_GLOBAL.out deleted file mode 100644 index ca77f4034e37277172df60a0cc84236f4ed84285..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_35_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.048146220048268636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_360_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_360_FTIR_D_GLOBAL.out deleted file mode 100644 index bc1d21796a9908e0a89a8b42b2afcc8cfd5a5b8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_360_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6903403679529827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_360_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_360_FTIR_H_GLOBAL.out deleted file mode 100644 index 3714e8ba8c5b77edef31515fa1d47e238e2a21ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_360_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.425562326113383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_360_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_360_FTIR_M_GLOBAL.out deleted file mode 100644 index 822d0ccd447f24ad5f95da308b06fcff9b696927..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_360_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9782543142636617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_362_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_362_FTIR_D_GLOBAL.out deleted file mode 100644 index 3d607c08d578ab9ff5d424e38d3e55f01a371348..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_362_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -362_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11630929708480835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_362_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_362_FTIR_H_GLOBAL.out deleted file mode 100644 index 0eaefbfdb2d8be198f4cc2d9f5b6c0bc1e6bc0aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_362_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -362_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.28238143523534137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_362_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_362_FTIR_M_GLOBAL.out deleted file mode 100644 index df0a3ec95655bb726c796f06ccc1dc0af8d2a05e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_362_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -362_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03592120409011841 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_363_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_363_FTIR_D_GLOBAL.out deleted file mode 100644 index 9a926d87119faf098f46bdd6d3bb1cd3b30feb56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_363_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11628750165303549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_363_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_363_FTIR_H_GLOBAL.out deleted file mode 100644 index 97ddc02abb34e127627cc9b7b513f41589839139..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_363_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2872264583905538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_363_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_363_FTIR_M_GLOBAL.out deleted file mode 100644 index 3c973021ddaa9d5ca3e7ebd5453055411db94394..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_363_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05491421620051066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_368_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_368_FTIR_D_GLOBAL.out deleted file mode 100644 index 0f591d8f9190f7c8142afeb808e9f9aa843c7ef5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_368_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11571988264719645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_368_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_368_FTIR_H_GLOBAL.out deleted file mode 100644 index 5c450b87ecd03360f87ba2bcb44c68630d4b5821..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_368_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23410671949386597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_368_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_368_FTIR_M_GLOBAL.out deleted file mode 100644 index cbbc12f4eddf3d6a1d29c8c8f67086edf85cbc8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_368_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09073114395141602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_369_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_369_FTIR_D_GLOBAL.out deleted file mode 100644 index 5d80bcc915f42ad22dd51ed3b32b4dd7f1a786bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_369_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04083014329274495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_369_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_369_FTIR_H_GLOBAL.out deleted file mode 100644 index c58e985db9da85b0d96a4e471a6c4741fb5fb45e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_369_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22910046180089313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_369_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_369_FTIR_M_GLOBAL.out deleted file mode 100644 index 92e720aee95832d972ac263c878fae4446d1fb84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_369_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.020517897605895997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_370_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_370_FTIR_D_GLOBAL.out deleted file mode 100644 index 22443f6e4e7f2f619462025855a1a20f9a106210..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_370_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22900004784266154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_370_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_370_FTIR_H_GLOBAL.out deleted file mode 100644 index 7bd6625494297066c814b87c42fe3748605b9a4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_370_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4103856643040975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_370_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_370_FTIR_M_GLOBAL.out deleted file mode 100644 index b0f4a5e7a4301cf860fdb1fae839d3aa832c1920..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_370_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.19868839581807454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_372_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_372_FTIR_D_GLOBAL.out deleted file mode 100644 index 102d1080cffdd8c5932d08638040e01a143b16df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_372_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12366722027460735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_372_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_372_FTIR_H_GLOBAL.out deleted file mode 100644 index a336f7cf57498e05aec5064f18869171b2941f62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_372_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.33452115456263226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_372_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_372_FTIR_M_GLOBAL.out deleted file mode 100644 index 2c9c249d6c6159e9672bb35d313479429162d304..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_372_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17289422353108724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_373_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_373_FTIR_D_GLOBAL.out deleted file mode 100644 index d8f914ad4fa96afa5321e4757bf1d5be41507726..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_373_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12298643986384074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_373_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_373_FTIR_H_GLOBAL.out deleted file mode 100644 index 4de1c8c786815c7e6b3e128fb1263eea10729147..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_373_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.33355266650517784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_373_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_373_FTIR_M_GLOBAL.out deleted file mode 100644 index 92f0a49fd0910c6e70ba5c699178ca0fbe3e5cde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_373_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06041641235351562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_374_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_374_FTIR_D_GLOBAL.out deleted file mode 100644 index c6d14c81ed2ace77bb3527ff72ea98f0afe09c77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_374_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0386001984278361 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_374_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_374_FTIR_H_GLOBAL.out deleted file mode 100644 index 27789011cb1db05798c2768e8b22b852e0c52690..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_374_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3316706498463949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_374_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_374_FTIR_M_GLOBAL.out deleted file mode 100644 index 0000915b2f2e22e342bab4869613896f6ca028a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_374_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.035940694808959964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_375_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_375_FTIR_D_GLOBAL.out deleted file mode 100644 index 95eadbfa536f7b424cf5860f24ff7ce8e93009cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_375_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23061713377634685 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_375_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_375_FTIR_H_GLOBAL.out deleted file mode 100644 index a8ff46b5b05f0301555b401becd0cec37264b439..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_375_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4199947913487752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_375_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_375_FTIR_M_GLOBAL.out deleted file mode 100644 index 684e9d74d1c67c584b19898fa97b94afa103ed0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_375_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08419480721155802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_3_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_3_FTIR_D_GLOBAL.out deleted file mode 100644 index 536cfe928f478b54e2575c851df31cdfaecd8855..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_3_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1856472134590148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_3_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_3_FTIR_H_GLOBAL.out deleted file mode 100644 index c9e6b4123ed71829a918640c40822d6da2939105..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_3_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.563077708085378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_3_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_3_FTIR_M_GLOBAL.out deleted file mode 100644 index fb1e7a1849f6e3c1e7ea91cb7746072dec8a0617..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_3_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1711836854616802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_40_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_40_FTIR_D_GLOBAL.out deleted file mode 100644 index 3ef8db7fa4fe660bcad079031204e76536ea866f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_40_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2463923573493956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_40_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_40_FTIR_H_GLOBAL.out deleted file mode 100644 index 4c28fcac875707f55edee7c7316b41e297b4b465..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_40_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.391114318370819 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_40_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_40_FTIR_M_GLOBAL.out deleted file mode 100644 index a8ef256d1d4def2a39cb83921690e9ed12c6a2eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_40_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.110170606772105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_42_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_42_FTIR_D_GLOBAL.out deleted file mode 100644 index 2284b19e9d1f2b801260e18fad8cbd0f63d69c4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_42_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1954551378885905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_42_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_42_FTIR_H_GLOBAL.out deleted file mode 100644 index 2be9abfab5dcfeeeda7d268991e63094c42acf8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_42_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.41766719818115233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_42_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_42_FTIR_M_GLOBAL.out deleted file mode 100644 index 312fad862bc6dc4d5bd658e9c14c2c40ca9a395a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_42_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03676151037216187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_43_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_43_FTIR_D_GLOBAL.out deleted file mode 100644 index 06d19c9451ab95cef6c5ce7fd4b9382147e6a45c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_43_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7802628477414448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_43_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_43_FTIR_H_GLOBAL.out deleted file mode 100644 index eed94e5e249c9e916f470590f375e050c2600128..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_43_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.602418335278829 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_43_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_43_FTIR_M_GLOBAL.out deleted file mode 100644 index 68d3e72af105f413811620233f442b5f89d4780d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_43_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7881605505943299 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_46_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_46_FTIR_D_GLOBAL.out deleted file mode 100644 index 484844e53ffeaf7e1b3fc4040f2e1dd9b20dac0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_46_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.1817747712135316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_46_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_46_FTIR_H_GLOBAL.out deleted file mode 100644 index afefc4bc6a8106021e10eec8c97bdfb7a9029925..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_46_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5617541869481406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_46_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_46_FTIR_M_GLOBAL.out deleted file mode 100644 index 891aa6e28c19f2785a75cf4298dcf2a454d79393..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_46_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.225032802422841 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_4_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_4_FTIR_D_GLOBAL.out deleted file mode 100644 index 02d2db9cdd284dfab048cf960f1cc906df59134a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_4_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7006216923395793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_4_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_4_FTIR_H_GLOBAL.out deleted file mode 100644 index 02632b14e47a216090e567133c5d8b465194dce1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_4_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0961965163548788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_4_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_4_FTIR_M_GLOBAL.out deleted file mode 100644 index 084a3cafc640dea258775f2f76efe5fcdc9cae69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_4_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9641072948773702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_534_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_534_FTIR_D_GLOBAL.out deleted file mode 100644 index 67091b88ba796cc37ad26385648e653f9e5995aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_534_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08354331652323405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_534_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_534_FTIR_H_GLOBAL.out deleted file mode 100644 index 647c6220eb1a9c2ed1dbff96c27cb56e1623e0b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_534_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.401109250386556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_534_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_534_FTIR_M_GLOBAL.out deleted file mode 100644 index 4491dfb15c4648b837a41e4674d6f9fb4c527706..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_534_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.039818330605824785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_540_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_540_FTIR_D_GLOBAL.out deleted file mode 100644 index c74cec71005d05f3caf7eee0da8f4862f9dd9245..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_540_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.017639672756195067 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_540_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_540_FTIR_H_GLOBAL.out deleted file mode 100644 index 67f3f3a1bfd15cadcfb868106362783c43d69984..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_540_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18589332103729247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_540_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_540_FTIR_M_GLOBAL.out deleted file mode 100644 index 91ab2b52a67cbaa1bf10524d61ca1d5c60a3476c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_540_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.01120219628016154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_5_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_5_FTIR_D_GLOBAL.out deleted file mode 100644 index b99e07a2889f5add3b895720c3f3af8f732fabcd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_5_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.965214745203654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_5_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_5_FTIR_H_GLOBAL.out deleted file mode 100644 index aa5a42a8caae22cabd656132407b7547216feaeb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_5_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0386637409528097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_5_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_5_FTIR_M_GLOBAL.out deleted file mode 100644 index ae624e399762a6a62b0bb570e332d2478f846fa8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_5_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.910199518998464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_61_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_61_FTIR_D_GLOBAL.out deleted file mode 100644 index d46ab5a76f2375fd1dc3c934f9baed01cd8ddc5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_61_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.204483977953593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_61_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_61_FTIR_H_GLOBAL.out deleted file mode 100644 index adb18b00ec1cb904aab052e0bd78e4dad80068af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_61_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5201125582059225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_61_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_61_FTIR_M_GLOBAL.out deleted file mode 100644 index 86df3356c9b167da90a49079e97b87dfbe1e8d27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_61_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.031627106666565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_62_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_62_FTIR_D_GLOBAL.out deleted file mode 100644 index 75aef26f441fa94ae4f7b798993d33d663f30354..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_62_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2637460350990297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_62_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_62_FTIR_H_GLOBAL.out deleted file mode 100644 index 6386c9abf43a1e4d39202990208e31d5b94c26bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_62_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.3823586384455364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_62_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_62_FTIR_M_GLOBAL.out deleted file mode 100644 index 74447c5e7606f84505a044a24b6d4a3e2d09fb75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_62_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.0715354243914286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_64_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_64_FTIR_D_GLOBAL.out deleted file mode 100644 index 6b7069ff4e782201adf787b3c298540b2d1e82d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_64_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8830452640851338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_64_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_64_FTIR_H_GLOBAL.out deleted file mode 100644 index efd74d6712a4d3628ab8b5e5d8873164a154a587..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_64_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1690358559290568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_64_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_64_FTIR_M_GLOBAL.out deleted file mode 100644 index 0e14e3d88016637b54d3bcd7b15d044581f72c42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_64_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5955728212992351 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_68_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_68_FTIR_D_GLOBAL.out deleted file mode 100644 index 4187e31e5741b069c374f90bb652b7f67417f5e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_68_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20756678978602092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_68_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_68_FTIR_H_GLOBAL.out deleted file mode 100644 index b11a454ad57f5473fc98f852baf3d466b844feba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_68_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4067901094754537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_68_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_68_FTIR_M_GLOBAL.out deleted file mode 100644 index 9ff442a5258154164248ce493aec6ab3477dd73f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_68_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21121162176132202 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_6_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_6_FTIR_D_GLOBAL.out deleted file mode 100644 index b3a845b5d9835e4872ed0e5cf6109a36b72eeb5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_6_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17151655356089274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_6_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_6_FTIR_H_GLOBAL.out deleted file mode 100644 index a4ecc319c5aee92b4c20b2635a044d41c51d4081..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_6_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.37503742376963295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_6_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_6_FTIR_M_GLOBAL.out deleted file mode 100644 index 24bc54b8a1d3c453477ef3dea70eae08807da1a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_6_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07945192257563273 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_80_FTIR_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_80_FTIR_D_GLOBAL.out deleted file mode 100644 index 3aee6f4efd81240539618580301a6b3eda4b0e59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_80_FTIR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1288175503412883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_80_FTIR_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_80_FTIR_H_GLOBAL.out deleted file mode 100644 index e4039e772af7ac46863bb19d56620b7f6b3fda7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_80_FTIR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5723089257876077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T1/0_80_FTIR_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T1/0_80_FTIR_M_GLOBAL.out deleted file mode 100644 index 3728371324de2155f7ed19541454eec78bf35e18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T1/0_80_FTIR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_FTIR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2896044651667278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197901_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197901_D_GLOBAL.out deleted file mode 100644 index 6fb4983814eba8ee5a7c23842dee37caeaa3976a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.051339685916900635 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197901_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197901_H_GLOBAL.out deleted file mode 100644 index 7df568553e105fa61faa7d6dd674288eccf3d8c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.05572179555892944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197901_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197901_M_GLOBAL.out deleted file mode 100644 index 5ea59167249b46190d8b1199bc6bc586fe98af72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.030189224084218345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197903_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197903_D_GLOBAL.out deleted file mode 100644 index 8f60eb9abded955abe8ae7ed4aaf07455a39cd7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.04947580496470134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197903_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197903_H_GLOBAL.out deleted file mode 100644 index 1255195fba5459ba88704a6b7cb26b2729288966..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.07020256121953329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197903_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197903_M_GLOBAL.out deleted file mode 100644 index 808722e724ee225e8ec8f1ba6f509a1b363c7a85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.06165163119633992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197904_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197904_D_GLOBAL.out deleted file mode 100644 index a9b149f1106ca17f02f1e55ddd6ec7ec1736cb97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.0609129269917806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197904_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197904_H_GLOBAL.out deleted file mode 100644 index 5590cfa387690c4b30c4d2cf8926fb7b22ca2e9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.0502239465713501 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197904_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197904_M_GLOBAL.out deleted file mode 100644 index 9a49da1e7f6e2dba1996f796f23e4ab0195efe7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.05064461628595988 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197905_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197905_D_GLOBAL.out deleted file mode 100644 index 7c390bd2677a80104a057bbd5c420371c848d1de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.031617379188537596 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197905_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197905_H_GLOBAL.out deleted file mode 100644 index 7087a6e062a0c464e4252b493a635cb9b14f97bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.05476615031560262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197905_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197905_M_GLOBAL.out deleted file mode 100644 index adc449621133031b87c34ebfdac22245b28fcaf7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.05053565899531046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197906_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197906_D_GLOBAL.out deleted file mode 100644 index 9f11a0780de3c9fa0c017936ec9cf37936a85260..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.030190893014272056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197906_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197906_H_GLOBAL.out deleted file mode 100644 index cb24a1eeab385a9a3c6fb1ce507038fe4d13fcc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.057344730695088705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197906_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197906_M_GLOBAL.out deleted file mode 100644 index 7570476eb1ee931590fc52624f56bb8746668db3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.04051398038864136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197907_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197907_D_GLOBAL.out deleted file mode 100644 index ba3d905a1420c2dfbec7ae1f6be0a393d8872463..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.05706831614176432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197907_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197907_H_GLOBAL.out deleted file mode 100644 index 71149a2a86817ffd5b176bc03e9983cce95467ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.06671148538589478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197907_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197907_M_GLOBAL.out deleted file mode 100644 index d3bcb39a52ab43d5ade8368bbf325b949a022f33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.02981343666712443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197908_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197908_D_GLOBAL.out deleted file mode 100644 index 20946a5181036d71479dd496c47c8e0a631b61e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.05592387119928996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197908_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197908_H_GLOBAL.out deleted file mode 100644 index fd6fe70d5dcb179b1559be9325e464bbf2e5dc38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.03059264421463013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197908_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197908_M_GLOBAL.out deleted file mode 100644 index e5c597cfe8fc93f69a29bf1344bd5b2a94f44fd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.048038633664449056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197909_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197909_D_GLOBAL.out deleted file mode 100644 index 1e45a25ebcf9f9691c288ae9db85961d0be73b62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.06489462455113729 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197909_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197909_H_GLOBAL.out deleted file mode 100644 index dc9e812e32228b7efee014afe531f0d5b6875856..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.05104622046152751 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197909_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197909_M_GLOBAL.out deleted file mode 100644 index fa144e3b31aa1e065f23d212ee374d39a5ed0057..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.06560584306716918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197910_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197910_D_GLOBAL.out deleted file mode 100644 index df1d371e7915fc4086464403f10f761d99c598d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.0548259695370992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197910_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197910_H_GLOBAL.out deleted file mode 100644 index ca3830f4e09c8ad132fcd3c34fe06e26208058a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.059715827306111656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197910_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197910_M_GLOBAL.out deleted file mode 100644 index 94836dfdedf4dcd4796da542b7d045260489cb1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.04257280826568603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197911_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197911_D_GLOBAL.out deleted file mode 100644 index 787b4827033f62cf9c30af2d1de796104e1ee9ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.052666123708089194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197911_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197911_H_GLOBAL.out deleted file mode 100644 index 9c624223baeac4697e1904eb7c3b8c9e6031ac29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.02703030506769816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197911_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197911_M_GLOBAL.out deleted file mode 100644 index b0ce20a78b8882410f092820fd563154806744c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.03554478883743286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197912_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197912_D_GLOBAL.out deleted file mode 100644 index 0430ef0ea08253a7c79f9ada2db10603b51e5688..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.056156738599141436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197912_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197912_H_GLOBAL.out deleted file mode 100644 index 291bc470d9b4e36a122e5e6e5b3bce527d69df4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.0664358377456665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_197912_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_197912_M_GLOBAL.out deleted file mode 100644 index 284df4930683ca3974262fa7a7435b4d1ac0aa3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_197912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.0531964103380839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198001_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198001_D_GLOBAL.out deleted file mode 100644 index c46b3f77b509926edac4fb1dd4f8e4c6187244bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.06780920426050822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198001_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198001_H_GLOBAL.out deleted file mode 100644 index 7d6a17f5854fef98dc480ccd6c2ed7e3bb3aa1e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.042506082852681475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198001_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198001_M_GLOBAL.out deleted file mode 100644 index 8ff44bb39deefdd024deee45cbc3c0bf19b57f6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.03456007242202759 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198002_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198002_D_GLOBAL.out deleted file mode 100644 index 1f4944f20f049786b0a091ed9dd253d352443ca8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.05282330513000488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198002_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198002_H_GLOBAL.out deleted file mode 100644 index 00c01df3bdb02263479b279d49ddeb62e09bdd8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.05352145433425903 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198002_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198002_M_GLOBAL.out deleted file mode 100644 index 338ad90e183ad8bc0f0fbff7a207bd50126854fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.03763994375864665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198003_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198003_D_GLOBAL.out deleted file mode 100644 index 2ae70724e3518502258482510756b1f8ff89c649..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.04972651799519857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198003_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198003_H_GLOBAL.out deleted file mode 100644 index ecaae520b395792170aea5d61ae9d489dc1b0a26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.040471307436625165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198003_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198003_M_GLOBAL.out deleted file mode 100644 index 965fedc20e3e2a8c80a2e8b860d7f5a34578a32f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.06044328212738037 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198004_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198004_D_GLOBAL.out deleted file mode 100644 index e67f754584a2549dbd5952c40b80b26344f2ec88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.03799617290496826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198004_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198004_H_GLOBAL.out deleted file mode 100644 index a507239129752c0a75e95d65be9d51a5cad9332b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.04232978820800781 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198004_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198004_M_GLOBAL.out deleted file mode 100644 index c7bcb1fd5fa9a8724bffa0f6a805db681aa70b41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.03671293656031291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198005_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198005_D_GLOBAL.out deleted file mode 100644 index e09a47dd75dec7ec21d9f31e5e1f37b72c9848f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.047564494609832766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198005_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198005_H_GLOBAL.out deleted file mode 100644 index 21d8d42cd93e7da99064b5aec7653c6fe2371dfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.06400957902272543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198005_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198005_M_GLOBAL.out deleted file mode 100644 index 9b179c4eb478c6f79ea34f5a221589b5ad8dc0b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.06789890130360922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198006_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198006_D_GLOBAL.out deleted file mode 100644 index b1622aa83ef96628b75cc1de55cd757096ed5c03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.02641372283299764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198006_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198006_H_GLOBAL.out deleted file mode 100644 index 013716aa4f03d7508dc484fa5da8fce83c80281f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.06538158257802328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198006_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198006_M_GLOBAL.out deleted file mode 100644 index f8351596153eea3e3dddcabdbc5b82d7b197ffb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.03629289865493775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198007_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198007_D_GLOBAL.out deleted file mode 100644 index 5e5c411068e852366b485bb26d71669b6af87d5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.05454574426015218 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198007_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198007_H_GLOBAL.out deleted file mode 100644 index 7ce0af24e517e2462ef6b7859c4822d002a5b840..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.03587714831034342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198007_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198007_M_GLOBAL.out deleted file mode 100644 index 908c7e50c3990e4d5ed2fb7b6e570daf4decbdd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.054495179653167726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198008_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198008_D_GLOBAL.out deleted file mode 100644 index 8362f439c5d77bcf803e7ce78267b73463a46db6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.044514842828114826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198008_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198008_H_GLOBAL.out deleted file mode 100644 index 2f11a2aa31e35bf53af183ac599876c2c588a111..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.028197344144185385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198008_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198008_M_GLOBAL.out deleted file mode 100644 index 5a000a6fde909f54fc24354aed0a0d8997c0f29e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.03252734740575155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198009_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198009_D_GLOBAL.out deleted file mode 100644 index ddc684d3378b50eef95e75102ffcd52fe7cdd2be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.04024193286895752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198009_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198009_H_GLOBAL.out deleted file mode 100644 index c55f29d98aa616149e9d52536f5dbde071ffd950..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.03867131471633911 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198009_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198009_M_GLOBAL.out deleted file mode 100644 index 18988f64c7e93d954ac45635b8d22291a18cdb27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.025412038962046305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198010_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198010_D_GLOBAL.out deleted file mode 100644 index 9bee50df2000c2e824f2525109cb2636aa44e67f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.03438605864842733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198010_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198010_H_GLOBAL.out deleted file mode 100644 index ec8b044723dd1501b79d56456cf9bfabda3f1a3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.05917973518371582 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198010_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198010_M_GLOBAL.out deleted file mode 100644 index 72286fa878ec71da8921c879d9401fe0d7fa35fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.06843632857004801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198012_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198012_D_GLOBAL.out deleted file mode 100644 index 2c621bda0fc6ae0346c54f19c7fc8fa2b3ea6e78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.06545364061991374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198012_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198012_H_GLOBAL.out deleted file mode 100644 index fe36f43a94aea2974f540ac6a4a5e6c0227aabf5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.06824516852696737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198012_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198012_M_GLOBAL.out deleted file mode 100644 index 8ee8acea4197ea0c9abe95c98deb7fd1438be296..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.0522849440574646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198101_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198101_D_GLOBAL.out deleted file mode 100644 index 516fbc851c6408902a783262e3572f9376ab685b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.019794336954752603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198101_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198101_H_GLOBAL.out deleted file mode 100644 index f30edbbc373f3d17484406564ed3bdcf0e3f6031..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.03706649939219157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198101_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198101_M_GLOBAL.out deleted file mode 100644 index 5c1e8199b4a1f288efc270c71a27a339a013eed3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.0737940788269043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198102_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198102_D_GLOBAL.out deleted file mode 100644 index 1ff37d3a7d1b5527ef489e64f6d2b09ea2db4069..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.05119645198186239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198102_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198102_H_GLOBAL.out deleted file mode 100644 index 1b4ebafe5fe92a464c9633d90857888dea6a61b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.053384490807851154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198102_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198102_M_GLOBAL.out deleted file mode 100644 index c54c621dc1f8fa5c63ef53898ec372e781f22d59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.03348289728164673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198103_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198103_D_GLOBAL.out deleted file mode 100644 index 49297c40cd86fec40e48ec30bdc1a4eb65c8b40c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.07327537139256796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198103_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198103_H_GLOBAL.out deleted file mode 100644 index c095cb0275285580f5a4de7b1990d22ecb0daa5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.02717991272608439 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198103_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198103_M_GLOBAL.out deleted file mode 100644 index 0a70ad3c4469d8c14985d9c2aa5ea8b34569042e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.06805638074874878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198106_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198106_D_GLOBAL.out deleted file mode 100644 index 7735b74972804831af363f08e921a71384b29b3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.06981844107309977 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198106_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198106_H_GLOBAL.out deleted file mode 100644 index 1332416b215d294787d7d46c116fe995a4a6adb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.06011435588200887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198106_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198106_M_GLOBAL.out deleted file mode 100644 index 5a5bf00780bc824b1c5e6d2afe079f426f3c0789..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.06663631598154704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198107_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198107_D_GLOBAL.out deleted file mode 100644 index f8da9e5a7673328ed59b06940d14a0173e824336..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.07533941268920899 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198107_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198107_H_GLOBAL.out deleted file mode 100644 index fd062633027e082e7d55db53abbd77a5fcb4bb4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.06884761253992716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198107_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198107_M_GLOBAL.out deleted file mode 100644 index 46882df1b74cdb575b6723e01618baa556afe685..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.04151674509048462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198108_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198108_D_GLOBAL.out deleted file mode 100644 index ea747ff9086e6506917422521a1437794c3eb4be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.058446868260701494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198108_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198108_H_GLOBAL.out deleted file mode 100644 index 354acda87ac854a6f1d0e80cd2a913c898deca15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.038476840655008955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198108_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198108_M_GLOBAL.out deleted file mode 100644 index e27eeaaeddc2d475447c791b159545342f6a5c90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.05761803388595581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198109_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198109_D_GLOBAL.out deleted file mode 100644 index 2bbee07ba8a96a4f222bb62f57f207e3645647df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.0550009290377299 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198109_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198109_H_GLOBAL.out deleted file mode 100644 index 7bf01364e8c8eaf896f51b88dd872eed4cb16b2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.05152252912521362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198109_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198109_M_GLOBAL.out deleted file mode 100644 index a233fb6ee2045cee8874010249568ab9f4e9bf4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.0701544721921285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198110_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198110_D_GLOBAL.out deleted file mode 100644 index 0ffa1b5f9b53313c28bf8e9b33347c95ca5bd31e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.055392122268676756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198110_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198110_H_GLOBAL.out deleted file mode 100644 index 6a84e16d162291cd261caddd0917fe86a59a80c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.029458347956339517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198110_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198110_M_GLOBAL.out deleted file mode 100644 index a733791de3594bc2403d76bdef5bb0fa74728788..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.05492977698644002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198111_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198111_D_GLOBAL.out deleted file mode 100644 index adadf45911e9b17675098c976dba7d63ec1adf88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.0646238644917806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198111_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198111_H_GLOBAL.out deleted file mode 100644 index 8a34a007b57269ba9d97de27e015730ced014776..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.02709271510442098 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198111_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198111_M_GLOBAL.out deleted file mode 100644 index 0ad8b327e64337ce63c4745994e7e6d6499a748b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.05420655409495036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198112_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198112_D_GLOBAL.out deleted file mode 100644 index b66de2dcbd8d1c410d8eeea64975ec386922143e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.051427205403645836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198112_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198112_H_GLOBAL.out deleted file mode 100644 index 0b002567e1ad977f9d7dacbea2a88087da9469ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.0665212869644165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198112_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198112_M_GLOBAL.out deleted file mode 100644 index e708f381eee75f775a6bbeb74bc5202c5271bef7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.022682273387908937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198201_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198201_D_GLOBAL.out deleted file mode 100644 index d0edbfcb6a47bdf03e04f896747ac2260151bb4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.06523631811141968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198201_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198201_H_GLOBAL.out deleted file mode 100644 index f696550951da0a0d8accbbfd30c9ba3de47e539b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.06602582136789957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198201_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198201_M_GLOBAL.out deleted file mode 100644 index 84e0108160c17193741502b8e11ab7fb7919eb11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.03673121929168701 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198202_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198202_D_GLOBAL.out deleted file mode 100644 index 59434477b75dd64d55549fd2f68b30400cf0bf94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.04685518741607666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198202_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198202_H_GLOBAL.out deleted file mode 100644 index 3b197864a6dc425e3d84a2cf2b6d99ceb9a925f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.06581385135650634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198202_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198202_M_GLOBAL.out deleted file mode 100644 index b6a0715898acd3246446fddc318cf82b4ecad469..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.06014011700948079 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198203_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198203_D_GLOBAL.out deleted file mode 100644 index 8e52aa8981bc8ebb7b993ff346ce59cf9a5dabb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.07443017562230428 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198203_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198203_H_GLOBAL.out deleted file mode 100644 index 02c03b3feebc0e9a862014db01fd484d3081803a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.047463385264078777 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198203_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198203_M_GLOBAL.out deleted file mode 100644 index cdd6b3629f0b5c20b43cf7bcb25ef2f1bda1744e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.0550848404566447 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198204_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198204_D_GLOBAL.out deleted file mode 100644 index 0465a9d6c81ed10386d7ed233f1f6b7b1c286917..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.03801676034927368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198204_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198204_H_GLOBAL.out deleted file mode 100644 index 17d6f0f7702d0f7509a393148312419056e120d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.06022946834564209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198204_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198204_M_GLOBAL.out deleted file mode 100644 index fbcc99d3fc824427d5991265f5aa4653b00a33f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.025698641935984295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198205_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198205_D_GLOBAL.out deleted file mode 100644 index d07c8d789d5cac59c5b7c77457858fd47ab906d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.06559208631515503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198205_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198205_H_GLOBAL.out deleted file mode 100644 index dfba98249cc68ea877fc09adb80859cc768c7309..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.0665324568748474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198205_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198205_M_GLOBAL.out deleted file mode 100644 index eb47ce3734a7db72ce8c6da62b9c86e34bcd6303..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.06060714721679687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198206_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198206_D_GLOBAL.out deleted file mode 100644 index 6022b2c09a7ec2bfa229458ec56abaa8244411d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.027231597900390626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198206_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198206_H_GLOBAL.out deleted file mode 100644 index 057edce5eea66d60cda6ac545f9b4619193ab532..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.054139093557993574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198206_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198206_M_GLOBAL.out deleted file mode 100644 index 1abc95d54dacb1d7c103b754609fc782e020dd87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.03896305561065674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198207_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198207_D_GLOBAL.out deleted file mode 100644 index aad96b192baecf294462241be52f62a4cd2f654a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.04035099744796753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198207_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198207_H_GLOBAL.out deleted file mode 100644 index b7a4e4f39e1a21828c3a15b9e7c961d8868e512d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.050072272618611656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198207_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198207_M_GLOBAL.out deleted file mode 100644 index 082239ec84a6e62846816cb92a02ab9e79bb648f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.039168079694112144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198208_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198208_D_GLOBAL.out deleted file mode 100644 index 7b6e17d7604839059fa11992a33663c47849e187..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.06296817859013876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198208_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198208_H_GLOBAL.out deleted file mode 100644 index f6e5324a212a40a1eccd1bd43b4ca86f581b6e6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.06771808465321859 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198208_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198208_M_GLOBAL.out deleted file mode 100644 index 11943b3a1fd7b2159d83b69597e303ffda875ba0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.07047746976216634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198209_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198209_D_GLOBAL.out deleted file mode 100644 index 7e8023b35988c3fdef5167e9c373ec800f6b626a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.0619171937306722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198209_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198209_H_GLOBAL.out deleted file mode 100644 index 670980bd3af2b564e4ff0c6621415380fb6e73db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.031042516231536865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198209_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198209_M_GLOBAL.out deleted file mode 100644 index db4e8e7544af4a115c42e526d1de9813f444141b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.070416792233785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198210_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198210_D_GLOBAL.out deleted file mode 100644 index ed2ae6c8a35c3def440c0b2b121a49966380d54d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.06977965831756591 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198210_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198210_H_GLOBAL.out deleted file mode 100644 index f7543f4b2a7b90d7dd7f6f6ebd1b12228399f2cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.05791850090026855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198210_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198210_M_GLOBAL.out deleted file mode 100644 index 001d8e447b8397fd2f8452831b3951b9a82f5316..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.06850803295771281 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198211_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198211_D_GLOBAL.out deleted file mode 100644 index 9a55a0b1a6ac7702b50ae4402ac99eb370ec5540..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.05890901088714599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198211_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198211_H_GLOBAL.out deleted file mode 100644 index d7dd77f5b5900cca449ad6e49c41ecc8bf6c598e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.06463569402694702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198211_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198211_M_GLOBAL.out deleted file mode 100644 index a3621b89f0a180c478fac8b7220bf562fad31aa0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.06020850340525309 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198212_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198212_D_GLOBAL.out deleted file mode 100644 index 0c7d69e8a9293cde18474500d5d7bf0b0467e199..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.029956090450286865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198212_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198212_H_GLOBAL.out deleted file mode 100644 index 5b04e44083a2c579164bf2d8bb99fdc5ae807f37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.036217355728149415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198212_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198212_M_GLOBAL.out deleted file mode 100644 index 79d2e52573d1d9d4f4f0108b23451e3d86d4e44e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.025034451484680177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198301_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198301_D_GLOBAL.out deleted file mode 100644 index bcbf5344ca6a4fce55dc9b08933683c31cf9e9db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.050566911697387695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198301_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198301_H_GLOBAL.out deleted file mode 100644 index 92e3dcf55a98444dbfea368ef6b22ec147b36710..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.03127859036127726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198301_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198301_M_GLOBAL.out deleted file mode 100644 index 6c65e6514d59cafe4040a592f2eae6013301b961..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.06118769248326619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198302_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198302_D_GLOBAL.out deleted file mode 100644 index a1ec22eac336c465de86fda422b5e6478bd2f0c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.07096205552419027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198302_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198302_H_GLOBAL.out deleted file mode 100644 index bba5c2faa131f6a7f83393ffe4c840842b0fc296..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.051949973901112875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198302_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198302_M_GLOBAL.out deleted file mode 100644 index cb1e9e5f0385b7b259fda9275ff3e4d9854e24c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.05520246426264445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198303_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198303_D_GLOBAL.out deleted file mode 100644 index d89ee18b4f1b4f1da3ff24e2fa0fead658e6b4ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.052218981583913165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198303_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198303_H_GLOBAL.out deleted file mode 100644 index ef439a916afda2020c7622d5b77c52dd3f951b8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.05035823583602905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198303_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198303_M_GLOBAL.out deleted file mode 100644 index 307f5dd65cf44dd3e696f40213a787324fe76043..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.054489763577779134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198304_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198304_D_GLOBAL.out deleted file mode 100644 index 0d8cacd6174fae256bf223adfd274103323202c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.04655302762985229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198304_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198304_H_GLOBAL.out deleted file mode 100644 index efe3463e4ddcb3a8a712dce2f5af9bbe60001fb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.059366885821024576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198304_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198304_M_GLOBAL.out deleted file mode 100644 index 4ad4e1ef61ad218597e5b25747c367a402fc3a41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.03951575756072998 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198305_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198305_D_GLOBAL.out deleted file mode 100644 index 9517695c19e3328f0aa9648f3ce488283d3d5f2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.036380231380462646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198305_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198305_H_GLOBAL.out deleted file mode 100644 index c8a81b4b878904e9b88a8e718f128858abcec839..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.05230085055033366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198305_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198305_M_GLOBAL.out deleted file mode 100644 index 0c46bb04654e652c4e563ebb79ac608df99cc75e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.026262656847635905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198306_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198306_D_GLOBAL.out deleted file mode 100644 index 153cf4eb88cba8dedbe8af3b59c52fd228cbde2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.056086063385009766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198306_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198306_H_GLOBAL.out deleted file mode 100644 index c2c13060cd347fffb4f61a595a57c298f0a42369..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.061858189105987546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198306_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198306_M_GLOBAL.out deleted file mode 100644 index 3440592653f556d90518f45b1f7d6843a0db837a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.03698479731877645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198307_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198307_D_GLOBAL.out deleted file mode 100644 index 3a56e2e26094bb68bad81b32cc9c8316a3d50238..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.038989158471425374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198307_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198307_H_GLOBAL.out deleted file mode 100644 index 548f98735d99e8ecd9d8e4cc9f2f9f4ad27a937b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.03728617429733276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198307_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198307_M_GLOBAL.out deleted file mode 100644 index cbe0eea2baf66e1986edf76ff4c1a61f104da6fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.07197022040685018 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198308_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198308_D_GLOBAL.out deleted file mode 100644 index 1a4faf014119bb4c74d486f161ca662ded436d67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.04241606791814168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198308_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198308_H_GLOBAL.out deleted file mode 100644 index 4e8d37d77c22b1783e3ca4d014e94cb125883ea8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.041283241907755536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198308_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198308_M_GLOBAL.out deleted file mode 100644 index 9103599cedee422f2f9692dc320b2653468a5d24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.03735270897547404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198309_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198309_D_GLOBAL.out deleted file mode 100644 index 32f490dcf5214c518f9cb98fa126bc9c9e5bfebb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.07768027782440186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198309_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198309_H_GLOBAL.out deleted file mode 100644 index b6db27c301312fad3c7adf3425a5e82a3d9f262a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.038420538107554116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198309_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198309_M_GLOBAL.out deleted file mode 100644 index 4d5b4baa008fdafc43475ca789bd91430b5fcdd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.06106253067652385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198310_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198310_D_GLOBAL.out deleted file mode 100644 index 81353aaecfb1e27a0a4e8a6c44e70a236957e981..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.06228614648183187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198310_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198310_H_GLOBAL.out deleted file mode 100644 index 9f53c6f9a700d85c43ad77094bebd81269964c1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.024979352951049805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198310_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198310_M_GLOBAL.out deleted file mode 100644 index c444c616dce7087e722d4831ec920faf426057e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.05491245587666829 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198311_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198311_D_GLOBAL.out deleted file mode 100644 index a782ab7142bc98e0f891ae25705cad9b9633d5ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.06660983562469483 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198311_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198311_H_GLOBAL.out deleted file mode 100644 index 75e38c45daaee1fdf6cd64a41b564265e4589c59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.036335961023966475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198311_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198311_M_GLOBAL.out deleted file mode 100644 index 114bb9b2f5227d419d4b3b46f199bc3225dcf476..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.037555372714996337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198312_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198312_D_GLOBAL.out deleted file mode 100644 index 553d7547220eaab093140dffd75462815b738176..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.05305035511652629 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198312_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198312_H_GLOBAL.out deleted file mode 100644 index 53477b08c4b6515b25a6700207819e15390a060e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.056810458501180015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198312_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198312_M_GLOBAL.out deleted file mode 100644 index 36903f413015bf494f3b2fe224bd8f1b75ae3577..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.048170431454976397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198401_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198401_D_GLOBAL.out deleted file mode 100644 index 9af345e9a0922118fc3d2dad65ac520ac9350321..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.040424537658691403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198401_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198401_H_GLOBAL.out deleted file mode 100644 index 6da6784d4b95c6a9b5bc6f21ee02d702b2e6f688..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.0679638942082723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198401_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198401_M_GLOBAL.out deleted file mode 100644 index 188f113b63a46eb98e0b21d0dbc236fd1a538579..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.06816021998723348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198402_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198402_D_GLOBAL.out deleted file mode 100644 index d66bff4c89fc841215bc14fc17e20d55b12e2a75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.07322089274724325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198402_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198402_H_GLOBAL.out deleted file mode 100644 index 623aaae1fca4a8d7b770835efa068230de067c1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.041175623734792076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198402_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198402_M_GLOBAL.out deleted file mode 100644 index 94df0566b782352b7d31596cb4e8be7e60a1c536..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.06607348124186198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198403_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198403_D_GLOBAL.out deleted file mode 100644 index 2cdf00b329d201872475753dbf3210db761cb164..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.052419487635294595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198403_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198403_H_GLOBAL.out deleted file mode 100644 index 3cd6e00d844e80c048c43e94b2e74cbdbce4c5e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.06234954198201497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198403_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198403_M_GLOBAL.out deleted file mode 100644 index 1a074279ad95428bb2259781c206d167cb744704..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.0282639741897583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198404_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198404_D_GLOBAL.out deleted file mode 100644 index a5cbbedac293077fac02362a25015bb05de1eca1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.0327103853225708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198404_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198404_H_GLOBAL.out deleted file mode 100644 index 3bd6c9e9db387f4ab1d90081f3af21036f2d2692..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.036849204699198404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198404_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198404_M_GLOBAL.out deleted file mode 100644 index c76fdc1209de6e82f163711c1cfb49835a769759..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.03305576642354329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198405_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198405_D_GLOBAL.out deleted file mode 100644 index fd6e7210a930f0387718eb314bf7bf18f59dd119..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.05661427974700928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198405_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198405_H_GLOBAL.out deleted file mode 100644 index f3e5373337c28fa08fc1312e048537f6e417302e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.06653307676315308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198405_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198405_M_GLOBAL.out deleted file mode 100644 index d6cdbbda7aaf54c6715591321f59d02ef408d146..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.0556038498878479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198406_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198406_D_GLOBAL.out deleted file mode 100644 index 677a564e49eb5188b05b228b8adff270af905f64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.04163415431976318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198406_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198406_H_GLOBAL.out deleted file mode 100644 index 6debce91ef33049ce88f484458724ff9ba87ba22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.06818954149881999 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198406_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198406_M_GLOBAL.out deleted file mode 100644 index dc72020cec2c0ce13de85c55ceaf405290c2a6bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.05593041181564331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198407_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198407_D_GLOBAL.out deleted file mode 100644 index 78fc62438c20e9ae07008f8c10e1f0955a16116c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.05958586533864339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198407_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198407_H_GLOBAL.out deleted file mode 100644 index a623c2346f03b6d2786bd71df68434242d387f45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.07748077710469564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198407_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198407_M_GLOBAL.out deleted file mode 100644 index 747dbc294cf5b2bbddc2e9426580161be51534ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.06356428861618042 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198408_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198408_D_GLOBAL.out deleted file mode 100644 index fa03f373f149531cbc0782b67e079b5ffdfabb7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.055231722195943196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198408_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198408_H_GLOBAL.out deleted file mode 100644 index 3b1c81d0c1681e04e25b278242cef3175d272477..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.067397141456604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198408_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198408_M_GLOBAL.out deleted file mode 100644 index 90120bbd53c05f5e2e4ed4b21583f219ea80f565..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.06477904717127482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198409_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198409_D_GLOBAL.out deleted file mode 100644 index 56d3261ebfd428dcd3750cc97e79bd9de547e620..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.057363184293111165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198409_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198409_H_GLOBAL.out deleted file mode 100644 index 9e87f2458b059c33db9f1fa6ff1558cd880da338..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.07284597555796306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198409_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198409_M_GLOBAL.out deleted file mode 100644 index 79aba1fee7bbcc2ec9b13950b1e7a9f8bd38742a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.07155738274256389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198410_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198410_D_GLOBAL.out deleted file mode 100644 index c30cf58d3bf7e5c20b9eea0dfcbf32cf894e4965..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.030189792315165203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198410_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198410_H_GLOBAL.out deleted file mode 100644 index 28c445ac4340ac88902cabba8b93281a9c1b8078..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.054023575782775876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198410_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198410_M_GLOBAL.out deleted file mode 100644 index ea27c11c3caae99b59df71882c97a2918cf46b4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.057815579573313396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198411_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198411_D_GLOBAL.out deleted file mode 100644 index 24388462d555b90b0d1613fd1962e918357da2e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.06716043551762899 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198411_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198411_H_GLOBAL.out deleted file mode 100644 index e0843db98fbf3e3c0ff47e92ba8e736aec64d0c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.07163991133371989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198411_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198411_M_GLOBAL.out deleted file mode 100644 index bc007d5473a3f4cbe6cf70a72c832375d6009a43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.07174123525619507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198412_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198412_D_GLOBAL.out deleted file mode 100644 index 474a746bd672855a18f04c67b33084c8e2118065..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.04249871969223022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198412_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198412_H_GLOBAL.out deleted file mode 100644 index ce05d8155ef644b71c4ade785f157fe541bff6d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.05290145874023437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198412_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198412_M_GLOBAL.out deleted file mode 100644 index 312f71333ae85b3593af54d25f8415f2f8d7e312..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.035172009468078615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198501_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198501_D_GLOBAL.out deleted file mode 100644 index 523c728b005d5d5b53b3cd0ea9ce716098f9e87c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.06746946573257447 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198501_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198501_H_GLOBAL.out deleted file mode 100644 index b74fdea3829e36ed7c3bd9dbb96cdd9f33d08c02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.0410678227742513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198501_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198501_M_GLOBAL.out deleted file mode 100644 index 4bcc12bfc2849f396c5697341e0187ea85f4e356..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.04961734215418498 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198502_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198502_D_GLOBAL.out deleted file mode 100644 index f06c72b0dd67d0055b019881b31aad5215a58c9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.036330246925354005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198502_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198502_H_GLOBAL.out deleted file mode 100644 index e5c5ecbe3b3190b85f9df2de9e434ed3c11dc257..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.05916517972946167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198502_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198502_M_GLOBAL.out deleted file mode 100644 index 7779079df891425d1ce3dd1c6b48fc314d51e01a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.060319141546885176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198503_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198503_D_GLOBAL.out deleted file mode 100644 index 6f5e76a870b5cf7cf6fe91234f712c609bc0fe01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.05938623746236165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198503_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198503_H_GLOBAL.out deleted file mode 100644 index 07246bde9f17315ed292fff2321135f7b417043f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.04090640147527059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198503_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198503_M_GLOBAL.out deleted file mode 100644 index b6a9d6722bdd6fbcbc4aa0c3c3cddccb56c1bcff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.046771530310312906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198504_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198504_D_GLOBAL.out deleted file mode 100644 index 46b6d11081437997eccce92cf5b90233a96312a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.05693205197652181 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198504_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198504_H_GLOBAL.out deleted file mode 100644 index 2176ce3fa4e4cbbbffeddfe2015f445f49c50768..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.03687281608581543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198504_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198504_M_GLOBAL.out deleted file mode 100644 index 267f8209b529eb2fa386e74d721e6b230373251b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.054295090834299724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198505_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198505_D_GLOBAL.out deleted file mode 100644 index 76dd509014029c68f05197802420f0d745dc977a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.051418391863505046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198505_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198505_H_GLOBAL.out deleted file mode 100644 index a7322288c3a220a4f2921f2d95ca3e4d25d73c05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.07651426394780476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198505_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198505_M_GLOBAL.out deleted file mode 100644 index dbfed15e6d07c383859327b854d1b58af7bb3093..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.05830639600753784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198506_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198506_D_GLOBAL.out deleted file mode 100644 index ea1afc6e2fdd64ead3565b8b7499f820af67edad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.02681680123011271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198506_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198506_H_GLOBAL.out deleted file mode 100644 index 8a8631813e9f36687a8f8e85f73ab2fcfafcd2c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.020490066210428873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198506_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198506_M_GLOBAL.out deleted file mode 100644 index 3a4ccc767bf163212a99176ab928c43ad19567f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.05211646954218547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198507_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198507_D_GLOBAL.out deleted file mode 100644 index 557242c3d0832c9cb68009cab769773af0d2c878..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.05450067122777303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198507_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198507_H_GLOBAL.out deleted file mode 100644 index 36cf1ff8d9cd0e352516f41f3bfd77b733959886..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.07280468543370565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198507_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198507_M_GLOBAL.out deleted file mode 100644 index a4e490d02d91132de8797df9e991325b9b82c880..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.0293363889058431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198508_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198508_D_GLOBAL.out deleted file mode 100644 index 65457c7e8436326484f29842403b69d8cda09a95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.0639202356338501 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198508_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198508_H_GLOBAL.out deleted file mode 100644 index 2fb516c3f8a0f6b06d5eeaf95ce12da49093a2bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.05840062697728475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198508_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198508_M_GLOBAL.out deleted file mode 100644 index b14adb6933a997fb15179d850d0e5f3fd6024413..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.07209055423736573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198509_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198509_D_GLOBAL.out deleted file mode 100644 index a2ab2a5e1f3f55542238f4550d56a0501e6cc723..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.05012375513712565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198509_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198509_H_GLOBAL.out deleted file mode 100644 index f7b093f6ad67a88f753e6c2ce3e9310fc57fc705..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.057481586933135986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198509_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198509_M_GLOBAL.out deleted file mode 100644 index 348dbb300ba46a1611152923e1b2e353c3c26ea0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.041674327850341794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198510_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198510_D_GLOBAL.out deleted file mode 100644 index 89b03159b30221f181958ea67a03bc9ef389d853..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.06228306293487549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198510_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198510_H_GLOBAL.out deleted file mode 100644 index 7f45ff0b37261a7eda2a7d98448ac0e7410e7930..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.05596478382746379 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198510_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198510_M_GLOBAL.out deleted file mode 100644 index 89a320980c2d5541e5cc1a28b292b8350195afdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.035304474830627444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198511_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198511_D_GLOBAL.out deleted file mode 100644 index 1015375bd4f8b0de81ae011c95f9b79622424280..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.05853238900502523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198511_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198511_H_GLOBAL.out deleted file mode 100644 index 406985df9c660816e88e4b2a61078dffce28f2cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.0337687889734904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198511_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198511_M_GLOBAL.out deleted file mode 100644 index 19bdf0ec4b603acc3c802ce759946d22904aa617..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.06793810923894246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198512_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198512_D_GLOBAL.out deleted file mode 100644 index 5f293b80c20d174bc835a6d8ce0e7ab29b75d393..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.027076188723246256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198512_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198512_H_GLOBAL.out deleted file mode 100644 index a5a4f0f975d500eb2af6130d4e424315465c2699..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.04352660973866781 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198512_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198512_M_GLOBAL.out deleted file mode 100644 index 18b7b3af607bc96504ab6727cae4cc980aec9a7f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.0686922033627828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198601_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198601_D_GLOBAL.out deleted file mode 100644 index fa99bd4402a6af80057305a7153ed0985ef26d9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.05707767407099406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198601_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198601_H_GLOBAL.out deleted file mode 100644 index c1900d24020d826cfa4be2c1c3fae481acbaf937..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.0373476505279541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198601_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198601_M_GLOBAL.out deleted file mode 100644 index 7fa16ebbfe8c1b9d16f1fdf28440c8d492603add..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.0557607372601827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198602_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198602_D_GLOBAL.out deleted file mode 100644 index 05c703776cd1fe9fa6decb5456b0a310a91e7015..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.05635379155476888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198602_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198602_H_GLOBAL.out deleted file mode 100644 index 9b6e14e96af3d144505d42ebc8b98c609255e54f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.03437225023905436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198602_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198602_M_GLOBAL.out deleted file mode 100644 index 42f458a9c5b7832ae8e3ac34f04d05db7ee44720..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.01939659516016642 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198603_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198603_D_GLOBAL.out deleted file mode 100644 index acf9750707bc4fef21709f4e81ac60d464348dbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.04295343557993571 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198603_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198603_H_GLOBAL.out deleted file mode 100644 index ec792e8612a2836c738658e2fff4dadef9535bec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.05300509532292684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198603_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198603_M_GLOBAL.out deleted file mode 100644 index 8704a96f53b507d560eb2145930c88da967961f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.05657195250193278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198604_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198604_D_GLOBAL.out deleted file mode 100644 index 177cad325a1ada35ebc1298572625fa30949530f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.029741926987965902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198604_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198604_H_GLOBAL.out deleted file mode 100644 index dfc347f6329c9abd5ef739f342de98d71ffdc648..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.048242270946502686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198604_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198604_M_GLOBAL.out deleted file mode 100644 index a56094ac32f7531f3cb6ba0e193f3a3130a0f919..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.03347088893254598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198605_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198605_D_GLOBAL.out deleted file mode 100644 index 1a80fcf094833bf64915841bedae5c2386b18b54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.04110568364461263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198605_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198605_H_GLOBAL.out deleted file mode 100644 index 1f6837beceb4e890646cc69194a34942cfb2d725..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.050838534037272134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198605_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198605_M_GLOBAL.out deleted file mode 100644 index 44014ca0e17522514dacbc1d445e2a2b5981dceb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.041949601968129475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198606_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198606_D_GLOBAL.out deleted file mode 100644 index aa0b633e724dcc8155ad0a49cf3487a22fbe771f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.02857759396235148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198606_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198606_H_GLOBAL.out deleted file mode 100644 index 07f67ad25e3fcf0bc5d2362a97b7d74ff52afaa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.056587556997934975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198606_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198606_M_GLOBAL.out deleted file mode 100644 index f79a7d6f042f641319ee9830bce9cce9f0419093..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.058885049819946286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198607_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198607_D_GLOBAL.out deleted file mode 100644 index 2af2324aa0c69e220a1414619df4c309dfab40b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.05182525316874186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198607_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198607_H_GLOBAL.out deleted file mode 100644 index 3dbd1a766209e584b4333a20ddd260e2836b4447..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.017804062366485594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198607_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198607_M_GLOBAL.out deleted file mode 100644 index 18c5c8f74496889cfcf935a2d6f364a8bb57e924..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.04245620171229045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198608_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198608_D_GLOBAL.out deleted file mode 100644 index a2b5af6a7e5039d109df534696a8cbad6e460c1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.05873260895411173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198608_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198608_H_GLOBAL.out deleted file mode 100644 index e2c20451091ec6a0316ca1060e6f2ed3dba34702..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.05322349468866984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198608_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198608_M_GLOBAL.out deleted file mode 100644 index c23a3416f08f619baf2e60833567d11c4e5eefda..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.03190917174021403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198609_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198609_D_GLOBAL.out deleted file mode 100644 index 50ef7a7fdc8626b8b3e23bd0a83cdd788121f85e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.029193703333536783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198609_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198609_H_GLOBAL.out deleted file mode 100644 index c744a5eb7913c791e0bce1c868b83ac6e0330a47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.04567234516143799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198609_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198609_M_GLOBAL.out deleted file mode 100644 index eb2839ad78e6d6589e5c48f34d67ebfc4ef1a63c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.05855234464009603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198610_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198610_D_GLOBAL.out deleted file mode 100644 index 18fc675b427f78ecfdbcab3261110ccdbd9423cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.03672800064086914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198610_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198610_H_GLOBAL.out deleted file mode 100644 index 96af314c363bc8b52ad871788babeb26c2874aad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.03718752861022949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198610_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198610_M_GLOBAL.out deleted file mode 100644 index 01feee144bafa97a4cb7244c59c609179dc43714..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.04159014225006104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198611_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198611_D_GLOBAL.out deleted file mode 100644 index c286f9e80fdd9cf3795a42703fa4653d6afaa91f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.03312579790751139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198611_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198611_H_GLOBAL.out deleted file mode 100644 index 405390ac4b74dea216bfde59e91c71f9af5e241f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.02947188218434652 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198611_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198611_M_GLOBAL.out deleted file mode 100644 index 203f121d26ecdf6c404a9d8e4bc868bba08934ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.05155921777089437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198612_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198612_D_GLOBAL.out deleted file mode 100644 index 1aa778e5e282b39bb6e214631963bf96f57de17c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.02740104595820109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198612_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198612_H_GLOBAL.out deleted file mode 100644 index 001c4d8b47d88fb91bb1748b98f453d34659ab02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.05137791633605957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198612_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198612_M_GLOBAL.out deleted file mode 100644 index ccfe71eb66c683f855b2ea8111261ca8334996ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.03640839656194051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198701_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198701_D_GLOBAL.out deleted file mode 100644 index 5dc859e6b3ab42c3f4cce6f7d71a7a3620987fef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.07186017036437989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198701_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198701_H_GLOBAL.out deleted file mode 100644 index 50963790175bd8f46ef9f0ad8ea0f2c64f9b4267..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.03315411806106568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198701_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198701_M_GLOBAL.out deleted file mode 100644 index 146af3c3db6c9622078680549264712aa6bc2e0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.0501780112584432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198702_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198702_D_GLOBAL.out deleted file mode 100644 index c3b9b6822151099149f18f4d712053e6871def48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.05318697690963745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198702_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198702_H_GLOBAL.out deleted file mode 100644 index 38e1999fe745934b519d45f8c981dd1e7d076f7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.03419214089711507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198702_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198702_M_GLOBAL.out deleted file mode 100644 index 2093e06f7d7f80fd1bc4883c9301699dd0a6313d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.06455206871032715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198703_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198703_D_GLOBAL.out deleted file mode 100644 index 8da2bb3b8752a4bafb9378f778d3f010ef4c629f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.022066497802734376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198703_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198703_H_GLOBAL.out deleted file mode 100644 index 7a4869e52ccd9949483a0ebe44a702fe9762568a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.07093296051025391 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198703_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198703_M_GLOBAL.out deleted file mode 100644 index 4cb6a7c35572c3fc3337595342578ba29c815acc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.04727484782536825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198704_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198704_D_GLOBAL.out deleted file mode 100644 index 53166f05657f3c04c2a48c7eff054282461dce0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.051964962482452394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198704_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198704_H_GLOBAL.out deleted file mode 100644 index 8c6d83233e562741a7710e4f979f4bbbb631b75a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.04979834953943888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198704_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198704_M_GLOBAL.out deleted file mode 100644 index 6b2c5abdebc8065ea57992c88dde65603b38909c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.030108058452606203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198705_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198705_D_GLOBAL.out deleted file mode 100644 index 827922adde93cba6e13f13f5d4721a8509f838e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.05257011254628499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198705_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198705_H_GLOBAL.out deleted file mode 100644 index b5b47e2f1f40d49b7f262c40321b671486ec3611..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.054790842533111575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198705_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198705_M_GLOBAL.out deleted file mode 100644 index 81da7ae309d6040f9565813beaf680148c7ae3d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.06354816754659016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198804_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198804_D_GLOBAL.out deleted file mode 100644 index a72ec5ec83306eed45e5214775006d4438c5866a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.055892475446065265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198804_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198804_H_GLOBAL.out deleted file mode 100644 index 06148cfe3ca096b7b6ba5f0e032e9530d57d10aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.06305825312932332 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198804_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198804_M_GLOBAL.out deleted file mode 100644 index f56113bf2d08bafd16503ef5033fc99fac8447a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.048619067668914794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198810_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198810_D_GLOBAL.out deleted file mode 100644 index c1d88a5d7c284d250fbf04304309244eacba152c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.059601910909016925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198810_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198810_H_GLOBAL.out deleted file mode 100644 index bfd7c1f82568d5949a7131612eeb5b0842c13473..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.04460582733154297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198810_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198810_M_GLOBAL.out deleted file mode 100644 index d9e346d0ce696ccd731087f3f8c0f48cb521fa00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.06171407699584961 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198811_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198811_D_GLOBAL.out deleted file mode 100644 index 665dcdc7d5564b7bd1235ae90e5fb9c3869e0853..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.07078208923339843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198811_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198811_H_GLOBAL.out deleted file mode 100644 index a1f4215b495e68d15dd5aa4354023b5d7c4f9840..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.03667945861816406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198811_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198811_M_GLOBAL.out deleted file mode 100644 index 4733de3f175c48aa563da3398a915d8f44318dec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.04863095283508301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198812_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198812_D_GLOBAL.out deleted file mode 100644 index 9bc31a8048a389dccd90afbe068d42d4d59851f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.051639310518900555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198812_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198812_H_GLOBAL.out deleted file mode 100644 index 3df9b652972bd6d20b4d17f5c20be310a46f9029..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.032208037376403806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198812_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198812_M_GLOBAL.out deleted file mode 100644 index 251b4554b69d6a99404dca57f3db38ce67c913e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.04796781142552694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198901_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198901_D_GLOBAL.out deleted file mode 100644 index aa6c9ce330a7520b3647c83d8f129416a6298619..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.058753756682078044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198901_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198901_H_GLOBAL.out deleted file mode 100644 index ce18862188aa9067d59e6477cc6784f8e808f936..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.016471449534098306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198901_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198901_M_GLOBAL.out deleted file mode 100644 index 7059d63d950d95477acf619875343b5d57ba80f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.05691889524459839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198902_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198902_D_GLOBAL.out deleted file mode 100644 index eb185da42b897eb2851a2fa669a3988be5c69527..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.05961367686589559 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198902_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198902_H_GLOBAL.out deleted file mode 100644 index 5657041e51a56d83f2ad014723eb4182422cbc19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.03607210318247477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198902_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198902_M_GLOBAL.out deleted file mode 100644 index 126fc371e81d537adf2f09ba57bc5e3d441fc647..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.03967555363972982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198903_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198903_D_GLOBAL.out deleted file mode 100644 index b12b503f02228ca7dc971bc9f10739b88050b068..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.06144386927286784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198903_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198903_H_GLOBAL.out deleted file mode 100644 index 584d86b6edf717697964428228ed443a45031bbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.041175774733225506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198903_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198903_M_GLOBAL.out deleted file mode 100644 index a64a06b91d2af8caf551d0d3ae5098b2098e43b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.06996338764826457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198904_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198904_D_GLOBAL.out deleted file mode 100644 index 70b6a62ee5d8ab3f7f4cdbad692f19052ed3ed96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.03810453017552694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198904_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198904_H_GLOBAL.out deleted file mode 100644 index bffa58b70303f96ff27788479ea2b5e2e1a28aa6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.07227769295374552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198904_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198904_M_GLOBAL.out deleted file mode 100644 index 8df5d01e8b373929bbb7948e4deada66baa32427..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.04712669849395752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198905_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198905_D_GLOBAL.out deleted file mode 100644 index 2726c54d2afb4b25c50bbdc6fd5edd3f4521e774..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.04102706114451091 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198905_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198905_H_GLOBAL.out deleted file mode 100644 index 319da02ad078dbe425dad1e1f0968aa1fa67c87e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.055726397037506106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198905_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198905_M_GLOBAL.out deleted file mode 100644 index cbb76664a2222fb696280a37f6b0406914478645..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.03396011590957641 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198906_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198906_D_GLOBAL.out deleted file mode 100644 index 78e864463cf2a2a6d26ef0dee00fbbecef0d6bba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.038475000858306886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198906_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198906_H_GLOBAL.out deleted file mode 100644 index b7369efd011ba83d6f622ea59f12da0c6ad195e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.05558912754058838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198906_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198906_M_GLOBAL.out deleted file mode 100644 index 855e4508d2518ffed971eda8d7477243b20c7679..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.06773908138275146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198907_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198907_D_GLOBAL.out deleted file mode 100644 index 920df2c1682af7355405c940a976ab6fa2c7ce25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.036656542619069414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198907_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198907_H_GLOBAL.out deleted file mode 100644 index 211948cf24e1a29983b215598c530a982a5df3d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.06403163671493531 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198907_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198907_M_GLOBAL.out deleted file mode 100644 index 8872c091726da14516307d5c9ac623b4bb6bd69a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.03641415039698283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198908_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198908_D_GLOBAL.out deleted file mode 100644 index 7a102bfa6f944b387f3f138776097505f784bfd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.05523653825124105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198908_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198908_H_GLOBAL.out deleted file mode 100644 index bebdde27f6981e68233ba8ca077fe342b255805b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.033402828375498454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198908_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198908_M_GLOBAL.out deleted file mode 100644 index 7db3e301a283da9e8db3e8ed57dd525f744e0aea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.037195253372192386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198909_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198909_D_GLOBAL.out deleted file mode 100644 index 45a71898cf1edad22dd7600a31df3b9309e9ba48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.03496782779693604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198909_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198909_H_GLOBAL.out deleted file mode 100644 index d30907de905c1f2a6c98cee001218cfb05d4be49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.030717178185780843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198909_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198909_M_GLOBAL.out deleted file mode 100644 index 7cb5ce893990284b9eff468a5b46889166e111f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.06697661876678467 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198910_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198910_D_GLOBAL.out deleted file mode 100644 index 1b92e30e8af25a81398cd794ed903c95994e7d84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.06539445718129476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198910_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198910_H_GLOBAL.out deleted file mode 100644 index 3de89e96121ced28d76e16ec47fa58c246a76d29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.03114524284998576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198910_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198910_M_GLOBAL.out deleted file mode 100644 index 6d95fb54397b42224eff2e6c2383581e1193fd6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.028302506605784098 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198911_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198911_D_GLOBAL.out deleted file mode 100644 index b5f44ed1837b17863e1a8c3461ce2f0758079e86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.03629734516143799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198911_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198911_H_GLOBAL.out deleted file mode 100644 index 3afeab94648d68636eed0da0d35c456b3ff59187..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.06985541979471842 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198911_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198911_M_GLOBAL.out deleted file mode 100644 index 9bb53ad8bcccf1f99248f31aa49c463d18da1b9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.07199892600377401 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198912_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198912_D_GLOBAL.out deleted file mode 100644 index 24ca5d990f486a9d46866b545900adcaafadc02c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.06668546199798583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198912_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198912_H_GLOBAL.out deleted file mode 100644 index 483adab45b8e81ff66a4f4bb09e1b9ec2b929d87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.04803757270177205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_198912_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_198912_M_GLOBAL.out deleted file mode 100644 index 9210c0f59abb7fd24b551cb76cfc52c19f168893..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_198912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.05042036771774292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199001_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199001_D_GLOBAL.out deleted file mode 100644 index 334d664300741b273769c99fbb7d0508a27d98c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.03367084264755249 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199001_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199001_H_GLOBAL.out deleted file mode 100644 index f104bd1d119f11e149431a7169bf360ab6d725ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.02574871778488159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199001_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199001_M_GLOBAL.out deleted file mode 100644 index 79f787ea05ae1d1070a18f82bb2772062602b2c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.046232672532399495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199002_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199002_D_GLOBAL.out deleted file mode 100644 index 8ae5a4fbabbb533581d8333b58cc7b42ef107a4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.05451296170552571 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199002_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199002_H_GLOBAL.out deleted file mode 100644 index fa33c0553fb7900112ebfb9df3f79cdf65eb3578..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.05972019036610921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199002_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199002_M_GLOBAL.out deleted file mode 100644 index 24f0c3f6fdabed9e7b07ca363648c0a091112bf8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.022233529885609945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199003_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199003_D_GLOBAL.out deleted file mode 100644 index b5dd39bee89373e6a7a359c5ab2fec558812a77e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.03018089532852173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199003_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199003_H_GLOBAL.out deleted file mode 100644 index 4039a46dfed3bec7fca3c05a2841ceed8f5d1736..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.0635767420132955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199003_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199003_M_GLOBAL.out deleted file mode 100644 index 04149a8026108ced523b9982052673b2360990b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.02950901985168457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199004_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199004_D_GLOBAL.out deleted file mode 100644 index dce48cb1be1b9ca3a42289f65d358ac613b5c021..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.05981185038884481 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199004_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199004_H_GLOBAL.out deleted file mode 100644 index f411aac97ab7bef33d72fa5963508a829b7b6f88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.03481838305791219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199004_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199004_M_GLOBAL.out deleted file mode 100644 index 1a5a900466ac9ba2ab0bc722dfcfdda92ed6189e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.06699965000152588 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199005_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199005_D_GLOBAL.out deleted file mode 100644 index 87e1b2cd61fcd602b32746e0db00e8b54a4a1da6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.03562908967336019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199005_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199005_H_GLOBAL.out deleted file mode 100644 index 03080d3a21ce3593fd8a11f6fb57f6b7d9d19f1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.0624594767888387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199005_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199005_M_GLOBAL.out deleted file mode 100644 index b49cbe57b75516a4c0e14e124700b2b88219c775..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.056265016396840416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199006_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199006_D_GLOBAL.out deleted file mode 100644 index b1b2b5d81edadaa585520e171764533b095a1abc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.06042843262354533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199006_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199006_H_GLOBAL.out deleted file mode 100644 index 338a4dd3049a5c319c6fd33ee13be9feb1d79850..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.037688287099202473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199006_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199006_M_GLOBAL.out deleted file mode 100644 index 1a7741bedd67ecb88899b790013d1a7d9b636d99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.06852412223815918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199007_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199007_D_GLOBAL.out deleted file mode 100644 index c1841aaa66727b62e82ca819adf634a0dddfc072..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.06910782257715861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199007_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199007_H_GLOBAL.out deleted file mode 100644 index fbfc3c51c48d5d792f9da9421bb9a8f5dd098dd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.045437514781951904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199007_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199007_M_GLOBAL.out deleted file mode 100644 index 8b61fe978aeaa210e45a6211d569fce8b804c6f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.06338179508845011 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199008_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199008_D_GLOBAL.out deleted file mode 100644 index 27605eca127cad3d435b400b45e735fa50dc533a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.036006089051564535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199008_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199008_H_GLOBAL.out deleted file mode 100644 index e66512331e242a244be481a4b35f82735e039c64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.07704176108042399 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199008_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199008_M_GLOBAL.out deleted file mode 100644 index 223b8d3897d21f8923615d8f4d3859deae89558f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.045845778783162434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199009_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199009_D_GLOBAL.out deleted file mode 100644 index a445dff9eff9ca63a5e4e39d4be7183550d0523f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.06893842220306397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199009_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199009_H_GLOBAL.out deleted file mode 100644 index 1b28a884d9268bae28f1b8a8a7366cad6c68c49d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.07319605350494385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199009_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199009_M_GLOBAL.out deleted file mode 100644 index 27e33dd0b13e9872010601401d7190c4e6033f9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.020971818765004476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199010_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199010_D_GLOBAL.out deleted file mode 100644 index f80da48e462c4e22f75f8f2ab3d451901bd8d05a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.058336583773295085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199010_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199010_H_GLOBAL.out deleted file mode 100644 index 1f0ddd8a01d5943d0717a2fac0a245f066288a2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.031251231829325356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199010_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199010_M_GLOBAL.out deleted file mode 100644 index b5e7f990eda6ab5d8fd5099185e9c53e10e420ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.04563762744267782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199011_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199011_D_GLOBAL.out deleted file mode 100644 index 107609ed407e6c860bae54f71dc7e3d6f6867f20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.061459457874298094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199011_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199011_H_GLOBAL.out deleted file mode 100644 index bb2a34cd817eed012d85615ed1dca38144ef1734..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.027457396189371746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199011_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199011_M_GLOBAL.out deleted file mode 100644 index 1cf54f95b339f31382b958c28f1c097dbd3c00c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.07464316288630167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199012_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199012_D_GLOBAL.out deleted file mode 100644 index e52506b2b0401b9af20762ed733cce7f0729f7aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.042293258508046466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199012_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199012_H_GLOBAL.out deleted file mode 100644 index fb4b92d96f0bcb552b673d1aa073feb7c1ff1dc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.05802574157714844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199012_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199012_M_GLOBAL.out deleted file mode 100644 index 56ddee8154d578a5b65311f215ed8cfe349b09c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.041200780868530275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199101_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199101_D_GLOBAL.out deleted file mode 100644 index 135021aa79c8227919459eaeaa53e98b96f16ad4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.05374941825866699 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199101_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199101_H_GLOBAL.out deleted file mode 100644 index 24577d3c87b1a778ffcb2471ef8e7f9cf08fc806..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.05944987138112386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199101_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199101_M_GLOBAL.out deleted file mode 100644 index 5c89cb0c2a3568f206347f3c5f1398b8a9b14c5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.027549346288045246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199102_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199102_D_GLOBAL.out deleted file mode 100644 index 6e2a3e1f19f3d213bf40f511ec48bc68b328e98f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.026840460300445557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199102_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199102_H_GLOBAL.out deleted file mode 100644 index c7f58c9938166f1d2d72cdd255384f6662df8e1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.0625230312347412 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199102_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199102_M_GLOBAL.out deleted file mode 100644 index ff33b2541d01ae04adc0524b69396ed77e4d5174..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.06813148260116578 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199103_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199103_D_GLOBAL.out deleted file mode 100644 index c57fd4d9cbf80650a6742e0ec9e171148bae1a4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.06345592737197876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199103_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199103_H_GLOBAL.out deleted file mode 100644 index 477fef45ee8c3ddaa93fa49069a9860be3e74484..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.052230433622996016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199103_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199103_M_GLOBAL.out deleted file mode 100644 index b4866b29c3e9a4f749168e4e6a27459280632c9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.05735599994659424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199104_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199104_D_GLOBAL.out deleted file mode 100644 index 58e8836df2497f19a7b24a182c529fc189800942..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.02733721335728963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199104_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199104_H_GLOBAL.out deleted file mode 100644 index 27919346cd8a004cc70a30812155b83da82ef161..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.0668614109357198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199104_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199104_M_GLOBAL.out deleted file mode 100644 index 7dd63f88c7d04876d67b8b78723bc97b335b0a55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.030159727732340495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199105_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199105_D_GLOBAL.out deleted file mode 100644 index f0cc292b82ac4a7e01ac46eb22d5f3bf870dfdf0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.06876572767893473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199105_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199105_H_GLOBAL.out deleted file mode 100644 index d3a601239b9adc5fa72a36e2d0492ed52491fe14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.026770846048990885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199105_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199105_M_GLOBAL.out deleted file mode 100644 index 1b654e3f325dfe83976072e8dd692998ba34e298..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.05131061474482219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199106_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199106_D_GLOBAL.out deleted file mode 100644 index d5fd4d0419d9568dc6373195016e72f0291eb595..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.06264352003733317 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199106_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199106_H_GLOBAL.out deleted file mode 100644 index ea7c7eae79fb710bd0c5a15b5f05eb33425bb250..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.05750240484873454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199106_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199106_M_GLOBAL.out deleted file mode 100644 index 8337b1189153ada1e95d0823a19337e51292e23a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.02002942164738973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199107_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199107_D_GLOBAL.out deleted file mode 100644 index 63c80ffeba2da76539b17f0a3f4362683ea8a94c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.054680832227071124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199107_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199107_H_GLOBAL.out deleted file mode 100644 index 65f4c8eebda1dbe19a87b462b6532a2302e03e7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.07347234884897867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199107_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199107_M_GLOBAL.out deleted file mode 100644 index fe551b48cfba43d29e14fd5d54fc0c823a58b86c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.06830568313598633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199108_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199108_D_GLOBAL.out deleted file mode 100644 index 8a53c77ec4d3b1f6d2eff338e496bbf29185e1bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.03414986928304036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199108_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199108_H_GLOBAL.out deleted file mode 100644 index 457ce0f43c95ffaaf871b34af346232e916c64e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.049960056940714516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199108_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199108_M_GLOBAL.out deleted file mode 100644 index 31e38f95aeb7db56dc4e3209199e116ed215279a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.03419516881306966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199109_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199109_D_GLOBAL.out deleted file mode 100644 index c522301c45b7396f45b26ec0935ba65115411933..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.06450993220011393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199109_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199109_H_GLOBAL.out deleted file mode 100644 index cf74556b18c447f8df4eb5f4013b41a6045079eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.03202259540557861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199109_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199109_M_GLOBAL.out deleted file mode 100644 index c45a81609a257453bef04bf22453185a201d97b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.05307077964146932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199110_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199110_D_GLOBAL.out deleted file mode 100644 index 93195c35944d6db92aae1e827ad9089d24ebadb1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.028583065668741862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199110_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199110_H_GLOBAL.out deleted file mode 100644 index 0d8f13306a5c960d3ceb261f193c17e652d30334..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.05376249154408773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199110_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199110_M_GLOBAL.out deleted file mode 100644 index 4962d8ded2ddb353b320545d2c928931d6bda761..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.058301655451456706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199111_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199111_D_GLOBAL.out deleted file mode 100644 index be5688cef3e9ba82dca75fd92a620c1748217011..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.036365079879760745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199111_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199111_H_GLOBAL.out deleted file mode 100644 index e741534f3aed73cf021181a5e63e2e984dff38eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.04951530694961548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199111_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199111_M_GLOBAL.out deleted file mode 100644 index 9c74eda0c901e85af17302f21246c96703d204c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.07527453502019246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199112_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199112_D_GLOBAL.out deleted file mode 100644 index 3c1e94f7f52c017401fac8f85396a448e6e20d25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.0523946483929952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199112_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199112_H_GLOBAL.out deleted file mode 100644 index 4d0eef210baaadf4923431a5868395593bccaa36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.04041660626729329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199112_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199112_M_GLOBAL.out deleted file mode 100644 index f2da236c8bcc02bfa984d25d1c81b537f809b511..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.03555228312810262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199201_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199201_D_GLOBAL.out deleted file mode 100644 index b2bdede839aa2eaf31c350d11662aa25933ef2af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.027747142314910888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199201_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199201_H_GLOBAL.out deleted file mode 100644 index d341625d178fa820d8ec5b2319c409e00b8c0017..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.053607694307963055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199201_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199201_M_GLOBAL.out deleted file mode 100644 index e703799cc8e4544af1f138d06801231bd4adbfd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.03972050348917643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199202_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199202_D_GLOBAL.out deleted file mode 100644 index 35329cb9d6629141b0d25fb6818578abddf25255..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.056522274017333986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199202_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199202_H_GLOBAL.out deleted file mode 100644 index 5aabdc960cd6117cedffc9396d62b45a2585caf3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.06589033603668212 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199202_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199202_M_GLOBAL.out deleted file mode 100644 index 77e2aed97a497232eacec5417090097039a450aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.03673096497853597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199203_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199203_D_GLOBAL.out deleted file mode 100644 index f04404bbcde2eefd804c70f934313188bf31baca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.052611911296844484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199203_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199203_H_GLOBAL.out deleted file mode 100644 index d1f16e14553b65326680680e348e293d3367ff59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.0368513027826945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199203_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199203_M_GLOBAL.out deleted file mode 100644 index ca67fc2b6422e8526890d24712e2cd4b2a1ccb06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.03999901215235392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199204_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199204_D_GLOBAL.out deleted file mode 100644 index cf153e4ce428cc871e0e28b40f89cce1060d1c26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.027943229675292967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199204_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199204_H_GLOBAL.out deleted file mode 100644 index e396c545d0a1cf60d2a7d40597b37ffde7780142..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.06052518288294474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199204_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199204_M_GLOBAL.out deleted file mode 100644 index 3d0424aed9e33ec6632c9516d7f5b9264b3462a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.04729419549306234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199207_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199207_D_GLOBAL.out deleted file mode 100644 index e9c20443a5ac035b743d737a901daf0b02dad97b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.026305532455444335 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199207_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199207_H_GLOBAL.out deleted file mode 100644 index 219ab636def56b3d2e1354fc0f2fae76b5ed6381..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.04091110626856486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199207_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199207_M_GLOBAL.out deleted file mode 100644 index f88c452626d42542a6e4d9ee414b6a38657178da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.05598148107528687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199208_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199208_D_GLOBAL.out deleted file mode 100644 index 9153100deb7673ec0158c34371a65a3d0c77dbd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.04189131259918213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199208_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199208_H_GLOBAL.out deleted file mode 100644 index 6e8fa7d1ebe39c0aa3b14cd9755103acedf80e58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.06364587545394898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199208_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199208_M_GLOBAL.out deleted file mode 100644 index 9219ed3550a5ae7c04e03e89879b751df4f85d6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.06614511410395305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199209_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199209_D_GLOBAL.out deleted file mode 100644 index acdd5a16558c461031e8a1d65f08fee0afd37893..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.034322357177734374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199209_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199209_H_GLOBAL.out deleted file mode 100644 index 3678a32d86b6947bd05dbc25740e42ef95dcfc42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.0548220952351888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199209_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199209_M_GLOBAL.out deleted file mode 100644 index baec41c7886d708012fd2c032cb95c6d3cd7e7f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.05588675737380981 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199210_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199210_D_GLOBAL.out deleted file mode 100644 index 5ef768ce8cf2813cde9de3ff1411d04429beebfb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.07788918415705363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199210_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199210_H_GLOBAL.out deleted file mode 100644 index cabc9a66445e183bc1ff8bd6366fe42e036a9275..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.031222053368886313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199210_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199210_M_GLOBAL.out deleted file mode 100644 index 0739138fb6dc66937d59a3bae810b54afba22110..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.05102673768997192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199211_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199211_D_GLOBAL.out deleted file mode 100644 index f63890b95bbdbd1e4662926aca03c62d0e1f91d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.05351116259892782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199211_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199211_H_GLOBAL.out deleted file mode 100644 index fbda0d43a115e4f99c6558fc63aa64720d4ad11b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.06315329869588217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199211_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199211_M_GLOBAL.out deleted file mode 100644 index 19650dd3c73d8bf1898729159e50c4d2fd2ebc51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.03355185985565186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199212_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199212_D_GLOBAL.out deleted file mode 100644 index 0c0961923db1e494d14a0fb24f84c3fdf7f90492..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.05966150760650635 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199212_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199212_H_GLOBAL.out deleted file mode 100644 index 7cf54d3db5b06c57ccbe3a77bb79c0632d8f27bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.06891024510065714 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199212_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199212_M_GLOBAL.out deleted file mode 100644 index 04ac60892bd677f20137e75481bd22175245e256..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.03353441953659057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199301_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199301_D_GLOBAL.out deleted file mode 100644 index 9e4b4fcb067a506759350fc6fe82be2bf53b2574..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.06556684970855713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199301_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199301_H_GLOBAL.out deleted file mode 100644 index 0ede9babd544e1f77c58721c3cb102d575a6afb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.03577058712641398 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199301_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199301_M_GLOBAL.out deleted file mode 100644 index 3e8f05700453c71e330189f7871256612bd76886..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.06167933940887451 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199302_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199302_D_GLOBAL.out deleted file mode 100644 index e717c5cc928f53daac52fd83d99473e99a01d4c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.06173481941223145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199302_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199302_H_GLOBAL.out deleted file mode 100644 index e4850635a9bbd364a665a8a49b6300fe7be4c07d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.05501260757446289 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199302_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199302_M_GLOBAL.out deleted file mode 100644 index 7b39a7304dccfa865e94e9f7ec3c75fa793374cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.06506202220916749 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199303_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199303_D_GLOBAL.out deleted file mode 100644 index e03bca6991aca313f9e27eb3f7259426a35be4ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.07111549774805705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199303_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199303_H_GLOBAL.out deleted file mode 100644 index c8179ff39d28e8664b95626399ec2ff8da5248a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.057916438579559325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199303_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199303_M_GLOBAL.out deleted file mode 100644 index 80b0a133a98630c69c5a08155b8b91c414cab8e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.052822812398274736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199304_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199304_D_GLOBAL.out deleted file mode 100644 index cab45120ffed64034a3fb3b7fc70d524d0c9bedd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.07425386508305867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199304_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199304_H_GLOBAL.out deleted file mode 100644 index 8d0573cbf15c9428e9eb0eb733d7573c475800e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.054099126656850176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199304_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199304_M_GLOBAL.out deleted file mode 100644 index 9a5bb5d937d75a50f636595a608472806035150a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.07226971785227458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199305_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199305_D_GLOBAL.out deleted file mode 100644 index 67213a9e6f45a0579e6d7ecb5e3baa90cac8ebd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.05227445761362712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199305_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199305_H_GLOBAL.out deleted file mode 100644 index 1ef4c15f64cdf17f0fb371ff38608445a070a92f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.06644552946090698 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199305_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199305_M_GLOBAL.out deleted file mode 100644 index dd79b22ea506d200b0863179cd2873b65cc5ee56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.032437459627787275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199306_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199306_D_GLOBAL.out deleted file mode 100644 index e2cb6bc312cf15ac3a95dd8dafe0880f1dcba041..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.058498899141947426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199306_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199306_H_GLOBAL.out deleted file mode 100644 index 5111050d6dab3d92f58f656e8ceee50178fb70af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.07013929684956868 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199306_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199306_M_GLOBAL.out deleted file mode 100644 index b0cb313636be7059283b5496757393225f4926b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.06285486221313477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199307_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199307_D_GLOBAL.out deleted file mode 100644 index d41206b9c8a9ab451797b2196c277206540216ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.03804072141647339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199307_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199307_H_GLOBAL.out deleted file mode 100644 index 43cf1702724580b9324da470cd80f081552c1e15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.05910708506902059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199307_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199307_M_GLOBAL.out deleted file mode 100644 index a2cd8e8afbf5d40379e2a5fcf06da944d9ec39b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.05889321168263753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199308_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199308_D_GLOBAL.out deleted file mode 100644 index e72b2d365de0f9f63f61d73515e81d9aa458b776..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.07087761163711548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199308_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199308_H_GLOBAL.out deleted file mode 100644 index 537489ee671dc6f614ba8ee57b1533f1dcf75399..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.06842954158782959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199308_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199308_M_GLOBAL.out deleted file mode 100644 index 24f6a246eb83c12f6baac1f5ee925e8695c34743..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.05552420616149902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199309_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199309_D_GLOBAL.out deleted file mode 100644 index b3f8568941cb983c53564c209c816c2f85ac9d42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.07089786529541016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199309_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199309_H_GLOBAL.out deleted file mode 100644 index e84d88990fd735d64e352a7325d9aab823bc15dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.056741758187611895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199309_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199309_M_GLOBAL.out deleted file mode 100644 index feb8c4a9ee04f96c5020fb569a1d158a100d9f45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.05162992874781291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199310_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199310_D_GLOBAL.out deleted file mode 100644 index 7237c8ffe0a55306a577974a9ef618283c219d09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.02917483647664388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199310_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199310_H_GLOBAL.out deleted file mode 100644 index 677f63d465839b25e4554c22a6f0a78719f9ed1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.05355042219161987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199310_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199310_M_GLOBAL.out deleted file mode 100644 index 2c6bfc9272ccebf9d0f0cfccf1c0904e6732cd78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.06419572830200196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199311_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199311_D_GLOBAL.out deleted file mode 100644 index f15300f142400a32e7181d1cc2992d299101760a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.03856856028238932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199311_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199311_H_GLOBAL.out deleted file mode 100644 index f23a63e41d9b5764fb043c538ca76d46d1bab07c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.031961150964101154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199311_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199311_M_GLOBAL.out deleted file mode 100644 index bc01796df3b8c5d51f33d6602a98ea9e8855ad20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.037974071502685544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199312_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199312_D_GLOBAL.out deleted file mode 100644 index e1193cad152813a830d6e4222c47ec8d6ee4c5b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.06320666869481405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199312_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199312_H_GLOBAL.out deleted file mode 100644 index 3094811ef19fc5c44b56e44c81060e8c3d286b70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.048430379231770834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199312_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199312_M_GLOBAL.out deleted file mode 100644 index ff3336ccc19a22636430732bd086ed6607eeb1a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.0574282964070638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199401_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199401_D_GLOBAL.out deleted file mode 100644 index 22c45e0225d56096332f722dfe910bb9947cd74f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.04559100866317749 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199401_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199401_H_GLOBAL.out deleted file mode 100644 index b70abf038bf6432862d9af926eab2df7b1c5971b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.07193159659703573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199401_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199401_M_GLOBAL.out deleted file mode 100644 index 7d6b59c564157b2753226c8e8a639e0794a6672a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.05425012509028117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199402_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199402_D_GLOBAL.out deleted file mode 100644 index 1242d16a4f2bcac4e55b902baf3b55ae2b84a590..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.03173162937164307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199402_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199402_H_GLOBAL.out deleted file mode 100644 index 21972a2a019e95ae43ea002a84c16f35dcf5c934..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.07390528917312622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199402_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199402_M_GLOBAL.out deleted file mode 100644 index b80b1d9c50be61e4551a4e55b39f607547f51ff1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.06988438367843627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199403_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199403_D_GLOBAL.out deleted file mode 100644 index 63c73d0ee11f3023e87b40f1978be2ccce90ac25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.04418423573176066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199403_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199403_H_GLOBAL.out deleted file mode 100644 index bb9077bd1b3f5483efda3c2dcceff20b593e2a93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.07282467683156331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199403_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199403_M_GLOBAL.out deleted file mode 100644 index 16ea88f1be784aef76ffcaf513882682098d0d12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.05076544682184855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199404_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199404_D_GLOBAL.out deleted file mode 100644 index 36b58e179eeac39ec7803cee0b5bfce853132e35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.06095487674077352 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199404_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199404_H_GLOBAL.out deleted file mode 100644 index 10b4d7aa27cc68117b020057aa81c6f2b26a9b75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.07843833764394124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199404_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199404_M_GLOBAL.out deleted file mode 100644 index a7e89132e17c6a7887794bb6000e473a5b73baf5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.03902010122934977 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199405_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199405_D_GLOBAL.out deleted file mode 100644 index 8d84dc80a81b8e40e6afc2d9f51a346f1c0ceb40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.06812174320220947 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199405_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199405_H_GLOBAL.out deleted file mode 100644 index 86fa408af989d2b1ea10eba716d802e798515311..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.05682168404261271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199405_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199405_M_GLOBAL.out deleted file mode 100644 index 28e77b7466fb3967c4a404fee0f5353808d5c35e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.05997104247411092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199406_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199406_D_GLOBAL.out deleted file mode 100644 index 9c40528528efc3b8be791438f2002a7bccafddf4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.06218882401784261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199406_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199406_H_GLOBAL.out deleted file mode 100644 index 0dfa9a38491b8c352db172eb85ba49af37d4f178..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.06424557367960612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199406_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199406_M_GLOBAL.out deleted file mode 100644 index 2acb217b0d55dec83377d3265cc7b0b556b89648..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.05941896041234334 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199407_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199407_D_GLOBAL.out deleted file mode 100644 index 92b0e348cc92785125bcb4bca48bef609674b3f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.033661011854807535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199407_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199407_H_GLOBAL.out deleted file mode 100644 index adf3932217f37c177267ed3cd044fdddaafbd007..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.05691035588582357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199407_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199407_M_GLOBAL.out deleted file mode 100644 index e794a8d69078d2144bcbefc13377c5261643e561..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.04275823434193929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199408_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199408_D_GLOBAL.out deleted file mode 100644 index b99af8c1ab93e276d238bfab7a4723bda97d7514..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.07071210145950317 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199408_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199408_H_GLOBAL.out deleted file mode 100644 index 6032a5a063327f66ac2e218a386facbf7835d4fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.07770474751790364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199408_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199408_M_GLOBAL.out deleted file mode 100644 index c3c532f1648852f0b8fa058001943444f295ac25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.0676654060681661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199409_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199409_D_GLOBAL.out deleted file mode 100644 index 274220d2baddd07d05b8385ebb7f31523a1351c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.07014768520991008 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199409_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199409_H_GLOBAL.out deleted file mode 100644 index 43f1565018ba4bdcbf2ada2c51f4bf02a1a54dae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.058613113562266034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199409_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199409_M_GLOBAL.out deleted file mode 100644 index 85ee2d1393f67e2d4c24263637dd60bb33663492..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.06895859241485595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199410_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199410_D_GLOBAL.out deleted file mode 100644 index 9d1f7d106df14e42ef5264218ed84d32422ea976..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.04211188952128093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199410_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199410_H_GLOBAL.out deleted file mode 100644 index fcc0bdac501f6069a02d053cefd908dc71640544..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.039677282174428306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199410_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199410_M_GLOBAL.out deleted file mode 100644 index 1c5616ccd63b89780f41d239f83d4eac03e0a7b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.06199484666188558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199411_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199411_D_GLOBAL.out deleted file mode 100644 index 5eeca671de57cc74eefac05cfd4ce9d039783b0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.059338617324829104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199411_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199411_H_GLOBAL.out deleted file mode 100644 index 1f5c7b081b7b8550647880a5cbd81fe577886946..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.02769205967585246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199411_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199411_M_GLOBAL.out deleted file mode 100644 index bf5b4d4d2678233b47cf3d227c3e88f39b8a549a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.06135137478510539 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199412_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199412_D_GLOBAL.out deleted file mode 100644 index 5d805524b08cd573a5f61229fd4d7302b07ac017..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.034048187732696536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199412_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199412_H_GLOBAL.out deleted file mode 100644 index 25b45aca5f2e60740cd90a426786eec036a9f609..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.07780124346415201 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199412_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199412_M_GLOBAL.out deleted file mode 100644 index 5b3467cf7885cbc900f757aaa77f014f6ecebc95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.04270288546880086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199501_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199501_D_GLOBAL.out deleted file mode 100644 index 3b02cac2ece4e3016d110de9a1ea2c938b7e493a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.038514578342437746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199501_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199501_H_GLOBAL.out deleted file mode 100644 index dd29806f514de931f612aabad1a5088679eaf0e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.06900651454925537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199501_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199501_M_GLOBAL.out deleted file mode 100644 index 7a40173a6c1f33a85cb9531bec91bf0ccb4ce8c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.06891403992970785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199502_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199502_D_GLOBAL.out deleted file mode 100644 index ccd1074c96dba7e66ca5e164c42bac8eea407b66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.03925393025080363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199502_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199502_H_GLOBAL.out deleted file mode 100644 index cc478b146dfa52a561d6506eb61c477e2f3586bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.07320330540339152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199502_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199502_M_GLOBAL.out deleted file mode 100644 index 3ad4e552b3fbb15704b4336eae3b052715cab76d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.062323002020517985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199503_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199503_D_GLOBAL.out deleted file mode 100644 index f1a0ea15e995022931d6d3b98e2f8dd6426040b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.03562858104705811 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199503_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199503_H_GLOBAL.out deleted file mode 100644 index aef8fc50813a8d86eae44186e20582d6d065b705..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.0777509331703186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199503_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199503_M_GLOBAL.out deleted file mode 100644 index 54795cd4b4a07dda36d3c51d0f80faca57c7d508..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.03853299617767334 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199504_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199504_D_GLOBAL.out deleted file mode 100644 index f7b540b4edc56c2e7a3961db08e34f5315c2b085..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.06494933366775513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199504_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199504_H_GLOBAL.out deleted file mode 100644 index 29c5810167624a598f6e2e8cc9c2ea514a3d183e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.05968941450119018 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199504_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199504_M_GLOBAL.out deleted file mode 100644 index 8bd6565ecc52a2d1925e2e22c7913ebee5657efe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.06846932570139568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199505_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199505_D_GLOBAL.out deleted file mode 100644 index 701517ea388c864165cdf6f295ca8136aa6d7240..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.03877952496210734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199505_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199505_H_GLOBAL.out deleted file mode 100644 index d6d95a292e6c1c0915914e1feccfa7329a51f638..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.06753313541412354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199505_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199505_M_GLOBAL.out deleted file mode 100644 index c8996a74210b3ed6a495f3689d0b25e25f89dcea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.07353512048721314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199506_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199506_D_GLOBAL.out deleted file mode 100644 index 0569982326a6eebdfe533c5d2ffaac07bcf083f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.06782495578130086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199506_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199506_H_GLOBAL.out deleted file mode 100644 index 7665a9b188e80bf486f59912ece0e7a570c00370..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.06189509232838949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199506_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199506_M_GLOBAL.out deleted file mode 100644 index 5473098a116027db908b9e089e4d84d542be11ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.04305562178293864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199507_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199507_D_GLOBAL.out deleted file mode 100644 index 47047be283d7908cca7d3ad0de2887fdb1a51a15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.07107919851938883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199507_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199507_H_GLOBAL.out deleted file mode 100644 index 71db4c90e187037259d630f10bed0197ee8f2c63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.06806910832722982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199507_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199507_M_GLOBAL.out deleted file mode 100644 index 26e1837b3bbcad8b840c571feff4196329c6dbac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.06630975802739461 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199508_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199508_D_GLOBAL.out deleted file mode 100644 index b7e74f838534dc93b2baa5c1c6184eab409be114..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.06412510474522909 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199508_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199508_H_GLOBAL.out deleted file mode 100644 index bf5991f8753ea26511728e9703be145800aeb97b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.05943464438120524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199508_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199508_M_GLOBAL.out deleted file mode 100644 index 2e43b1d0e6f22694999dd9859e8197a71ecd4bab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.06490196784337361 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199509_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199509_D_GLOBAL.out deleted file mode 100644 index 7f8e2d8da60b6900da083868af05f3231ce24265..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.06890174945195517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199509_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199509_H_GLOBAL.out deleted file mode 100644 index eb8457b310c966166594a129ca531d9eb5d718c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.055155706405639646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199509_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199509_M_GLOBAL.out deleted file mode 100644 index ddb51e6f06bb8c428e14d2a422859c31641f1a20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.052518630027771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199510_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199510_D_GLOBAL.out deleted file mode 100644 index ba6d8f903299e50d40ca6a5f5bf807aa8a1d54ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.030692013104756673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199510_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199510_H_GLOBAL.out deleted file mode 100644 index 1624e59e88b8cd568a63b97c4eb62a8a692db4d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.06812275648117065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199510_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199510_M_GLOBAL.out deleted file mode 100644 index eb14e0cd3649607fb3cec0f79e8a03dc6c4d16b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.033481093247731526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199511_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199511_D_GLOBAL.out deleted file mode 100644 index 60608cc3be95a482cce666340e8f6e67ae5d7d20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.06000752449035644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199511_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199511_H_GLOBAL.out deleted file mode 100644 index c276a29322890747ac892d81692559b0e5174305..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.07575531005859375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199511_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199511_M_GLOBAL.out deleted file mode 100644 index 17ca2d8ef591a3663c9269e7d49a0b1f82d16033..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.04310429096221924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199512_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199512_D_GLOBAL.out deleted file mode 100644 index 3d880057adb54915d6c473da0590929529ec098d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.06383840640385946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199512_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199512_H_GLOBAL.out deleted file mode 100644 index 472b99b9ea132774bb38b56a4abfc79f01f67bd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.06782106161117554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199512_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199512_M_GLOBAL.out deleted file mode 100644 index 713dac1950fc5511b2fcc2869847408b1cd8bd52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.07003987232844035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199601_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199601_D_GLOBAL.out deleted file mode 100644 index ff209ec0ea25f25c7eb3308cfc0a91ad517b408d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.06502342224121094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199601_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199601_H_GLOBAL.out deleted file mode 100644 index 811e8b343a2a103d1377497856d52f54da663c59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.05544634262720744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199601_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199601_M_GLOBAL.out deleted file mode 100644 index 5492b3c7605e5311445bb3df7f454aaf256d5f9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.07972627878189087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199602_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199602_D_GLOBAL.out deleted file mode 100644 index 854c4a9b10f5a244b648679309887d2687676e97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.0609505295753479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199602_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199602_H_GLOBAL.out deleted file mode 100644 index dc96ea333c91d73f709962c0191eebd0008d239c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.06779742240905762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199602_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199602_M_GLOBAL.out deleted file mode 100644 index c9042698e56eca2a6e4a3e136f901b558940bb2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.06982279618581136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199603_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199603_D_GLOBAL.out deleted file mode 100644 index ac60e76ca9bcbad67628307f3f9eaf7d22667e2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.07437687714894613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199603_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199603_H_GLOBAL.out deleted file mode 100644 index 2a0a8a6fddf56a7f1e72a42b05a9741bd0aff8ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.06152890125910441 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199603_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199603_M_GLOBAL.out deleted file mode 100644 index da336232a5a9fc035e30587e9cc7d2a7f8dbeb98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.05771951675415039 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199604_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199604_D_GLOBAL.out deleted file mode 100644 index 46d05c8862ccb6d5362edddf182609ec9437b563..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.044154779116312666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199604_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199604_H_GLOBAL.out deleted file mode 100644 index cc1846a3795a50e8541bb6a6c3430718c6e3295b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.04945164918899536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199604_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199604_M_GLOBAL.out deleted file mode 100644 index 834dae221c9553318afbb537529b338627b0bd9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.0643469214439392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199605_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199605_D_GLOBAL.out deleted file mode 100644 index 45c7f2385b31882c8156ea8fd8b77a927783cafa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.06496376991271972 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199605_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199605_H_GLOBAL.out deleted file mode 100644 index 029664cb9d9b1396f93df158407861591b9030f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.06704327662785849 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199605_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199605_M_GLOBAL.out deleted file mode 100644 index f6490d8f0bc7c6ef116226ddca5552f8364c0e3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.06551269292831421 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199606_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199606_D_GLOBAL.out deleted file mode 100644 index 0332228ed56f9f76428062437a4f4fb680525bfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.04586111307144165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199606_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199606_H_GLOBAL.out deleted file mode 100644 index a977fb2954651a71e33aa1cbe3501fbc791ab8f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.07253400882085165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199606_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199606_M_GLOBAL.out deleted file mode 100644 index eed59b9ad8b18a16e6f1eda54ce30a2264b0d376..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.045800089836120605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199607_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199607_D_GLOBAL.out deleted file mode 100644 index af60f5e8706ba593dac6401a79f13e1d049b2733..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.055360960960388186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199607_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199607_H_GLOBAL.out deleted file mode 100644 index 38c67e4342228db8b5030f3d78baadf46450d07a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.06115764776865641 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199607_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199607_M_GLOBAL.out deleted file mode 100644 index 7c292d8b71b0409d3da3a62f9289225918ef7c77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.04873799085617066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199608_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199608_D_GLOBAL.out deleted file mode 100644 index d95a914f0118cb37749308b82d0b036185368894..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.03460561037063599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199608_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199608_H_GLOBAL.out deleted file mode 100644 index b1143c522d629872431e5982279625f72686b84d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.047417616844177245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199608_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199608_M_GLOBAL.out deleted file mode 100644 index 0d35896a76f729ce14c764cbaf5302f7fd87c1ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.04681899150212606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199609_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199609_D_GLOBAL.out deleted file mode 100644 index c977af9e39b16067840a5c701787698d4c633e95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.06999026536941529 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199609_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199609_H_GLOBAL.out deleted file mode 100644 index b85ba7797fa72ed5e7154172ba1dd3811fc225fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.07129638989766439 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199609_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199609_M_GLOBAL.out deleted file mode 100644 index 9ec02322793272d86af190960c309581e55f3a1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.05051613251368205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199610_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199610_D_GLOBAL.out deleted file mode 100644 index 3f7ca4b88f4f9ebdfb122812e23287176d8b7743..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.05755597750345866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199610_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199610_H_GLOBAL.out deleted file mode 100644 index a25d40b9060905d204d7cd13b4bcb0bec2782d27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.06815394957860312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199610_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199610_M_GLOBAL.out deleted file mode 100644 index 4711fccbb47842601c8a77879d9b96ce32f2a643..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.02857218583424886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199611_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199611_D_GLOBAL.out deleted file mode 100644 index 2e8c901defd549269e3580b3e8be259798963dfc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.06954638163248698 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199611_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199611_H_GLOBAL.out deleted file mode 100644 index aa6941eb432387ae4a58ffe95af280c876208a4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.07921175161997478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199611_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199611_M_GLOBAL.out deleted file mode 100644 index 0e6cfc5a69e5b4fb5852f52340fe111a0d5f1c4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.06878715356191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199612_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199612_D_GLOBAL.out deleted file mode 100644 index 77ce05813357f1962619949177af63303d4f8201..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.06921842892964682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199612_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199612_H_GLOBAL.out deleted file mode 100644 index 8021c88d0a7b04635a6112b4eb7e15b8174f244d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.029196453094482423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199612_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199612_M_GLOBAL.out deleted file mode 100644 index 9a7172e65b17fa6c3c8dbdddd66d17abe142c393..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.06162046591440837 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199701_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199701_D_GLOBAL.out deleted file mode 100644 index 36b03d76f4ec645e15ea17ff5005e4fe9985f3c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.04686669111251831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199701_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199701_H_GLOBAL.out deleted file mode 100644 index 62ca95a527f9acada6f7d0d44506bd2cffc029cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.03436987400054932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199701_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199701_M_GLOBAL.out deleted file mode 100644 index aec4cb200c90842a3323589e2b746816a4f08799..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.05058250824610392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199702_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199702_D_GLOBAL.out deleted file mode 100644 index fe4f72b7ee725ee5b8e762c32dc0cc4c87768544..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.05706250270207723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199702_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199702_H_GLOBAL.out deleted file mode 100644 index d371301040edae7818d871a5cea854b90e7cfc1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.06506654818852743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199702_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199702_M_GLOBAL.out deleted file mode 100644 index 257ebac1a29d18b3e4064f2d84c6ed42fa7cf37f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.06446787118911743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199703_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199703_D_GLOBAL.out deleted file mode 100644 index 5018cd9d04e17b23a2e3cfd7fc0bc6f409290104..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.057713651657104494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199703_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199703_H_GLOBAL.out deleted file mode 100644 index 836f0ad13f15ae4b172735fce29dbc1f6abd267c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.06871878306070964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199703_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199703_M_GLOBAL.out deleted file mode 100644 index ad3d80fc0221fa97a577d834849be87ab038a1d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.025169686476389567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199704_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199704_D_GLOBAL.out deleted file mode 100644 index 39ca5e60636ee83c2988334bdae1954fd698b29a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.07365973790486653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199704_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199704_H_GLOBAL.out deleted file mode 100644 index 500d77849a5a6c903f49dd1af7bba2b8b1e28ac9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.0645674228668213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199704_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199704_M_GLOBAL.out deleted file mode 100644 index 56b9aeedfa8868b6b21d571099073bcfef336d30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.06990506251653035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199705_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199705_D_GLOBAL.out deleted file mode 100644 index 3de2af66b1e7e4a55d621f6fda9f3e9bff427f4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.04308627049128214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199705_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199705_H_GLOBAL.out deleted file mode 100644 index aeba49e6a113d6c2560de8f5e6faec9bf1533ef8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.06011858383814494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199705_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199705_M_GLOBAL.out deleted file mode 100644 index 45c940f3d9801dd0169edee74804529a4a4f05aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.06086874008178711 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199706_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199706_D_GLOBAL.out deleted file mode 100644 index fab38fbb51d180cf2a76ea96617381b6ebb8eb07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.0494016965230306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199706_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199706_H_GLOBAL.out deleted file mode 100644 index 082b8f3f411e793402f96a7ddc4780cb52e6c758..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.07052642504374186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199706_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199706_M_GLOBAL.out deleted file mode 100644 index 9a0c28a405f3c55b8efbe163c878b808d46ca207..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.06765285730361939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199707_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199707_D_GLOBAL.out deleted file mode 100644 index d29167b74f8e60bea8424b4715ab1c4d22b31843..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.0639604131380717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199707_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199707_H_GLOBAL.out deleted file mode 100644 index 8a0af78413b460eea1cc905d35ae47d77d618fcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.02465227444966634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199707_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199707_M_GLOBAL.out deleted file mode 100644 index c0d75173ed101c47ea0d7e73ebacd7d1e9e056f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.03718807697296143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199708_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199708_D_GLOBAL.out deleted file mode 100644 index 5321ef617d449972f6c05c45dde699f3c4fe85ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.06615277131398518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199708_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199708_H_GLOBAL.out deleted file mode 100644 index 8c7c1d9b78025cf7ce8ce499d34774dcf2f3e523..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.07134124040603637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199708_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199708_M_GLOBAL.out deleted file mode 100644 index 85bf9945d0bc093e8af8bf087e2c0f221a8965ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.07363407611846924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199709_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199709_D_GLOBAL.out deleted file mode 100644 index 1640fafb19c7dc9356280bb2fd37113cc9370e66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.0493692954381307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199709_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199709_H_GLOBAL.out deleted file mode 100644 index c3e54f59bd744e5e0517b1fecc9727ba4d539e58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.05097806453704834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199709_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199709_M_GLOBAL.out deleted file mode 100644 index d25f2acb17d0e2bb9f73892fc750999dbf8e12c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.06485358476638795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199710_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199710_D_GLOBAL.out deleted file mode 100644 index 0eb4a8f2251d26c0a0b45b8437b8218488a7ac8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.06459499994913737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199710_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199710_H_GLOBAL.out deleted file mode 100644 index 6fd1fcdd8a64bf93d0e1aa14104ebe44e6e2ca27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.05406519571940104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199710_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199710_M_GLOBAL.out deleted file mode 100644 index ce2a2074233d45d37c82f04979d56e6b6fd5d70c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.04382936954498291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199711_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199711_D_GLOBAL.out deleted file mode 100644 index 4f9cbf7a4e34822d37e1cc0a577c0c944708f817..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.06414719422658284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199711_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199711_H_GLOBAL.out deleted file mode 100644 index b2430792b7b871fd737f9b58a18603f782ded153..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.06691803137461344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199711_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199711_M_GLOBAL.out deleted file mode 100644 index 4d51ee557b71f627f45a0e6489a71158fae97e07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.06837935447692871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199712_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199712_D_GLOBAL.out deleted file mode 100644 index f49bd9ff38870e177d4ec9df06cbe25bce9ff1d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.0650930643081665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199712_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199712_H_GLOBAL.out deleted file mode 100644 index 50adf85386436be9bb094088d32ab7aa7c7432b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.056391378243764244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199712_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199712_M_GLOBAL.out deleted file mode 100644 index 3449f86e41f06ab753ef94fdbc7720eb08abd2aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.043620912233988444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199801_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199801_D_GLOBAL.out deleted file mode 100644 index 53879c42debb95b581f3cacb718b35a33f55a32a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.05433024168014526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199801_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199801_H_GLOBAL.out deleted file mode 100644 index 9d05a6085078227f7d84221f800505ca9a15d2e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.052189000447591144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199801_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199801_M_GLOBAL.out deleted file mode 100644 index ad20fc520c86b0263752926c8ae6097214b0e897..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.0487480362256368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199802_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199802_D_GLOBAL.out deleted file mode 100644 index eacb111efeba5aa46a62e7df8f42587d3282c6b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.07728988329569499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199802_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199802_H_GLOBAL.out deleted file mode 100644 index acada39507191581dbe0c9accd2f8ded92a682aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.0313955823580424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199802_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199802_M_GLOBAL.out deleted file mode 100644 index 24e7973520b6dd655cf27127a24867360e9feaad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.07648643652598063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199803_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199803_D_GLOBAL.out deleted file mode 100644 index 9fd283db550320afef26f6aba3452089f115b8a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.05547117789586385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199803_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199803_H_GLOBAL.out deleted file mode 100644 index fb3e1d9b72c853c365ac3de1a195dead2a0cc2c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.06445197264353435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199803_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199803_M_GLOBAL.out deleted file mode 100644 index 9c4310ed9fbc1d83e3214cc08c850d21286dacf1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.0452933669090271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199804_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199804_D_GLOBAL.out deleted file mode 100644 index 13edf6840a3ba3e41db64718e6d818a98c6d01c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.039046716690063474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199804_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199804_H_GLOBAL.out deleted file mode 100644 index f2a832354c04ffe1bd423c8eca63b1de9e4e5a94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.06897882223129273 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199804_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199804_M_GLOBAL.out deleted file mode 100644 index e31325bdf6813c4c0e73529245c3c68a4534f1d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.03154741923014323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199805_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199805_D_GLOBAL.out deleted file mode 100644 index 56002cfe22932e07c702f56e48a136653a5fc4eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.060215191046396895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199805_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199805_H_GLOBAL.out deleted file mode 100644 index 22ab0bfa8df27e94d92e176b56be418546be375d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.06438339153925578 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199805_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199805_M_GLOBAL.out deleted file mode 100644 index 93ad764d14e5f4f3ebe0b2711459f4f4aa3387ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.05534857114156087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199806_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199806_D_GLOBAL.out deleted file mode 100644 index 795abf75bfb94e94ee9a94a375c05291d768287b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.07607833941777548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199806_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199806_H_GLOBAL.out deleted file mode 100644 index 607b97f461a1f74d43f74c7049f8292fce050dc5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.06104074319203694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199806_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199806_M_GLOBAL.out deleted file mode 100644 index b095cfcc203d0228003773f5e2a21945ea1e0895..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.04491214354832967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199807_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199807_D_GLOBAL.out deleted file mode 100644 index 350db11e0104c0b6a7d0b323f8fc58a7da9003ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.05886724789937337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199807_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199807_H_GLOBAL.out deleted file mode 100644 index e601104e6f59b693da24624e7578cedf8f38f181..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.07230757474899292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199807_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199807_M_GLOBAL.out deleted file mode 100644 index 972a15cf29a85c9e5f305d82f6ebc1188f5560cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.04608827034632365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199808_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199808_D_GLOBAL.out deleted file mode 100644 index 9509e87de6a909cf3f28afbd71c779b16fe579cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.07652213970820108 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199808_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199808_H_GLOBAL.out deleted file mode 100644 index 16eed4b22acdab0a276ea378bfa7105056f0c22d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.053992422421773274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199808_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199808_M_GLOBAL.out deleted file mode 100644 index 9bc6743e788aea95cc63bd6fa8d265059730690c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.056052112579345705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199809_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199809_D_GLOBAL.out deleted file mode 100644 index 91e2785b542650387f80dc5e8b0d1c32e14721ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.0379585862159729 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199809_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199809_H_GLOBAL.out deleted file mode 100644 index 71a543a96a5af28fb1f9c93dc295927356d18d1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.059407516320546465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199809_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199809_M_GLOBAL.out deleted file mode 100644 index ce221205a61043769896665a9311ff2f9174fcf6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.06931541760762533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199810_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199810_D_GLOBAL.out deleted file mode 100644 index 3367576e2725c3f50a64d0dcb4ef2233c5161bfc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.04850437641143799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199810_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199810_H_GLOBAL.out deleted file mode 100644 index e62798c49f0a6b17c2c593c1671da1b71da7c011..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.0378126581509908 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199810_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199810_M_GLOBAL.out deleted file mode 100644 index cb04e3347444bfe8522769f2e79cc6910dc5b9c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.07080623308817545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199811_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199811_D_GLOBAL.out deleted file mode 100644 index 1e31484c2136ff2fedb0892e79bcd804021bb66c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.06743801434834798 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199811_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199811_H_GLOBAL.out deleted file mode 100644 index e62bc850652dadae807309021386564a4ca8f17b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.06249451239903768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199811_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199811_M_GLOBAL.out deleted file mode 100644 index fa154a46025c3e10d16b004e17e8926d074ae3d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.062124915917714435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199812_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199812_D_GLOBAL.out deleted file mode 100644 index 08022319d33399e3c096284681cdc3ec4b313dcf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.05152135292689006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199812_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199812_H_GLOBAL.out deleted file mode 100644 index 1e572c879145188b8a244813edef8088ba206b5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.06628714005152385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199812_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199812_M_GLOBAL.out deleted file mode 100644 index cd1a56bd0bd9ef37cebafb36a2db7e8a656a6864..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.056189560890197755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199901_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199901_D_GLOBAL.out deleted file mode 100644 index bf85fba6201e205bbfac1281d7058a01fe9ce152..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.04556519985198974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199901_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199901_H_GLOBAL.out deleted file mode 100644 index 018feba12af3a425fa10b835d4abf92394215bd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.056887892882029216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199901_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199901_M_GLOBAL.out deleted file mode 100644 index 2b6bea28090f5939577e62b90b14c0b348cf048c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.06265931526819865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199902_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199902_D_GLOBAL.out deleted file mode 100644 index caddc2f2515df5611b4f2889e09df2e4f561268a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.06041002670923869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199902_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199902_H_GLOBAL.out deleted file mode 100644 index 045017aea0e05dfa885ab41e343d1e040b772c51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.055347740650177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199902_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199902_M_GLOBAL.out deleted file mode 100644 index e2e6680a0e0bda94c828dbd5d9161f7d1d27b265..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.03474744955698649 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199903_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199903_D_GLOBAL.out deleted file mode 100644 index ae1ba29976d9868bc52dcae69320aed6d6c4940a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.07034039497375488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199903_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199903_H_GLOBAL.out deleted file mode 100644 index 86c43fc481e465cb1674322774876ab0d229f8d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.06741337776184082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199903_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199903_M_GLOBAL.out deleted file mode 100644 index fdbac865754ded2b1ddaa2fe1e0faa6898f9f462..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.04255392948786418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199904_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199904_D_GLOBAL.out deleted file mode 100644 index 3964411c1e3fb0235fcb7502395cc7f7aa170a3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.0791534145673116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199904_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199904_H_GLOBAL.out deleted file mode 100644 index 4c455a2287fd910dc7eb6013e619294caaf3c76b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.07603232065836589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199904_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199904_M_GLOBAL.out deleted file mode 100644 index d88d0a14479371f5527d8ee112ec763d625c0087..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.04471942186355591 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199905_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199905_D_GLOBAL.out deleted file mode 100644 index 7def1a3fc7ad986cf167ac46c00da98874229bf3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.04162521759668986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199905_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199905_H_GLOBAL.out deleted file mode 100644 index ba1a556e01b74e7843847cfcfafd4011ceba39ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.055356740951538086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199905_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199905_M_GLOBAL.out deleted file mode 100644 index 6585e0603b21c9595b106da0986b6a28397225b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.031594479084014894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199906_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199906_D_GLOBAL.out deleted file mode 100644 index b29337799cea775c908f82cffa3be62cb8da3c4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.053016475836435956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199906_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199906_H_GLOBAL.out deleted file mode 100644 index 8e3cbff98faa9be3aeaaceb762b58e7ee745c348..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.06928062438964844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199906_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199906_M_GLOBAL.out deleted file mode 100644 index 1a038fe0636145f31c7f4f8d3d061eda35aa5985..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.04840755065282186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199907_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199907_D_GLOBAL.out deleted file mode 100644 index dacfff48c27468b6b92606f3b68604c94a826a58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.058106462160746254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199907_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199907_H_GLOBAL.out deleted file mode 100644 index 8c7750da2ad1b4d50aebe17ab7de8dc721772310..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.04267328977584839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199907_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199907_M_GLOBAL.out deleted file mode 100644 index cd015b8d282db8f7fd30aaaafb32f643848246a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.0694642464319865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199908_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199908_D_GLOBAL.out deleted file mode 100644 index da9a99e0285a8a5a0f43ccbab58f8e49504bf98f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.07507284482320149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199908_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199908_H_GLOBAL.out deleted file mode 100644 index eaa0b62393018fb1cfe942dcb0c6dd45d48e26ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.07938778400421143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199908_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199908_M_GLOBAL.out deleted file mode 100644 index 1793e2a8b28b591cde81a04452954deb770e84fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.0674428939819336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199909_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199909_D_GLOBAL.out deleted file mode 100644 index 8be76d51904b536511e1a521cb05f7871c192bb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.0668864647547404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199909_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199909_H_GLOBAL.out deleted file mode 100644 index 447307f74f2f5345434c7b238c21c3781a48cc98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.06870160102844239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199909_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199909_M_GLOBAL.out deleted file mode 100644 index c8900f960bff2aee31f9653696f976a4def108ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.05665202140808105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199910_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199910_D_GLOBAL.out deleted file mode 100644 index fed2adc82a8e46b85edce9f150a10731d89a58c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.06822789907455444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199910_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199910_H_GLOBAL.out deleted file mode 100644 index 26579297487b8722847e5a4440e43d9e6786478f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.06808792352676392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199910_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199910_M_GLOBAL.out deleted file mode 100644 index bef5882b7ec0aaffb0a566b8a5e7b289246b4be3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.05927191178003947 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199911_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199911_D_GLOBAL.out deleted file mode 100644 index 22d4224198657a025d173ff139f39697940983d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.04483937025070191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199911_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199911_H_GLOBAL.out deleted file mode 100644 index 9dc29d10f0997cb4172ff9c045b31359753f1c02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.07243380546569825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199911_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199911_M_GLOBAL.out deleted file mode 100644 index 5f14c8089e4623f8c748b14b4fab883cb1b03763..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.0660640279452006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199912_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199912_D_GLOBAL.out deleted file mode 100644 index 6dcd0e1d34c701d317fa0628f96fd314a2d50efe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.06690541903177898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199912_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199912_H_GLOBAL.out deleted file mode 100644 index 219c05dfb5ebcd8e80013f57e8a9a97d224959ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.033111266295115155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_199912_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_199912_M_GLOBAL.out deleted file mode 100644 index 9a8cea86e0e5f37d436181576b9ffff98471bdbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_199912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.07084222237269083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200001_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200001_D_GLOBAL.out deleted file mode 100644 index 680b81555c6067deb5a163e4b66732c92df3f6c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.05717639525731404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200001_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200001_H_GLOBAL.out deleted file mode 100644 index eea1ee1f2cd7a2164ebe3f5d0170973dc45908e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.05562493403752645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200001_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200001_M_GLOBAL.out deleted file mode 100644 index 6f4fc555847b79f205896ea031b5b90ea444c0e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.06602521340052286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200002_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200002_D_GLOBAL.out deleted file mode 100644 index c9d17a13fbb445b3aa865528604e9f06feec37e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.03430223862330119 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200002_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200002_H_GLOBAL.out deleted file mode 100644 index 7f52a1f21fb2b2bd55acbf5e3dd18b87a4c773fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.033830591042836505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200002_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200002_M_GLOBAL.out deleted file mode 100644 index 659f789412f69b1058d6292c88d5c2c9d4608c4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.06403440634409586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200003_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200003_D_GLOBAL.out deleted file mode 100644 index 8c9f1d3ee651991ffd89d3935a9bb0273019bdad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.06028346220652262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200003_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200003_H_GLOBAL.out deleted file mode 100644 index 667c8ad83e0d37d90a421915ed680c216a4aa7cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.06373732487360637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200003_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200003_M_GLOBAL.out deleted file mode 100644 index 1856555e3c4a1ff4daffd6ac248f7617a4fd7b2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.06781238714853922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200004_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200004_D_GLOBAL.out deleted file mode 100644 index 4e478e31207d9845d1754e739f9838800d125950..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.06864616076151529 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200004_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200004_H_GLOBAL.out deleted file mode 100644 index dea47657de95422277a00c1a6c88bd6732adb80d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.03401119709014892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200004_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200004_M_GLOBAL.out deleted file mode 100644 index a9c051c26a522b8d68d5fbcea27952ca48576b02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.061965656280517575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200005_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200005_D_GLOBAL.out deleted file mode 100644 index 3990af552f9c12fd6e2938050a607e851fa420cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.07785040934880574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200005_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200005_H_GLOBAL.out deleted file mode 100644 index 759337c1e4d7e6e7f282c1eae5e72c740bc0c557..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.034391021728515624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200005_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200005_M_GLOBAL.out deleted file mode 100644 index 51747e91ac53190874d8fa6d2246f89ab2476ddf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.06986943483352662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200006_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200006_D_GLOBAL.out deleted file mode 100644 index 9bcc8b55053036ecfc590f98c523016fd0fd34f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.07481420437494914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200006_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200006_H_GLOBAL.out deleted file mode 100644 index 2c1302555e35bfcee29a1aa60c53c2f437d20fa8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.031989367802937825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200006_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200006_M_GLOBAL.out deleted file mode 100644 index 6470420f163bbb2740e9061fc4da802e18fde2f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.062498843669891356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200007_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200007_D_GLOBAL.out deleted file mode 100644 index de628e5af7d7668558aa3f074b60df71d008fd6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.046085798740386964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200007_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200007_H_GLOBAL.out deleted file mode 100644 index 269bf2183edef56fc4daafc2ff98835ab393b36a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.06266855796178182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200007_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200007_M_GLOBAL.out deleted file mode 100644 index be211f07a30e54ecf009a1bcfa68b707d42d976d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.06776434183120728 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200008_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200008_D_GLOBAL.out deleted file mode 100644 index 72835a9444a673c0b4a4c22cd24a89b8be23fe55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.056794110933939615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200008_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200008_H_GLOBAL.out deleted file mode 100644 index f5cba493c82f6862b98f60b50bf7a42ebae5a13e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.035645588239034014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200008_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200008_M_GLOBAL.out deleted file mode 100644 index 51191d15139ef097441d6d0472186c513ae322a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.06898538668950399 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200009_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200009_D_GLOBAL.out deleted file mode 100644 index 4f6e019b4e0686fd5901fdf244b3fe35174b9b3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.07636129856109619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200009_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200009_H_GLOBAL.out deleted file mode 100644 index d98d14eec839b9893ba87cefac96fd7a1a665372..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.057501375675201416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200009_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200009_M_GLOBAL.out deleted file mode 100644 index 64d64268467f626463cbfed4790314486cec5ddf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.04054147005081177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200010_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200010_D_GLOBAL.out deleted file mode 100644 index 593e268058c6ac6229d9ebc17502a81395ad28f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.05215786298116048 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200010_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200010_H_GLOBAL.out deleted file mode 100644 index 68341caf77ed58a208da402836b44f17d9060789..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.07311365207036337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200010_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200010_M_GLOBAL.out deleted file mode 100644 index aebf829edce00f306784bb36b8db52bebced2ead..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.04571094910303752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200011_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200011_D_GLOBAL.out deleted file mode 100644 index c9aa12d3bbdb2edc26fff1dea7ebecaeee0c0d25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.050911041100819905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200011_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200011_H_GLOBAL.out deleted file mode 100644 index 3122fb49588e67ce7e37ca1e54af2fdb377a1cd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.07736077308654785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200011_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200011_M_GLOBAL.out deleted file mode 100644 index 32d855e75e8bc25e03b9a45dbdd0265f644fd645..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.06712155342102051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200012_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200012_D_GLOBAL.out deleted file mode 100644 index 04d1a61dc3b58dcfa8304f6c648df558e7631555..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.06692583958307902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200012_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200012_H_GLOBAL.out deleted file mode 100644 index 342c8af94225172bc0541eaa3c488b75ea5edd89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.05645599365234375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200012_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200012_M_GLOBAL.out deleted file mode 100644 index 5084103fc09f5516ecde49ec5a2bf9632e3f548f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.05305968523025513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200101_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200101_D_GLOBAL.out deleted file mode 100644 index bb635d9e442a5dbb81ced5ba041211b507da7077..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.030912232398986817 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200101_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200101_H_GLOBAL.out deleted file mode 100644 index a6a9226f0070ffca86a72c15721cb21e17112d64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.06000154813130697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200101_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200101_M_GLOBAL.out deleted file mode 100644 index abf669be897d2bfedf78724bed39886ca45b46b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.0318256934483846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200102_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200102_D_GLOBAL.out deleted file mode 100644 index 7a7b4bd57848c1c94bf7301a4dc41a0973558818..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.06273374954859416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200102_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200102_H_GLOBAL.out deleted file mode 100644 index 95ffb9a672ffaa1b00d0ec0431ac68134e6cb6bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.06799930731455485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200102_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200102_M_GLOBAL.out deleted file mode 100644 index f81576e7503bfc12881959c49b771f787ebbd024..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.07137908538182576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200103_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200103_D_GLOBAL.out deleted file mode 100644 index 6fa5fab8f64977b7cf2584fdd958b3e181ab35bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.06748409668604533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200103_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200103_H_GLOBAL.out deleted file mode 100644 index 7cb67b19a69a0c7036a287c0a94b89c7164ce906..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.05513845682144165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200103_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200103_M_GLOBAL.out deleted file mode 100644 index 58da7ac0524c6a15a81f0b708b866feae0fa2274..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.06719009876251221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200104_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200104_D_GLOBAL.out deleted file mode 100644 index a0059892d02fcf0cbd6fcdd3d4b198f44a9d758c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.057625404993693036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200104_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200104_H_GLOBAL.out deleted file mode 100644 index 199d79d75b9918029394cdbd4c9e62ce6133b515..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.04781566858291626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200104_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200104_M_GLOBAL.out deleted file mode 100644 index 6d9d898addc542a98e2c797dbbd11deabaad4112..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.06861734390258789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200105_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200105_D_GLOBAL.out deleted file mode 100644 index d89e641ad0700e2bf057670f0d9139a22753a3a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.04593726396560669 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200105_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200105_H_GLOBAL.out deleted file mode 100644 index c42d2ecf1a2a7edef016b943615ec217507a80af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.04710390567779541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200105_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200105_M_GLOBAL.out deleted file mode 100644 index ee15e855565b9df75a3313676da1c9895954b1d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.06790169477462768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200106_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200106_D_GLOBAL.out deleted file mode 100644 index 211182671ab0294d0d00f06b284040c75b9b2e0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.05710706313451131 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200106_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200106_H_GLOBAL.out deleted file mode 100644 index bab923042f7b35271f977c453c920661834fd210..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.031233243147532144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200106_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200106_M_GLOBAL.out deleted file mode 100644 index f8afbb4edd875bce82acc1ee10489e1177aa9e7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.03950161536534627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200107_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200107_D_GLOBAL.out deleted file mode 100644 index c822ebfee62e95ab0c9af3eaa8040f40de648062..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.0747477650642395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200107_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200107_H_GLOBAL.out deleted file mode 100644 index cf1b9657eeeb740b626611591e5a0749f50fd9fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.06710511843363444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200107_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200107_M_GLOBAL.out deleted file mode 100644 index 8fdfecb2d9538d11a669f330336ff7c15144fd48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.05598595937093099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200108_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200108_D_GLOBAL.out deleted file mode 100644 index 78996154bbd1366ec7445e68c95fe1fa41f49874..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.061275784174601236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200108_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200108_H_GLOBAL.out deleted file mode 100644 index e51ba820e568a0bd235e3f21fc6058fe34109426..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.062136701742808026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200108_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200108_M_GLOBAL.out deleted file mode 100644 index 0fe34075141ccfd89b29bf780fbb10ab48122b0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.05758743683497111 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200109_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200109_D_GLOBAL.out deleted file mode 100644 index f1fd497f017b0e09ba3958940c54b7a57da6f23d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.05858205159505208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200109_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200109_H_GLOBAL.out deleted file mode 100644 index 6d1a550e6477e52e809b669532abca02d4f1ddd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.06081817150115967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200109_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200109_M_GLOBAL.out deleted file mode 100644 index c4109da1fb996296c0d8a803a55e005faffe0b17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.0727248509724935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200110_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200110_D_GLOBAL.out deleted file mode 100644 index 27d813ce90d312a34c39b120b3e7ae136a5104bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.06898605426152547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200110_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200110_H_GLOBAL.out deleted file mode 100644 index 7004ba3a90bc28ed4772ea354e44a864cd17d5ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.0439094344774882 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200110_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200110_M_GLOBAL.out deleted file mode 100644 index 4708ec1110c52274c12a7ca31c2d756d04b4c0d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.06617958148320516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200111_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200111_D_GLOBAL.out deleted file mode 100644 index 951715f3cbfb43e37bafa8c7f48c2093de4abf6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.08004224300384521 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200111_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200111_H_GLOBAL.out deleted file mode 100644 index d59a7e51fb9189ba75b2ccd75fa77afbb4e88b77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.04360464413960775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200111_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200111_M_GLOBAL.out deleted file mode 100644 index 1a29d38adc7c3d61e9a954fe8b8b6b3b9eb20b8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.03367369174957276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200112_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200112_D_GLOBAL.out deleted file mode 100644 index c5f7ffb24bef709d05cd3e6604118d78cafd17ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.06819555759429932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200112_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200112_H_GLOBAL.out deleted file mode 100644 index e719861fca06918178e6eac9a57cbe51d59ec626..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.05382955074310303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200112_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200112_M_GLOBAL.out deleted file mode 100644 index 10190c0dd843afa47b5b7816059acb2b2bb173b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.07513049840927125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200201_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200201_D_GLOBAL.out deleted file mode 100644 index 7adde3f9f241b8beb2682841e6ce09fe8ec45de8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.07805050611495971 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200201_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200201_H_GLOBAL.out deleted file mode 100644 index 69696306cc5d5001d7a84692980060b98828b400..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.08059669733047485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200201_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200201_M_GLOBAL.out deleted file mode 100644 index bdd38c66924abf613ecae1f96a7ba64a0d1ab746..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.07962200244267782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200202_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200202_D_GLOBAL.out deleted file mode 100644 index 6cd199109c63124dc363c566fc208ae8b21b9d05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.07080595890680949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200202_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200202_H_GLOBAL.out deleted file mode 100644 index 3fb5517e6f0addf6726c3f989a7e70ade6011d29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.06238390207290649 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200202_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200202_M_GLOBAL.out deleted file mode 100644 index 98a09d6167478ee3eda924f61cb74cbb02229725..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.0728314717610677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200203_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200203_D_GLOBAL.out deleted file mode 100644 index 1a7395234a59289ba2569f7198fb4054ae211faf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.07352799971898397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200203_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200203_H_GLOBAL.out deleted file mode 100644 index 796b4b60fb56b6c3c2948f6c83b5f3d6659cc057..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.05368517637252808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200203_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200203_M_GLOBAL.out deleted file mode 100644 index e4ce72806780fe13e62cac0b48273229661e0b50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.06476077238718668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200204_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200204_D_GLOBAL.out deleted file mode 100644 index d04339df9dd8767c07d4f03683c5a7c0024d17bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.06262402137120565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200204_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200204_H_GLOBAL.out deleted file mode 100644 index a2805fc3743e1835edff08eb020f9d6895778d75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.07120170990626017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200204_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200204_M_GLOBAL.out deleted file mode 100644 index ba015edd226e04f49319ca42fe0478a1c912b85f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.061485652128855386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200205_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200205_D_GLOBAL.out deleted file mode 100644 index 2eac4cd8c0e96a69ca0b387e1d7882a73fc7c297..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.06803255081176758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200205_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200205_H_GLOBAL.out deleted file mode 100644 index 865c8e0a2d9aebc98a4c6ffe0e8ca7b6aaa89b2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.07002231677373251 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200205_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200205_M_GLOBAL.out deleted file mode 100644 index 411d24db2a3a59785b708736e02aefe14fa556b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.07928493420282999 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200206_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200206_D_GLOBAL.out deleted file mode 100644 index 4defe1cca1ca25167676a132a919c3d33f90d9ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.07433267037073771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200206_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200206_H_GLOBAL.out deleted file mode 100644 index 92740408aaa72fd3b5da29accbbc34b4f063e20f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.03731132348378499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200206_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200206_M_GLOBAL.out deleted file mode 100644 index 3dce36c5f6d3529d80314effb0e7eb0b22efd4bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.07139556805292765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200207_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200207_D_GLOBAL.out deleted file mode 100644 index 84235a163b8943729a3b39a461237fede01f239b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.07903337876001994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200207_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200207_H_GLOBAL.out deleted file mode 100644 index 598727bb893e539d9948b81c5e1e7cb5f2c32d80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.07261080344518026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200207_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200207_M_GLOBAL.out deleted file mode 100644 index c7cb897ab93736d92d3d5b29f2d8ad39ce71dab7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.05029102166493734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200208_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200208_D_GLOBAL.out deleted file mode 100644 index 35e1046ee4de9ae15348e150377b27d04d833bad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.060896960894266765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200208_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200208_H_GLOBAL.out deleted file mode 100644 index bc70d00e164a27457053404d04b3bf4f55947499..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.07228132088979085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200208_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200208_M_GLOBAL.out deleted file mode 100644 index c98e0c3bf8506edee848ed8c25fc719bc5eb55fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.06925848722457886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200209_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200209_D_GLOBAL.out deleted file mode 100644 index 980646313a4d48d36a17438cb5c2aaf5db6518f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.06525865395863852 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200209_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200209_H_GLOBAL.out deleted file mode 100644 index 1d5b052ed2e3f2897e52ceefe96d99ff49c28d1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.05985359748204549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200209_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200209_M_GLOBAL.out deleted file mode 100644 index 195e430db6999a55965573c4123457ea715d22d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.05070645809173584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200210_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200210_D_GLOBAL.out deleted file mode 100644 index f48ddca68faaf94fc998a3538cc9ae2fd2432022..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.0713830828666687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200210_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200210_H_GLOBAL.out deleted file mode 100644 index 3d15371d6651556658908aca0f1307e84152015d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.07643909851710001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200210_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200210_M_GLOBAL.out deleted file mode 100644 index c79405818582cd0ad07658842b0e92b0c7a3a55f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.06094197432200114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200211_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200211_D_GLOBAL.out deleted file mode 100644 index a7903c6faa78a29cb519581d354c161eb08af61c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.06376665035883586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200211_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200211_H_GLOBAL.out deleted file mode 100644 index 3d341add37e4cdfcbbede4b7bb3c1b350c5080a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.0627979834874471 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200211_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200211_M_GLOBAL.out deleted file mode 100644 index 09ee16b18804039b0e859e469fc07788c5a45bd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.06527470350265503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200212_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200212_D_GLOBAL.out deleted file mode 100644 index 20f9335fbdca6433f3f6f612260dc643d53b1cc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.06402641534805298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200212_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200212_H_GLOBAL.out deleted file mode 100644 index 7369a9e643c7187b811fecbac4b8b8d40661469e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.07800122102101643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200212_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200212_M_GLOBAL.out deleted file mode 100644 index d0551e0cd28676bcd3550a0ef365d10ce739e84b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.05972731908162435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200301_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200301_D_GLOBAL.out deleted file mode 100644 index 201d2207b97c0529c102673fb244dd4592c5a48c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.08065251509348552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200301_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200301_H_GLOBAL.out deleted file mode 100644 index ec4c744c90f9adf0d07195c484541001daf6e2db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.07323174873987834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200301_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200301_M_GLOBAL.out deleted file mode 100644 index 37a06bcbf2132056258f911c9ef56216d60f9bf0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.035520466168721516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200302_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200302_D_GLOBAL.out deleted file mode 100644 index d82d47fda2cf426620f76de789fd265e6bd4be87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.07222413619359334 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200302_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200302_H_GLOBAL.out deleted file mode 100644 index 235d78dda35d63cb348f349f4ad9b79ba77efcfb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.07013365427652994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200302_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200302_M_GLOBAL.out deleted file mode 100644 index 8e638d2f018bc856409d07ee1d581745fd59a33c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.07998867829640706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200303_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200303_D_GLOBAL.out deleted file mode 100644 index 7e97d13331edc77340859e09a87a4ca4d848cf76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.058759848276774086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200303_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200303_H_GLOBAL.out deleted file mode 100644 index 9fc2f4fc87e1b6ccacd9a3c2271886009026635b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.04700214068094889 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200303_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200303_M_GLOBAL.out deleted file mode 100644 index 0a119a3bfb6ab25b4ddb398cd2f068ffd45e08f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.07305495738983155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200304_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200304_D_GLOBAL.out deleted file mode 100644 index ba3f8a06353353c6cb6faa8070b95ea21327b7d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.06995241244633993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200304_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200304_H_GLOBAL.out deleted file mode 100644 index 39a31324bc806f1201723563d50678255e2398dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.03768922487894694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200304_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200304_M_GLOBAL.out deleted file mode 100644 index 3a861bf6b8875ded772bc77ba9ffb13ec3dd358e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.05684260527292887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200305_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200305_D_GLOBAL.out deleted file mode 100644 index 0ff4437b3e8521d224fbd93d1be77a4c8b9acfe6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.07902849912643432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200305_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200305_H_GLOBAL.out deleted file mode 100644 index b695db1fd8d7774b78ed6b3695694504935a1c7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.060190860430399576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200305_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200305_M_GLOBAL.out deleted file mode 100644 index 2e273811d1bdc0bf5bec8754c28e51acef819a7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.07604820728302002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200306_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200306_D_GLOBAL.out deleted file mode 100644 index 882b65030d38e4711fc627f9956ec524d4a50d17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.03701631228129069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200306_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200306_H_GLOBAL.out deleted file mode 100644 index 8fa4eca5d326d2085724b42a2feae72ffeac8c8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.06972107489903769 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200306_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200306_M_GLOBAL.out deleted file mode 100644 index 7990b3b8ee392bc2eae3af1ff49e64dd5c6ecd39..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.0813241163889567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200307_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200307_D_GLOBAL.out deleted file mode 100644 index 49f4b5ec8a2fd336ad30693a7d68975edeff7b78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.06173069079717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200307_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200307_H_GLOBAL.out deleted file mode 100644 index ea89cf577dd594e2e0701013ba08db36a69f3d73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.06920629342397054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200307_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200307_M_GLOBAL.out deleted file mode 100644 index 2002fcb9f5b24951dc9e8e1293c5808be13292e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.07200733423233033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200308_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200308_D_GLOBAL.out deleted file mode 100644 index 7eb096724a9d8c706647e3c592d2770c823c0e0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.05744913816452026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200308_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200308_H_GLOBAL.out deleted file mode 100644 index 4673ecab6168630a4d933e31dc453eb4553201a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.0481452743212382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200308_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200308_M_GLOBAL.out deleted file mode 100644 index 6aec0c30e4a076108cfc2155a4f91613ecf38c49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.057005186875661217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200309_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200309_D_GLOBAL.out deleted file mode 100644 index d8bfe6dacb54799900d615e63b47685d9ce03850..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.04729057153065999 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200309_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200309_H_GLOBAL.out deleted file mode 100644 index afd687a68e7ad14bcb6930aea781d9327a552fde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.07166934013366699 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200309_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200309_M_GLOBAL.out deleted file mode 100644 index 612a1c48e03a729fe1162f27a799d4d57a6f3ec4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.08225059509277344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200310_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200310_D_GLOBAL.out deleted file mode 100644 index 75d63981c336ee133eb753a8811b15caec9e7a49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.07555679480234782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200310_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200310_H_GLOBAL.out deleted file mode 100644 index 87126d5baf45edb797070e70558904e5104cbab4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.06998387177785238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200310_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200310_M_GLOBAL.out deleted file mode 100644 index f856a06121af6c0abe73e835db18138ac8387d9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.07379823128382365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200311_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200311_D_GLOBAL.out deleted file mode 100644 index 61617d9bae33ddd17c04860a7ccf41eed184a85e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.0659793734550476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200311_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200311_H_GLOBAL.out deleted file mode 100644 index e0495d029b8fa7f7d5859b9b2d553e060ff58ae2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.05528981288274129 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200311_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200311_M_GLOBAL.out deleted file mode 100644 index 33c7e7660e4d5ff36f142f4ba657e1bea7ad321f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.07089158693949381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200312_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200312_D_GLOBAL.out deleted file mode 100644 index 06daafd24a83f8da52d7fab831958b65ea4c0bd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.053745893637339275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200312_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200312_H_GLOBAL.out deleted file mode 100644 index acdf15d32def9e403bc978c7b4d4817e907f1df5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.04116857846577962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200312_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200312_M_GLOBAL.out deleted file mode 100644 index f490fb0bf07bf3faa8a4f3af46c650b9fcf71271..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.06031554937362671 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200401_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200401_D_GLOBAL.out deleted file mode 100644 index 7f75e5a448d2d044a4978e5ba173634c45d57c7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.07455782095591228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200401_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200401_H_GLOBAL.out deleted file mode 100644 index 559e76029a50e6d2bf10184d47a5ab0841f2880b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.07626771132151286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200401_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200401_M_GLOBAL.out deleted file mode 100644 index d5e8d55fc61bbe79d84d8d9c1609d65819200dc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.07311397790908813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200402_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200402_D_GLOBAL.out deleted file mode 100644 index 9f3bf17fb10ec401692767967aba1914bd13c375..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.0696091095606486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200402_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200402_H_GLOBAL.out deleted file mode 100644 index 22f4c303fd7d7d1e57020e614be4bfb44cd23316..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.055155622959136966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200402_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200402_M_GLOBAL.out deleted file mode 100644 index 817f06e26f731572f161880fdbfa5a33fdc89508..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.0718859036763509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200403_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200403_D_GLOBAL.out deleted file mode 100644 index 4b98978b830527fe1e50848b351d4deb9dab85ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.08174120982487997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200403_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200403_H_GLOBAL.out deleted file mode 100644 index 83486f7b9741353654b308e4a6878be9b72681c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.06978621880213419 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200403_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200403_M_GLOBAL.out deleted file mode 100644 index f3511a19c49281c79c50da1514b040e08625a2a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.050974798202514646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200404_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200404_D_GLOBAL.out deleted file mode 100644 index 47374947d0816fe51e51e8cfd08d8582364cccbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.05820656220118205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200404_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200404_H_GLOBAL.out deleted file mode 100644 index 2c7dca1624e53fd82e18ee912732b411cbb4a004..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.047075788180033364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200404_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200404_M_GLOBAL.out deleted file mode 100644 index 525f4bf812577a91c86a28db69e7d2073d418fbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.06887506643931071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200405_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200405_D_GLOBAL.out deleted file mode 100644 index 0829754780e0ce13903a4aecc7ae86d4006aa898..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.0718425472577413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200405_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200405_H_GLOBAL.out deleted file mode 100644 index ac7ad6a2d0e476cc7976ba6e7fd7cea0d609d1c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.07540929714838664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200405_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200405_M_GLOBAL.out deleted file mode 100644 index fe005e9d594eca2b5f20fdece6cae29e6013caee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.07369701067606609 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200406_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200406_D_GLOBAL.out deleted file mode 100644 index a4e573759ca5112dc4af6035be547e7b553ab36b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.05874505837758382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200406_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200406_H_GLOBAL.out deleted file mode 100644 index 7a76e64babdf87c71327d868af56c4ba747e5566..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.056651103496551516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200406_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200406_M_GLOBAL.out deleted file mode 100644 index af0329ee24682e8ec006d3dca017702971c08dfe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.07230566740036011 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200407_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200407_D_GLOBAL.out deleted file mode 100644 index 8574c2e574b438b0b2a58aa05ee8b490f4744047..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.07157398462295532 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200407_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200407_H_GLOBAL.out deleted file mode 100644 index 9f3e62c3b5a5844073b0a622ba525eda3a129bb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.06816579500834147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200407_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200407_M_GLOBAL.out deleted file mode 100644 index 6c8ea9153e9c4d133a6f24ea0273c997eb3f4021..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.07426677942276001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200408_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200408_D_GLOBAL.out deleted file mode 100644 index 38a744489bde93f24e5dcc6886ea3bc3db14469c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.03559579451878866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200408_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200408_H_GLOBAL.out deleted file mode 100644 index 8f04b8bfa36a5c3f09454e6f2de110def6641a93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.06298172473907471 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200408_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200408_M_GLOBAL.out deleted file mode 100644 index 7e786b5a38f2fddb268daec5685255a976b7d809..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.07284912268320719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200409_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200409_D_GLOBAL.out deleted file mode 100644 index 5daa7915af1cf04a370c4774359b38ce56cfc15d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.04375836451848348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200409_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200409_H_GLOBAL.out deleted file mode 100644 index 02516d5d0ee3ee0548c419c87f1995629b7de559..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.08258411884307862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200409_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200409_M_GLOBAL.out deleted file mode 100644 index 655fe82b0513051edfa409aacacf524b257d5d41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.07023030916849772 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200410_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200410_D_GLOBAL.out deleted file mode 100644 index 76d32a38d9d8285877151d55c5118db9e4142dd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.0546346386273702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200410_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200410_H_GLOBAL.out deleted file mode 100644 index 763e2c0a5b0dd7eac54f216930f973137b7a4440..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.061169262727101645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200410_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200410_M_GLOBAL.out deleted file mode 100644 index ea0105d259d5482ece83460d21514caeff273b80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.07329402367273967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200411_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200411_D_GLOBAL.out deleted file mode 100644 index 7d2ce423b6f14673f7029623adf521ec9d3d0b36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.073635200659434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200411_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200411_H_GLOBAL.out deleted file mode 100644 index ed6bd765a78034c6bfbc720c2c3285f6b1553bc8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.0746567408243815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200411_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200411_M_GLOBAL.out deleted file mode 100644 index 4e684bad8652404a0f9c80ee76b3087c769b98f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.06036041180292765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200412_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200412_D_GLOBAL.out deleted file mode 100644 index 5d7fa08885464d8a3ee8899c42f203d27bca0019..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.07391771475474039 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200412_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200412_H_GLOBAL.out deleted file mode 100644 index e8ab7f45f36fbe79251ae7d4f8f7282d1c75d960..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.07233297824859619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200412_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200412_M_GLOBAL.out deleted file mode 100644 index 9da8e310c62dc0bdc3f0eed05c95b1a1b642cbb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.06895323991775512 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200501_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200501_D_GLOBAL.out deleted file mode 100644 index 1914850d4b5acb734eba9f19d480879e9caf956c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.05126470724741618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200501_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200501_H_GLOBAL.out deleted file mode 100644 index 5e50aab1b4f63a46527c1875fa99a1d77eabc5fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.07196518580118814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200501_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200501_M_GLOBAL.out deleted file mode 100644 index fc4828e843999ce43d1d8507d69eb9e0023e50ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.07444281975428263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200502_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200502_D_GLOBAL.out deleted file mode 100644 index 29280c8ff79d2a12d94cc12823fa89d003208c15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.07513882319132487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200502_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200502_H_GLOBAL.out deleted file mode 100644 index fa7bae727f21527a402fd4b7e7da9e2971b4d2e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.07012921571731567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200502_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200502_M_GLOBAL.out deleted file mode 100644 index 954bf32549b1a1934d095dbcaf854af758073d44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.07871890068054199 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200503_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200503_D_GLOBAL.out deleted file mode 100644 index e69eeaedd68e9b845580e672121dfee46c15dbb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.07858654260635375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200503_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200503_H_GLOBAL.out deleted file mode 100644 index 56d401d228f86b44f601f296ed1211a0a1cfab25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.055775614579518636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200503_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200503_M_GLOBAL.out deleted file mode 100644 index de5b0c43455a1404dc6482d6d7651fc3dfa44b5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.07290993928909302 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200504_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200504_D_GLOBAL.out deleted file mode 100644 index 265cf120703f707b4521d51d7bc56ac11156c993..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.07173860867818196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200504_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200504_H_GLOBAL.out deleted file mode 100644 index 56563a5dd533a7c7e1e85be5cacf5c91ab7895b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.06851775646209717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200504_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200504_M_GLOBAL.out deleted file mode 100644 index c045d2d9d46e8080b9420dcbc60a322095fcb4a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.07216847737630208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200505_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200505_D_GLOBAL.out deleted file mode 100644 index 94b382e9c8dd020de224efec05e9115c54d0db86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.08007505337397257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200505_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200505_H_GLOBAL.out deleted file mode 100644 index e1e99d596a450d8d7a2f271ca328304795461d49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.03663319746653239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200505_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200505_M_GLOBAL.out deleted file mode 100644 index a717c02e92f7c30a1a504517eb51fb858322cb65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.06261446078618367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200506_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200506_D_GLOBAL.out deleted file mode 100644 index 46afddf41527a755d373be4ed4e634a46656e2c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.07093172868092855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200506_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200506_H_GLOBAL.out deleted file mode 100644 index 6640d48e065ed718eeab9194c8ef1d0bcfe18a96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.06697375774383545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200506_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200506_M_GLOBAL.out deleted file mode 100644 index 335c1460ccbe3bc0dc8177bea8f690b6d2e39acb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.06746178070704142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200507_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200507_D_GLOBAL.out deleted file mode 100644 index 165dc1f470ba34ed9f55fe699889c291a09cc287..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.0762810746828715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200507_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200507_H_GLOBAL.out deleted file mode 100644 index 5b44dd1c3be5426312baab7f2e8d3c7aa4a3ebdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.07184427579243978 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200507_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200507_M_GLOBAL.out deleted file mode 100644 index 7a18e1212e65bd238c72211c84476da4e15c4137..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.07528461615244547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200508_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200508_D_GLOBAL.out deleted file mode 100644 index 49275cfc345e13e3d185f3d4ff97bc48b24f4306..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.05694473584493001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200508_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200508_H_GLOBAL.out deleted file mode 100644 index 63710d291b11697f86686af0373b1e386633995f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.058781250317891436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200508_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200508_M_GLOBAL.out deleted file mode 100644 index 2c6a7e17848335fea20c242985ae2307d014b665..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.08632332483927409 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200509_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200509_D_GLOBAL.out deleted file mode 100644 index 6bea6a0686ee8c2495fd00ecbf10661063c9c9a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.06873888572057088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200509_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200509_H_GLOBAL.out deleted file mode 100644 index 9e0db2cc860429327f1affe33eb841379925131d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.07311914364496867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200509_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200509_M_GLOBAL.out deleted file mode 100644 index 3497053a17997c0714ae2b07a12e6101ace360b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.07180833419164022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200510_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200510_D_GLOBAL.out deleted file mode 100644 index e7afdc9c3df22e830f6909b5456486140733d595..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.05571624040603638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200510_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200510_H_GLOBAL.out deleted file mode 100644 index 6907de5447b8988eaa50616b1def917fa2f0a213..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.05762706995010376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200510_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200510_M_GLOBAL.out deleted file mode 100644 index f33730ee540becccb5f9101410ed73414ac3f704..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.07189064423243205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200511_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200511_D_GLOBAL.out deleted file mode 100644 index 5a128063a74cd208390e80fe83f2aafd683e3c6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.07164499362309774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200511_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200511_H_GLOBAL.out deleted file mode 100644 index 4f7602ba02b5db9a9793ae0d7e5bf598556893ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.06400755246480307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200511_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200511_M_GLOBAL.out deleted file mode 100644 index 669b250ef8806702121a605cc0e31c14651ba7b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.0762160062789917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200512_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200512_D_GLOBAL.out deleted file mode 100644 index d2919bf5932272b74b7bdd30905b2358702cab6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.0558773398399353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200512_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200512_H_GLOBAL.out deleted file mode 100644 index db30c56014cd202df2b58262502774a5d452f424..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.07108493248621622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200512_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200512_M_GLOBAL.out deleted file mode 100644 index d7a3050fa9c6472f12f36be5bdf9056d544df383..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.07045655647913615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200601_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200601_D_GLOBAL.out deleted file mode 100644 index bf68b12065086f4ccdab7c30e5e3acf90ffcd024..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.07214475075403849 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200601_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200601_H_GLOBAL.out deleted file mode 100644 index 45d056593a244dce9f45d7e6feac497d456b8319..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.03493722279866537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200601_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200601_M_GLOBAL.out deleted file mode 100644 index 81c74549b4e4d2b9091c51a4f6ca6c469847a4d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.07426555156707763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200602_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200602_D_GLOBAL.out deleted file mode 100644 index 2e11c770df7b5df67889b22ff0d51440c4b2301e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.07064149777094524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200602_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200602_H_GLOBAL.out deleted file mode 100644 index 6fdb329ac01eacc6848791e517a124c28fa222eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.07208185990651449 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200602_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200602_M_GLOBAL.out deleted file mode 100644 index 5a7ad1866eb2aa978182bd24c726fc50f36aa6d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.0373481273651123 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200603_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200603_D_GLOBAL.out deleted file mode 100644 index 24b9219da4bc4ef108d59eed16897eb93555bcd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.07211408615112305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200603_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200603_H_GLOBAL.out deleted file mode 100644 index be0c8dfd2e3b246610595a1b4e59f4bccc0bef49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.05238942305246989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200603_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200603_M_GLOBAL.out deleted file mode 100644 index cb18203de2b6873b0d4691c9db70f8da57d49ecd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.03850588798522949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200604_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200604_D_GLOBAL.out deleted file mode 100644 index 98f80e4e32a3e8187fd2d3ab4fcdb988d17bbb0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.06296739578247071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200604_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200604_H_GLOBAL.out deleted file mode 100644 index d41fe6a046438539353f7d7acc749a8c08c934a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.0376163919766744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200604_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200604_M_GLOBAL.out deleted file mode 100644 index f39101036a96ae2ab4cc8c9a42174a3b1c291cf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.07284699678421021 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200605_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200605_D_GLOBAL.out deleted file mode 100644 index b9877daeadec777b889e0d14b6d31e4f109d831b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.07530563672383626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200605_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200605_H_GLOBAL.out deleted file mode 100644 index a35e74bde4f327656ac2b89743d3d938e99d3409..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.03412397305170695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200605_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200605_M_GLOBAL.out deleted file mode 100644 index 49366a40fa7d200a6a04d755fb7968b2012baf5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.06056494315465291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200606_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200606_D_GLOBAL.out deleted file mode 100644 index 4e302805704a073adaace964d644a8cf93052006..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.07952990134557088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200606_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200606_H_GLOBAL.out deleted file mode 100644 index 54da5b824f0e8c10b0e58679861376ef0cc1d0ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.08142546017964682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200606_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200606_M_GLOBAL.out deleted file mode 100644 index 6095f04d0ed79117e05fd6079e6a73d5c394848b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.046928962071736656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200607_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200607_D_GLOBAL.out deleted file mode 100644 index 3490f6f624b2c13731110a692291fbef7c33bce2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.07054567337036133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200607_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200607_H_GLOBAL.out deleted file mode 100644 index 53c7dbf06918188b9d6f6cb474d5b43b79b5b6f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.06727406978607178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200607_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200607_M_GLOBAL.out deleted file mode 100644 index fcce317ed979ec4196c3dedab2a370d7dda340cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.07463695208231608 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200608_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200608_D_GLOBAL.out deleted file mode 100644 index 672a6d89f383a82b45386fe55bfcd0e51d25e8fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.0719435731569926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200608_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200608_H_GLOBAL.out deleted file mode 100644 index 4c80a6ead4fb016656cdd61dc4980924d7180484..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.07175827423731486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200608_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200608_M_GLOBAL.out deleted file mode 100644 index 551927b8aacaf5b9772807c586c06d6a0b1c0e59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.07837307453155518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200609_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200609_D_GLOBAL.out deleted file mode 100644 index 03b8c1a638e3382a405193239e43a733acfc57a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.057332968711853026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200609_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200609_H_GLOBAL.out deleted file mode 100644 index 8c4b9ab2e7dede88369bbc8ae4fa07ad952a0849..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.07891403039296468 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200609_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200609_M_GLOBAL.out deleted file mode 100644 index 15b3c32126c3f77542c499e0754e374de9781bcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.07378518978754679 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200610_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200610_D_GLOBAL.out deleted file mode 100644 index 4e56713e1905d1954ca9a48b413a5527d4f1f24a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.07195841868718465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200610_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200610_H_GLOBAL.out deleted file mode 100644 index 444b28da3c477f5f0ce9a48ef7e25ccc67086dfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.0788722276687622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200610_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200610_M_GLOBAL.out deleted file mode 100644 index 3494344dc1d48d8184bfa24e1e973fc8eed239c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.06402142445246378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200611_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200611_D_GLOBAL.out deleted file mode 100644 index cc0c2a4f6b9a4accb049d631b9962633e029eef5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.05389213562011719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200611_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200611_H_GLOBAL.out deleted file mode 100644 index c3dfc57ac534626c5400512e1ad7ed74f7d83b66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.06082675457000732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200611_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200611_M_GLOBAL.out deleted file mode 100644 index f0e68f073aabffc578fbed68794cdab2ad5764b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.06816625595092773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200612_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200612_D_GLOBAL.out deleted file mode 100644 index 5dbd9dd1a5291c7fe6e72a9d85d452799ea2b5bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.07714511156082153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200612_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200612_H_GLOBAL.out deleted file mode 100644 index c944c93c3608e8b5fb0c284fca340167b48d0d74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.0470671017964681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200612_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200612_M_GLOBAL.out deleted file mode 100644 index 21abe79fe75899e08509a61ccd837bcc0df49c9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.07170315186182658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200701_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200701_D_GLOBAL.out deleted file mode 100644 index 53e1db993118965e0883f1f32bb23eca93098369..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.07047021389007568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200701_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200701_H_GLOBAL.out deleted file mode 100644 index aee2828efe470d76f60988e714061f995721ab74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.07175248861312866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200701_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200701_M_GLOBAL.out deleted file mode 100644 index 5e1703855250d9fa1a5a213cd8653c5948c3d5cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.05044703483581543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200702_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200702_D_GLOBAL.out deleted file mode 100644 index e5e684d1e7dc1feb177b1660e6a637db39b70c92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.06785541375478109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200702_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200702_H_GLOBAL.out deleted file mode 100644 index 5e63225b6fd0efb6d0b66adce549d81603ccc59c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.07036242882410686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200702_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200702_M_GLOBAL.out deleted file mode 100644 index defd7d5d6586397ba625d0d62566a0ab062ba39f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.0716569701830546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200703_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200703_D_GLOBAL.out deleted file mode 100644 index 7fb65357227fd11d785f5d2e21f459d3ff5a60ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.06351724863052369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200703_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200703_H_GLOBAL.out deleted file mode 100644 index 02998dc2cd8c1841530b1d2265de4114ed498d48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.07249042193094889 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200703_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200703_M_GLOBAL.out deleted file mode 100644 index 0cba856c71081d848e732a7f8e1f2447c48e4a6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.049476059277852376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200704_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200704_D_GLOBAL.out deleted file mode 100644 index 6e5c8da731e4b5b2f281f237bf19bfb7bc343cc8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.07104870080947875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200704_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200704_H_GLOBAL.out deleted file mode 100644 index 5de25250f5be5e61c75556e0b84e932b759b329c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.04365590413411458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200704_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200704_M_GLOBAL.out deleted file mode 100644 index 4412b939d2eb72f0fc38189db94a98819c86d664..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.0422544519106547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200705_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200705_D_GLOBAL.out deleted file mode 100644 index 90d03ad4672d09fc2ef3478ce318ade2fc8dac8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.041505030790964764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200705_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200705_H_GLOBAL.out deleted file mode 100644 index 8490ba361b0ecf9f5887ff8cfa8278813f5e02a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.047947982947031655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200705_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200705_M_GLOBAL.out deleted file mode 100644 index fb55faf11a962aeab30107619c4bd51daf4d5496..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.05841747522354126 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200706_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200706_D_GLOBAL.out deleted file mode 100644 index 6ff14dfd5f0a6fe78f57c5203441ed16b26f5fc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.08228439092636108 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200706_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200706_H_GLOBAL.out deleted file mode 100644 index ff8e3b47ad09164cb0d6a2300140c7c9f34c7d6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.07550455729166666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200706_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200706_M_GLOBAL.out deleted file mode 100644 index 79c2a321108b4d5066076ee6f9ade5c6991921be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.07947292725245157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200707_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200707_D_GLOBAL.out deleted file mode 100644 index f247f77889618fef953565faf7588c28c8058810..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.06784191926320395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200707_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200707_H_GLOBAL.out deleted file mode 100644 index fdc338df45e4eba64706894e637e791fd59ecfa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.04913947582244873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200707_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200707_M_GLOBAL.out deleted file mode 100644 index 21e470acde6192adf7062bf8eef5b579bf32635b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.03484591245651245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200708_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200708_D_GLOBAL.out deleted file mode 100644 index e77c44ef1f2f89b3f665f6007d8b5a76b2f0169c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.0712532122929891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200708_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200708_H_GLOBAL.out deleted file mode 100644 index 69c3877d9ff387b6c07aebb862d5fb8c1635c299..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.0618294874827067 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200708_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200708_M_GLOBAL.out deleted file mode 100644 index 343becb55a47c1afba1cf0b0d15cd5a0bac846bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.0669925610224406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200709_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200709_D_GLOBAL.out deleted file mode 100644 index ba54b73b0329b8dce805855e3fe7315f237c2748..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.07346566120783488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200709_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200709_H_GLOBAL.out deleted file mode 100644 index 34e984c4da696140ebf76687ade8fc3096c10b46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.06277503172556559 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200709_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200709_M_GLOBAL.out deleted file mode 100644 index e455902c468f6a953f78f0ab2ef5497f45aa2868..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.07004419962565105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200710_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200710_D_GLOBAL.out deleted file mode 100644 index ccd9cccd6625e17529a3d3239973d64755b5aa1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.0489531954129537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200710_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200710_H_GLOBAL.out deleted file mode 100644 index 8ad700f5bbc9602eabfd61a426ebcc14ff8f9eb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.07687867879867553 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200710_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200710_M_GLOBAL.out deleted file mode 100644 index 9db18c6062b523af79032e64f7b7ea88ec315c56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.07033816576004029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200711_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200711_D_GLOBAL.out deleted file mode 100644 index 5ddf944e896d4c9196a7cc5433f6290d08513fc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.03791503111521403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200711_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200711_H_GLOBAL.out deleted file mode 100644 index d611f5c87708c4f11dec6cc310cabc3844317d68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.07444306214650472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200711_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200711_M_GLOBAL.out deleted file mode 100644 index 27004cd126e0927819f66028730ce128994a1480..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.07200696468353271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200712_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200712_D_GLOBAL.out deleted file mode 100644 index 8cd7ab995cf48f21666fe35dbe88edf7397a638e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.07690564791361491 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200712_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200712_H_GLOBAL.out deleted file mode 100644 index 26b3391ffab2f88c47dba7997540bd7346ef9d99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.05270308256149292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200712_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200712_M_GLOBAL.out deleted file mode 100644 index ec1a80092ee55fdd9f832cd403455cecb7f10232..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.07096459865570068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200801_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200801_D_GLOBAL.out deleted file mode 100644 index c5e179933486446bdf6b1bc7516dd1f2176a5859..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.046573551495869954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200801_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200801_H_GLOBAL.out deleted file mode 100644 index ccd88bbafd9c1ffb6516aec7bdae16bd0cbb1932..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.07335118452707927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200801_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200801_M_GLOBAL.out deleted file mode 100644 index e3aadde320e1ef58a9db4617b5ac2f83da083436..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.07855990727742514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200802_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200802_D_GLOBAL.out deleted file mode 100644 index 2fbb2f2c0f1b34bd2c92e5f059a05a92a477827c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.07246964772542318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200802_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200802_H_GLOBAL.out deleted file mode 100644 index 1da4c2391a43e56d5d5c4651a7be7b72a792d67b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.06113937298456828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200802_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200802_M_GLOBAL.out deleted file mode 100644 index 10c5d04eec70c8e106c59c6f6a6fa5cd00ba9ad0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.04722397327423096 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200803_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200803_D_GLOBAL.out deleted file mode 100644 index cac0f7bdf6e58980a91ee2cde372b500a535dfa7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.06947034994761149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200803_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200803_H_GLOBAL.out deleted file mode 100644 index c7257f67fdc022201221335377ccd4ddd7fb6e40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.07345908880233765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200803_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200803_M_GLOBAL.out deleted file mode 100644 index 99d602635c8ceee1fc8937f066688b56a4725da5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.04185896714528402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200804_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200804_D_GLOBAL.out deleted file mode 100644 index f0e9d779807cc03c9264b12bfa7ea1adbaa12b9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.07337458531061808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200804_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200804_H_GLOBAL.out deleted file mode 100644 index 578495bb8149d8251c7cdd818a0ba14fdb75cd3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.0815538207689921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200804_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200804_M_GLOBAL.out deleted file mode 100644 index f09e1a40b0fed5d7312b4c623590249ccece06be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.051955525080362955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200805_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200805_D_GLOBAL.out deleted file mode 100644 index 2f5305cbccff01c09d5d0a53468059bb2b58d999..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.07181348800659179 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200805_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200805_H_GLOBAL.out deleted file mode 100644 index 035222f4f7225a6a32008e4536ac7227bc82468a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.04086851676305135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200805_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200805_M_GLOBAL.out deleted file mode 100644 index 70ff73d9b5de29b562a6bf10fcacb97671f0a3ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.07424294153849284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200806_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200806_D_GLOBAL.out deleted file mode 100644 index 6ca90ab76339b0ea659c0d32f067eb72628d55a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.06679683923721313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200806_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200806_H_GLOBAL.out deleted file mode 100644 index cf08e610c4e7cae0ff7d4b8923e310aeff81b7af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.06928780476252237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200806_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200806_M_GLOBAL.out deleted file mode 100644 index be3c1cdfc7ac8a9e98643a085c0abc2e3b0cc8b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.0714883804321289 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200807_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200807_D_GLOBAL.out deleted file mode 100644 index 0e72759787d96af101fdc3f6b991071988cd16a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.07882246176401773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200807_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200807_H_GLOBAL.out deleted file mode 100644 index 95bb08ec9e96c122039b2cfb2d82b307a6774125..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.0715496818224589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200807_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200807_M_GLOBAL.out deleted file mode 100644 index 8f114733309664013e136dcc0a87625cd68edfe8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.06913915077845255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200808_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200808_D_GLOBAL.out deleted file mode 100644 index f147f7a9cfa0308bf84fbd253dabcfdd458b0842..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.08024909496307372 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200808_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200808_H_GLOBAL.out deleted file mode 100644 index 088978dfc7db6e461d69e5b55a4afe8f8313f808..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.06504889329274495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200808_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200808_M_GLOBAL.out deleted file mode 100644 index 5e01116b00ab5e3a8ce1f4f7d5853af4bd5c8b27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.07912487586339315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200809_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200809_D_GLOBAL.out deleted file mode 100644 index 4b8c11d68c46c0c04d165bae6780a362a3b3f68d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.07056078116099039 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200809_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200809_H_GLOBAL.out deleted file mode 100644 index 0a56a0f75204c56711fa68916f3784c47a91b7e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.06977858543395996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200809_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200809_M_GLOBAL.out deleted file mode 100644 index 9060aaac27270e0ce1896ffc44f5a520da1d6459..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.08254887660344441 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200810_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200810_D_GLOBAL.out deleted file mode 100644 index 923d6e29edb9f3abe2f47b7a67a45cb4ca70a361..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.06073518991470337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200810_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200810_H_GLOBAL.out deleted file mode 100644 index a2da62c76a0cad7011826e56ac78a80ceaba3ae3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.08044166564941406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200810_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200810_M_GLOBAL.out deleted file mode 100644 index eacc4f1127ccb7618f1d6b89b52573ed9862ccb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.05327911376953125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200811_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200811_D_GLOBAL.out deleted file mode 100644 index c581292c19243c6a8e239eecb031ef15958f30a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.04837798277537028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200811_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200811_H_GLOBAL.out deleted file mode 100644 index 27290502b29b122dbe7dc5372484732cd92a5d60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.07453881104787191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200811_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200811_M_GLOBAL.out deleted file mode 100644 index 3446c522f17e4c46b3b33bb9a910756875bd4d2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.06955417394638061 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200812_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200812_D_GLOBAL.out deleted file mode 100644 index c675c36300514355ce82fc184ab6cc9cf357916c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.061190311113993326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200812_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200812_H_GLOBAL.out deleted file mode 100644 index ed21c74f73a71cd3349e9dbccf44136d3ee877eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.07122644980748495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200812_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200812_M_GLOBAL.out deleted file mode 100644 index 07e5d70630757b9933c71b4cfe79f366351e4624..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.06286521752675374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200901_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200901_D_GLOBAL.out deleted file mode 100644 index b40de9047d4c173f8185204419ab8febb2ed5eba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.060304450988769534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200901_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200901_H_GLOBAL.out deleted file mode 100644 index 76fe245d6d5a214f1f03a4caeccfeeeed6ef4091..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.07003948291142782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200901_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200901_M_GLOBAL.out deleted file mode 100644 index 8eb9ca805527cd862a45c1aae2b75c1bcf7df907..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.08125573396682739 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200902_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200902_D_GLOBAL.out deleted file mode 100644 index f205982f9d037f6d1c79ad35cad80e4a4164eeea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.05724767049153646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200902_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200902_H_GLOBAL.out deleted file mode 100644 index 6163fcbe44e43a6c4579ec7aca23bc7ac48f29d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.06271133422851563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200902_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200902_M_GLOBAL.out deleted file mode 100644 index 2cac06daf5c53c9cbaecab369a245919128e3557..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.07157054344813028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200903_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200903_D_GLOBAL.out deleted file mode 100644 index 9dc3df39b99d133705594631bd883824943a5664..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.07428450187047322 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200903_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200903_H_GLOBAL.out deleted file mode 100644 index d44ff23553d01c4ac5f26c5622d40c17069f7c88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.06927435000737509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200903_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200903_M_GLOBAL.out deleted file mode 100644 index d5662f6f394fb5e3c2243716c742999fd0a9c3a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.05695940653483073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200904_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200904_D_GLOBAL.out deleted file mode 100644 index 54d08a5ee643a5984feb05dee33d310d7cedca60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.044372745354970294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200904_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200904_H_GLOBAL.out deleted file mode 100644 index 827e85f6b53ef9c142271e739137d70854362e18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.07243661483128866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200904_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200904_M_GLOBAL.out deleted file mode 100644 index 48d215f72eccc2e29ec725e08767742a089d6c1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.06904359658559163 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200905_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200905_D_GLOBAL.out deleted file mode 100644 index 46ab037dd0bdebe4b313832ec21f9c424b3ec181..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.056209059556325276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200905_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200905_H_GLOBAL.out deleted file mode 100644 index c0c0b062fb821d3d219ab51d59364c6e91d928a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.059762473901112875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200905_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200905_M_GLOBAL.out deleted file mode 100644 index 0adfa99a322ec97647ecf05cff3e8734a58afb40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.05343481699625651 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200906_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200906_D_GLOBAL.out deleted file mode 100644 index 65a048ba64c6b4c97a6c0311b74ed461f9096476..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.05966726541519165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200906_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200906_H_GLOBAL.out deleted file mode 100644 index e2d6aac91b769a85f44160deeb5791b9d0e13f52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.07947789827982585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200906_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200906_M_GLOBAL.out deleted file mode 100644 index c064cfc440ad034852572877570a800e4de6f926..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.060684208075205484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200907_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200907_D_GLOBAL.out deleted file mode 100644 index 9cd07e57677083c6e3fd5ae11a057d52d607e0b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.07261033455530802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200907_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200907_H_GLOBAL.out deleted file mode 100644 index 1cbd7b8422a63b8dcf32a025de6233d986daaa39..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.05096780061721802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200907_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200907_M_GLOBAL.out deleted file mode 100644 index 51b8a0e5b5942b8dd0628f84d854e3167e64ce67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.07850774526596069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200908_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200908_D_GLOBAL.out deleted file mode 100644 index 7d21663cce56090d15d2d02db560d47872a7a7f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.06374998092651367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200908_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200908_H_GLOBAL.out deleted file mode 100644 index eb5f468aeb41a009503ba9e82042e71ef8ddd5d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.07768471638361613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200908_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200908_M_GLOBAL.out deleted file mode 100644 index f819e048267d929e18ceb96f670fb5ed73377f4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.06859122514724732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200909_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200909_D_GLOBAL.out deleted file mode 100644 index 6e4f5715b47975f1387f298bc6be7fd6031a204b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.07524569034576416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200909_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200909_H_GLOBAL.out deleted file mode 100644 index e6094e9794501852b2d87e6888798a84b24660d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.0446178396542867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200909_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200909_M_GLOBAL.out deleted file mode 100644 index b78f1d404f3e8f60647d56992efc681f0f748d7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.060708260536193846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200910_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200910_D_GLOBAL.out deleted file mode 100644 index ceea792317d014d200923e870c49c2e96b5cb788..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.07215625047683716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200910_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200910_H_GLOBAL.out deleted file mode 100644 index 7152a85d12a70f00d88c8291ec8434470d556dd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.04985373814900716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200910_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200910_M_GLOBAL.out deleted file mode 100644 index 44ebac8f504437abe7a90c9c32b5f5ed8817a9e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.07685979604721069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200911_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200911_D_GLOBAL.out deleted file mode 100644 index 2e0a10484e5766a0373d1f6b974e4e59f1ec56be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.07137496868769327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200911_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200911_H_GLOBAL.out deleted file mode 100644 index 982fc3738157474101b2dcd061abe232978cbad7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.06891272068023682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200911_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200911_M_GLOBAL.out deleted file mode 100644 index b6be9ffeaab041b70c7438c69ea40d5523a0efcf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.06519573529561361 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200912_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200912_D_GLOBAL.out deleted file mode 100644 index cf942403fb63091d1832a7d066db6578fbbf5d62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.07583139340082805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200912_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200912_H_GLOBAL.out deleted file mode 100644 index 3925fadbf19d4bef49d88d24b8f01e0aa8fe912f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.08709355195363362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_200912_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_200912_M_GLOBAL.out deleted file mode 100644 index 7972794d066402b9e1ae71e1f6c0767eae0ca400..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_200912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.05706960360209147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201001_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201001_D_GLOBAL.out deleted file mode 100644 index ac8ca785fe1b89762f70fde83314e82c6b68cb55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.05709362427393595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201001_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201001_H_GLOBAL.out deleted file mode 100644 index 1ff09f0020151659d81bce583d18f6b6eb1c3cde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.07240831851959229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201001_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201001_M_GLOBAL.out deleted file mode 100644 index ff80d1ed6b74993d150726a57c7b3b29e5c5e5d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.07192211945851644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201002_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201002_D_GLOBAL.out deleted file mode 100644 index 9cc89dfbccd9fefe46d99f36d664f6329206cc87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.04909684658050537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201002_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201002_H_GLOBAL.out deleted file mode 100644 index 5bb526faa1e35973559d4493a4f54e5a61d00919..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.06425785223642985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201002_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201002_M_GLOBAL.out deleted file mode 100644 index 4ea632c9e53864223d538b7b1366687c8cbd2f48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.05379789670308431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201003_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201003_D_GLOBAL.out deleted file mode 100644 index 62626bf382744901e5709d8a11e00b74a14e613a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.0665248155593872 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201003_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201003_H_GLOBAL.out deleted file mode 100644 index 39abfd3f576daa7c3ce6d57205849d02c612d448..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.07378801504770914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201003_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201003_M_GLOBAL.out deleted file mode 100644 index c4df1260655646f6698c90e310565fce1e3a8650..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.03879715204238891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201004_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201004_D_GLOBAL.out deleted file mode 100644 index e3f982bec3534cdceb87479393da7f2a4fa30a8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.07421826918919881 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201004_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201004_H_GLOBAL.out deleted file mode 100644 index 38dea68d36ac69b150d70cda6b6090a953600a39..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.058386353651682536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201004_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201004_M_GLOBAL.out deleted file mode 100644 index 6e0c8c4b1edc8f03d12bca723221a08dedae7389..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.07401798963546753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201005_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201005_D_GLOBAL.out deleted file mode 100644 index e39ba02b938e9018732d07b07b97908db7771b5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.07385138670603435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201005_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201005_H_GLOBAL.out deleted file mode 100644 index ca822697269be48cf49a11508d8b72e3ac548a76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.07356112798055013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201005_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201005_M_GLOBAL.out deleted file mode 100644 index 71ac9889b17c5498e8ae0e3dd0eb0c7e97a9249e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.07809528509775797 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201006_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201006_D_GLOBAL.out deleted file mode 100644 index 6f96ce0911ead36d9fff3e024d69927a02a1f467..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.07709605693817138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201006_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201006_H_GLOBAL.out deleted file mode 100644 index eb0bfa4362f2c6b108684bc52c1a05f75cc33b0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.06152084271113078 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201006_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201006_M_GLOBAL.out deleted file mode 100644 index 5d84f9c83f6555586444afcc98c8a0c0f953e68a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.0449533740679423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201007_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201007_D_GLOBAL.out deleted file mode 100644 index 59e320a5480eba4702ab93533f598397fbfe50b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.05537972052892049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201007_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201007_H_GLOBAL.out deleted file mode 100644 index 32e6c3974f6c2eff6eb0d6739a0c8ecb264448ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.08900462786356608 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201007_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201007_M_GLOBAL.out deleted file mode 100644 index 40782536dd0d7e8713a10d78e8d2dde987ca19ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.07911805709203085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201008_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201008_D_GLOBAL.out deleted file mode 100644 index 4a2aa8c250a41c8e0964871787f1a84d390831c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.07673186858495076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201008_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201008_H_GLOBAL.out deleted file mode 100644 index 710d7636a29558e50320e913d2ba566e1a6acba9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.06572217146555583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201008_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201008_M_GLOBAL.out deleted file mode 100644 index 200d2144134bce98f7cc0d7cc59c2e93541c18c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.06433441638946533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201009_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201009_D_GLOBAL.out deleted file mode 100644 index e331987a1fcf5b890e0a6fbb1c030af5d52070fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.07770776351292928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201009_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201009_H_GLOBAL.out deleted file mode 100644 index 00c57b8f50ec1bbba835fdda782f57ebb6889cc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.05721602439880371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201009_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201009_M_GLOBAL.out deleted file mode 100644 index b406fa89b488c58bf77e431759a2d812b87fc968..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.058175086975097656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201010_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201010_D_GLOBAL.out deleted file mode 100644 index 0c0558a6b73f219291da3798ca30a3608dfb1390..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.07311467329661052 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201010_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201010_H_GLOBAL.out deleted file mode 100644 index c888683703bcc0c107777797ba27cc9071bb3c85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.07493425607681274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201010_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201010_M_GLOBAL.out deleted file mode 100644 index d7bbc56e5e2905b7596b78c80c093170cbc84055..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.07392797470092774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201011_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201011_D_GLOBAL.out deleted file mode 100644 index c689e4a65db7f304c98aff045bc915df913bce85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.07586922248204549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201011_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201011_H_GLOBAL.out deleted file mode 100644 index d8e001ec145b8b096faf17981de3f8b3bd952942..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.07602224349975586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201011_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201011_M_GLOBAL.out deleted file mode 100644 index dd6f347f45eccf08796b76a440146e7ba3a2c00c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.07422106266021729 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201012_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201012_D_GLOBAL.out deleted file mode 100644 index 3b52f95cc1b24c2770e380cf12c3a6a077aa10e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.05733466943105062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201012_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201012_H_GLOBAL.out deleted file mode 100644 index 2a40e8e1d7147fe7f98ac369181b899a7715631c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.07889758745829265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201012_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201012_M_GLOBAL.out deleted file mode 100644 index 470539982f88f10d04070ef2b64cee6eaf476b7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.0989341656366984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201101_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201101_D_GLOBAL.out deleted file mode 100644 index a64bec14e04caa995a304bac140220223fc2037c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.08174774249394735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201101_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201101_H_GLOBAL.out deleted file mode 100644 index 6cdf164232df8bd5e4f3a6804d0c82de5b50dda9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.08360287745793661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201101_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201101_M_GLOBAL.out deleted file mode 100644 index 65e4f32016829bb031ae84b449e9247d6b5cb6ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.07580617268880209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201102_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201102_D_GLOBAL.out deleted file mode 100644 index 81655297705ba210a5a89285a6417233408f2089..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.08196662664413452 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201102_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201102_H_GLOBAL.out deleted file mode 100644 index 9cdc90b9e622484ff8aba3f0e795e21a7144c5cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.06945255994796753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201102_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201102_M_GLOBAL.out deleted file mode 100644 index eca25b3cd492ceeff5975dae22ef503aeaa13970..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.0701571544011434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201103_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201103_D_GLOBAL.out deleted file mode 100644 index 90b8af5006a7e78b5aa6ab8d351597fe2ae7833a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.0502005656560262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201103_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201103_H_GLOBAL.out deleted file mode 100644 index 9984629ae74d442de1a875b4286beccb2a2df4f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.07693738142649333 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201103_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201103_M_GLOBAL.out deleted file mode 100644 index 44684fca8502e2110ce374bb2873153e890c2756..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.077880064646403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201104_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201104_D_GLOBAL.out deleted file mode 100644 index 5ccd10ea58ba0948b82184ba3310a189084f966a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.0772526224454244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201104_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201104_H_GLOBAL.out deleted file mode 100644 index 9baebcb1876f3f3aa2301f801778c5236b91707a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.06547062794367473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201104_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201104_M_GLOBAL.out deleted file mode 100644 index 82650c546271f7d7de0795b4c126f134ff8f40d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.0744653026262919 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201105_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201105_D_GLOBAL.out deleted file mode 100644 index d97507a06cb8901fe6e1549e878428d2f33d61c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.08138964573542277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201105_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201105_H_GLOBAL.out deleted file mode 100644 index cc17ea1d22840e4733e2567cbe2b782238736d48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.05973552465438843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201105_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201105_M_GLOBAL.out deleted file mode 100644 index c9684b374436f90fd8e5a3ef05032e692a3bb16b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.05736651420593262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201106_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201106_D_GLOBAL.out deleted file mode 100644 index 8bc86631f1856574393ab141e2f2bf974ba19db4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.07355568408966065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201106_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201106_H_GLOBAL.out deleted file mode 100644 index 00312eaafdb2296c586d1af54b6654eca87777fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.059536282221476236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201106_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201106_M_GLOBAL.out deleted file mode 100644 index b5c97767425577069986dd850c9ab06c60cf0a75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.08064050277074178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201107_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201107_D_GLOBAL.out deleted file mode 100644 index 070289f02524aa2ba92f1b2702e24eae84d895e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.06512613693873087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201107_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201107_H_GLOBAL.out deleted file mode 100644 index f650064e98e1dc0a548da20e3b5e1b04cfb205c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.057579358418782554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201107_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201107_M_GLOBAL.out deleted file mode 100644 index 305195840cefc621954f361f76f3d9cf86939b23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.07072700262069702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201108_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201108_D_GLOBAL.out deleted file mode 100644 index da17b0cb6f755f39f39d502506e171c5de847ee0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.07334705591201782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201108_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201108_H_GLOBAL.out deleted file mode 100644 index 636ac139c3520223d5b767fac3882a84f3bac2d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.07481869061787923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201108_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201108_M_GLOBAL.out deleted file mode 100644 index dcf450fdf9204a0797b186776294c389e183001b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.06005153656005859 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201109_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201109_D_GLOBAL.out deleted file mode 100644 index e05cdc972322c20aa00df8c940954bd97b030043..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.0646056890487671 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201109_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201109_H_GLOBAL.out deleted file mode 100644 index 9fb799fe68cf8408a68c5823cb546a79b7d0e0c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.049057137966156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201109_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201109_M_GLOBAL.out deleted file mode 100644 index 0568b781e30f4eb4b9e2dc6c2849dcec99fa5427..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.06869240204493204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201110_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201110_D_GLOBAL.out deleted file mode 100644 index f2a98b8ff37bc049d62f7430fd119f82175708fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.08075926701227824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201110_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201110_H_GLOBAL.out deleted file mode 100644 index 8eba59e7581b9824711f9dee65fc8910eca74dd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.07304608821868896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201110_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201110_M_GLOBAL.out deleted file mode 100644 index 99f313532cf5419c407f4fd52dcff344a6c697eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.06613016525904337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201111_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201111_D_GLOBAL.out deleted file mode 100644 index 69d374253ce60e9f6d54ffcfc0d25edced6dde11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.0760979453722636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201111_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201111_H_GLOBAL.out deleted file mode 100644 index cca72b59db73fc059e8fc2901e8602eadcfd117e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.08077003955841064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201111_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201111_M_GLOBAL.out deleted file mode 100644 index c443d883dc3571d3db7aec52f7e58d7e88a7f439..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.06385838190714518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201112_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201112_D_GLOBAL.out deleted file mode 100644 index 9d5c47d11a33c453a68fd2163c80bca6cfec1ab3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.07988425890604654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201112_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201112_H_GLOBAL.out deleted file mode 100644 index 6288dd5c7a8007a51962886e904d1f27e31f06cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.07381192445755005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201112_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201112_M_GLOBAL.out deleted file mode 100644 index 49fef27addc2217c0c20c171ddf1a9e0f7db1beb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.0479253093401591 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201201_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201201_D_GLOBAL.out deleted file mode 100644 index 333ae9c7ff818fd9d2f2a90ff324cc8b3d274533..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.05272684494654337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201201_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201201_H_GLOBAL.out deleted file mode 100644 index 1e0b3824041ea42f4de5135a26f7276f7d82d493..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.07102725505828858 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201201_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201201_M_GLOBAL.out deleted file mode 100644 index 6031de80dcbfb18363bf81e7500f684c68b1f809..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.08208255767822266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201202_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201202_D_GLOBAL.out deleted file mode 100644 index a9e1eb79331baf894d308f2c62d38053aa3b0966..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.07957870165506999 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201202_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201202_H_GLOBAL.out deleted file mode 100644 index 3c0ce92e6812d2dcffe5624170b6115bf299ad67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.07803121407826742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201202_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201202_M_GLOBAL.out deleted file mode 100644 index a6a067744e142eec5db54ecae2a657ce9ae5034e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.08200793266296387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201203_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201203_D_GLOBAL.out deleted file mode 100644 index 13c86db596ca6c700ea15c7982dd06e6888bbcb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.053087667624155684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201203_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201203_H_GLOBAL.out deleted file mode 100644 index 1cc5c6e85c0222729304e9ca6fe6a3c204b83c2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.06392707824707031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201203_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201203_M_GLOBAL.out deleted file mode 100644 index 15ed74da6aabd04346aede192d3154ceaf5c8d23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.043101060390472415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201204_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201204_D_GLOBAL.out deleted file mode 100644 index 7765447482297efa0b309e95f7ebdd95e5158c1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.07264124155044556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201204_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201204_H_GLOBAL.out deleted file mode 100644 index fcb094df9757f17e201c1fae6694b6ff4d33ffe5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.07166080474853516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201204_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201204_M_GLOBAL.out deleted file mode 100644 index 9d623a8967a50f0e51afea34add633d7617f73ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.07229666312535604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201205_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201205_D_GLOBAL.out deleted file mode 100644 index 1c3132e4999d059117e893f2288fc34e43ebf6db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.059356403350830075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201205_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201205_H_GLOBAL.out deleted file mode 100644 index 2cf5e61ea64949c29b39a895afac4bae245d8596..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.07613715330759684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201205_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201205_M_GLOBAL.out deleted file mode 100644 index f69ecb444a854f5e1537a9d34b3abec18a1d0ff1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.07656701803207397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201206_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201206_D_GLOBAL.out deleted file mode 100644 index aa80cdaefb8e4a6b6e91e91a96b3dd7af520b763..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.0792232076327006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201206_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201206_H_GLOBAL.out deleted file mode 100644 index b7ec097dca99c7b813afaf6826030c473769d1d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.06574626366297404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201206_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201206_M_GLOBAL.out deleted file mode 100644 index c6567acc479f12ae6070132c50b95643e1372e1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.061896002292633055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201207_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201207_D_GLOBAL.out deleted file mode 100644 index bebe7d9d3852abd9a8f8007fb86705af0e3b1075..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.08579708735148112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201207_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201207_H_GLOBAL.out deleted file mode 100644 index 51f7539a1a2c50987871dab2dd4d2bde484a7b1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.07461779514948527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201207_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201207_M_GLOBAL.out deleted file mode 100644 index e1e3c59524a4c3660c4d135171de41674397bc4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.07852276563644409 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201208_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201208_D_GLOBAL.out deleted file mode 100644 index 51a812f770c4e9dea5c9e7c411105a0966a08de7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.07432421445846557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201208_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201208_H_GLOBAL.out deleted file mode 100644 index b8d5174911579cb0d5847bc053ce7cdb99183447..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.05743573904037476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201208_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201208_M_GLOBAL.out deleted file mode 100644 index 7ca8fbe0e06ba2e3636487d8d532b63304b10378..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.08287160396575928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201209_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201209_D_GLOBAL.out deleted file mode 100644 index b515023747fbe97f4532d452f00da09cc7ba6dce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.07272628545761109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201209_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201209_H_GLOBAL.out deleted file mode 100644 index 89f76c7d9aa21755b05c86fbf99c5c505c84ca78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.050964951515197754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201209_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201209_M_GLOBAL.out deleted file mode 100644 index 799e90f6c647862dc0fa38f35bfc33b20d7065de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.06314452091852824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201210_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201210_D_GLOBAL.out deleted file mode 100644 index ee63379c919d137548e494b2e31906d0a15d05e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.05303885142008464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201210_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201210_H_GLOBAL.out deleted file mode 100644 index 00c8b2ede7e76a27bdaacf1d64d888e4f315b84e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.05563051303227742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201210_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201210_M_GLOBAL.out deleted file mode 100644 index 35cde1000e10d206ad55e3b00ccfc613f2188158..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.07637780507405599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201211_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201211_D_GLOBAL.out deleted file mode 100644 index 1d0ef8debd73593e37710eaed6d081d7c577c0fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.0766487201054891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201211_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201211_H_GLOBAL.out deleted file mode 100644 index b3cb311c10d1a1c0c6e5768f77108bb0889a3357..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.06119699875513713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201211_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201211_M_GLOBAL.out deleted file mode 100644 index da05a1b681e58eca52303eb5762c9fa24427aab3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.06560229857762655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201212_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201212_D_GLOBAL.out deleted file mode 100644 index 186c19a79ed4f153ec46502aa94d223fe6a8e364..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.08116204341252645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201212_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201212_H_GLOBAL.out deleted file mode 100644 index e255c35629ab4a08302db5bf7ab40d9a598b49ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.07506452401479086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201212_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201212_M_GLOBAL.out deleted file mode 100644 index d604a5ffc4124ace6dbec40cdbefa43431d4c50f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.05496770143508911 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201301_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201301_D_GLOBAL.out deleted file mode 100644 index 7cb64178ab58d021992aefd376d00a5e77bc242c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.08716102441151936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201301_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201301_H_GLOBAL.out deleted file mode 100644 index 0e32937e07d62697260e7348aed5e6b61a689b79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.08117263317108155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201301_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201301_M_GLOBAL.out deleted file mode 100644 index 0d57c991747bb9dd0e60207f7cebd35699b33c58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.0774251381556193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201302_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201302_D_GLOBAL.out deleted file mode 100644 index f13ed6c6828ca888fc8d2b50fe169e4522c5657f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.07609590689341227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201302_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201302_H_GLOBAL.out deleted file mode 100644 index e27b33f7d7e5173eab6303cd14868141988c5d76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.04988937377929688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201302_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201302_M_GLOBAL.out deleted file mode 100644 index f8ab8363a19e7c491e31d413f513c0cdeaef83c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.07936215400695801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201303_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201303_D_GLOBAL.out deleted file mode 100644 index 45aee0aef1792c79f89627ebe6a58beac0daa15a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.0784760316212972 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201303_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201303_H_GLOBAL.out deleted file mode 100644 index e7cd312dbc16ac48ca5d0ed1d0bab56f8baf8232..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.07644471724828085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201303_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201303_M_GLOBAL.out deleted file mode 100644 index 3b410b6c8f0b8d1c6e9922d8ca6757de07c25d06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.0788005550702413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201304_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201304_D_GLOBAL.out deleted file mode 100644 index f99b75dc55441cc315d873abe7adf5676f80e7c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.07318692604700724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201304_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201304_H_GLOBAL.out deleted file mode 100644 index 09de90ef911777cfddc254bb234cda6aadeeed80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.07811841169993082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201304_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201304_M_GLOBAL.out deleted file mode 100644 index 9a9bfbdc60d244575da065cc7c315a8a1311162f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.06503729025522868 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201305_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201305_D_GLOBAL.out deleted file mode 100644 index 910e0af8034db227a311bdffd83d38a26f3da1a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.07031408150990805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201305_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201305_H_GLOBAL.out deleted file mode 100644 index 98151d5a6a1904867c26789b625c3f03c57c9c45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.07524237632751465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201305_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201305_M_GLOBAL.out deleted file mode 100644 index 1963793e612a31d365785601a048434373a32bbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.05610704819361369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201306_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201306_D_GLOBAL.out deleted file mode 100644 index 69e00b6e69c3a15e3f5f4866e96b0d2086753b33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.09086613655090332 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201306_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201306_H_GLOBAL.out deleted file mode 100644 index 68eb8967700db878192cdd3e5fee29b1d01add3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.077989129225413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201306_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201306_M_GLOBAL.out deleted file mode 100644 index b69202d721e0efb1fc78c98b626cb6d223be2001..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.0773287852605184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201307_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201307_D_GLOBAL.out deleted file mode 100644 index 7bd20a962abce5c4d6203d112c36cea0425379a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.0773984948794047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201307_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201307_H_GLOBAL.out deleted file mode 100644 index 9f216856b9ab31b848aac6eaed8614afc1771c4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.07371755043665568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201307_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201307_M_GLOBAL.out deleted file mode 100644 index 28b9c8d53b467b155c664252330bf49b3c229342..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.07409204244613647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201308_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201308_D_GLOBAL.out deleted file mode 100644 index 33d37cef1c19ae637847daf611656fe9d67360b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.07797429958979289 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201308_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201308_H_GLOBAL.out deleted file mode 100644 index 7bc21b809deb69604e175d98bd9764c74561e00f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.07630397081375122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201308_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201308_M_GLOBAL.out deleted file mode 100644 index 67feae387c5e8e45a889fcf6d7b9047ded57bb81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.07407799561818441 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201309_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201309_D_GLOBAL.out deleted file mode 100644 index 5a05e67ef5a0a1dbc3b510d939db046046e0c97e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.056081287066141766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201309_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201309_H_GLOBAL.out deleted file mode 100644 index 820d75491ca30ba787ae0ea67bf1da55975f6399..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.07629388570785522 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201309_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201309_M_GLOBAL.out deleted file mode 100644 index 3d4ccf85a924d4fcc341407e14b5fb9db697ce24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.07703282833099365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201310_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201310_D_GLOBAL.out deleted file mode 100644 index 6bd70a4b46856a7d4b5c0c9e88bfb5890239edf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.07229215304056803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201310_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201310_H_GLOBAL.out deleted file mode 100644 index 2feb9c0c23d7a1913e1a75bf746f38c540f707dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.06761236190795898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201310_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201310_M_GLOBAL.out deleted file mode 100644 index b3578b3a538f8de87ce428b34ff826647a5f6773..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.08304505745569865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201311_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201311_D_GLOBAL.out deleted file mode 100644 index 38fdd3aeb6d9cfa87f30dce6f304312d053edac7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.06376210451126099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201311_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201311_H_GLOBAL.out deleted file mode 100644 index 2fe2196072bfad035879b17ec6306c6674f88e19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.08191430568695068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201311_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201311_M_GLOBAL.out deleted file mode 100644 index fd717e9dd8734bca5bcb4eca342cd312af72b424..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.07450399398803711 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201312_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201312_D_GLOBAL.out deleted file mode 100644 index 7a81c1f640ec90cf3c0f0bb60b4fc47224a35476..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.05294882456461589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201312_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201312_H_GLOBAL.out deleted file mode 100644 index 269c77656cc77fbcc99ce9b583fc19318ea61e1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.06864035129547119 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201312_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201312_M_GLOBAL.out deleted file mode 100644 index 6f751c26f86d60377891f72bf89de21ed626e7b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.08287907838821411 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201401_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201401_D_GLOBAL.out deleted file mode 100644 index 8aff4fb9ec084f660f30ca008a0d117871b03d89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.07301287253697714 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201401_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201401_H_GLOBAL.out deleted file mode 100644 index 27a7f4e13e5c7a0cd1952d7b8ff850ea1f455b7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.09154173930486044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201401_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201401_M_GLOBAL.out deleted file mode 100644 index 9a950a8f2a5a3da924931a6d8fa8767719e7d3e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.07427939573923746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201402_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201402_D_GLOBAL.out deleted file mode 100644 index ed2e475c7c566516f35eba093b160eea40295423..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.06324817736943562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201402_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201402_H_GLOBAL.out deleted file mode 100644 index 3adb457464d9301b3148a6292954942a152a16d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.07367579142252605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201402_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201402_M_GLOBAL.out deleted file mode 100644 index 9acfa6cc0d757f6e20696d6be52010742f4db50e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.08255203564961751 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201403_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201403_D_GLOBAL.out deleted file mode 100644 index 3dadac19e4d01aca5eff28d7e69fadfcc8dc7ebb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.05876926978429158 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201403_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201403_H_GLOBAL.out deleted file mode 100644 index 90a7a2171901f5d3d75dbfd2acdaac06a11ed8f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.07252495686213176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201403_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201403_M_GLOBAL.out deleted file mode 100644 index 413e08db9985a5aab1fa66e29b17b855e6a01dc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.08017975091934204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201404_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201404_D_GLOBAL.out deleted file mode 100644 index a0af5079088a77bf5a415f3f6e4dc2b6c38063ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.07293349504470825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201404_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201404_H_GLOBAL.out deleted file mode 100644 index 3adf1e774ad6d4d739f8d853c133be69fa9b3e3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.0748380740483602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201404_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201404_M_GLOBAL.out deleted file mode 100644 index e98e0d628cffeb173a40af5d4ffb733fc5beed76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.06866445541381835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201405_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201405_D_GLOBAL.out deleted file mode 100644 index d77af03781c8ff9269e3287494204f1a1cb3baff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.06270498434702555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201405_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201405_H_GLOBAL.out deleted file mode 100644 index ed9f0060361ffc48ba52f3771eb4280c924512ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.07600385745366414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201405_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201405_M_GLOBAL.out deleted file mode 100644 index c3e6e911064bedae059ce421803198a09329409a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.08199390967686972 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201406_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201406_D_GLOBAL.out deleted file mode 100644 index eace8c9737dc5fc654c99f8259f3ac8948ab5c76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.07907030979792277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201406_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201406_H_GLOBAL.out deleted file mode 100644 index 72f9f4755da75f6f8845e01b1218d4cea7decb87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.0731847643852234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201406_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201406_M_GLOBAL.out deleted file mode 100644 index 2bd7f5ed1776562fb781be67af785679f714e979..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.06151433388392131 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201407_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201407_D_GLOBAL.out deleted file mode 100644 index f34f42376e6961afc9e8b421df330dcf30e6a62c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.07148444255193075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201407_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201407_H_GLOBAL.out deleted file mode 100644 index 08dbf21519fe2729ec56757a15f4a98d444ed2cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.04734675089518229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201407_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201407_M_GLOBAL.out deleted file mode 100644 index 30369535600af7d4e45aa53efdab8bd50e1aed53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.07535835107167561 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201408_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201408_D_GLOBAL.out deleted file mode 100644 index 62537db13185d2f8cc8313e550c3d13db6e4faf0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.082731827100118 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201408_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201408_H_GLOBAL.out deleted file mode 100644 index 8071b2cb06bfedc5722967d9a0f7d3d548da59fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.07120476166407268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201408_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201408_M_GLOBAL.out deleted file mode 100644 index bcf3973d9190a09b03750225d360ff0f4555fcc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.0572632114092509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201409_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201409_D_GLOBAL.out deleted file mode 100644 index 26b3d4ba718aa02cbae95e5d48fd868683fd3812..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.05966326395670573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201409_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201409_H_GLOBAL.out deleted file mode 100644 index b9c0c3d6513bfa240de056e927abf76351ae2761..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.09192384084065755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201409_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201409_M_GLOBAL.out deleted file mode 100644 index 23ace719c20fd4f98c391e2a85f3e0ffd1ec1c83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.08875614802042643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201410_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201410_D_GLOBAL.out deleted file mode 100644 index c8913d94fd73e533447241c5e026dfef7eff7b1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.06503200928370158 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201410_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201410_H_GLOBAL.out deleted file mode 100644 index f323776c586beb6dda077c8181d764131a20e13d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.08797848224639893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201410_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201410_M_GLOBAL.out deleted file mode 100644 index 68c95df94e7ff8c4962bd9a919a0f803ff1c42ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.07455552419026693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201411_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201411_D_GLOBAL.out deleted file mode 100644 index 6bd89900df23e164694488f39d4ffb808ea5975a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.07996765772501628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201411_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201411_H_GLOBAL.out deleted file mode 100644 index 77301b616eaa768f5fab09f3823cf92c5e9190e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.07615681489308675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201411_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201411_M_GLOBAL.out deleted file mode 100644 index 1ac6ad235a6bb33fe91891119d509d19f724b62a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.07323794762293498 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201412_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201412_D_GLOBAL.out deleted file mode 100644 index f7bf2cf3a61fa94b87bd41c5f756d6e08abe9d14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.0734421451886495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201412_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201412_H_GLOBAL.out deleted file mode 100644 index 4aeb5841a2ebc8f14a6e1c06a307f16f9e668514..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.07739309867223104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201412_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201412_M_GLOBAL.out deleted file mode 100644 index bb478080481fe03bbed23d2ce234a0d10e67b731..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.07957891623179118 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201501_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201501_D_GLOBAL.out deleted file mode 100644 index 9e289fe01756ca4f60df85aea0fb5771a16cdb80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.0808647354443868 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201501_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201501_H_GLOBAL.out deleted file mode 100644 index aa668a1c9690cd0bddc2220d1ea1e36887402aed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.05670530398686727 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201501_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201501_M_GLOBAL.out deleted file mode 100644 index fb32b77731fab9d7cb6bb65b6f0021f71bf653d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.07059904734293619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201502_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201502_D_GLOBAL.out deleted file mode 100644 index d504d49bfecd1a2e1c62406b5870e32501cdd836..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.07222991784413656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201502_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201502_H_GLOBAL.out deleted file mode 100644 index 637c9cb5c1a320be9c85444cde072666895f76c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.0783130407333374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201502_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201502_M_GLOBAL.out deleted file mode 100644 index 25846ea6442ff5cc62b5ad5b797353e59d67f861..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.05662142833073934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201503_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201503_D_GLOBAL.out deleted file mode 100644 index 3715cfc92f44319a209efde27dfa64b69e623519..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.07828235228856405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201503_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201503_H_GLOBAL.out deleted file mode 100644 index 39acede226222c8a2288cc98a9342bacef2bb55d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.07508455514907837 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201503_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201503_M_GLOBAL.out deleted file mode 100644 index b433acde090bd14e2a5c8f32f1c9e3fa2798afb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.08096349636713664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201504_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201504_D_GLOBAL.out deleted file mode 100644 index 02b4cc5f413405db2a224d87561fe9e3c0f28e06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.08873185316721598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201504_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201504_H_GLOBAL.out deleted file mode 100644 index 532a9d723be065afdd9fdb375aa7e115be4801db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.07741051912307739 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201504_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201504_M_GLOBAL.out deleted file mode 100644 index 566143c1f279a35caa2f5ec194d956b12f08db1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.07423898379007975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201505_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201505_D_GLOBAL.out deleted file mode 100644 index 7ddb3427f139d04ef460ef283e6703d0b6781072..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.07491629123687744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201505_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201505_H_GLOBAL.out deleted file mode 100644 index 9cab87708341cf5cadc3021ae035d291486f7a20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.07822918097178141 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201505_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201505_M_GLOBAL.out deleted file mode 100644 index 6288ecbffe9b4442a03a77daf59d68ea7070f93a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.07364704608917236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201506_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201506_D_GLOBAL.out deleted file mode 100644 index fb3d22a56fdadc6757dbc5eba037a37601196229..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.09220543305079142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201506_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201506_H_GLOBAL.out deleted file mode 100644 index 92dd99cb840e00882df810d09643b40c1baf25eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.04072778622309367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201506_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201506_M_GLOBAL.out deleted file mode 100644 index 2d7940c1e1dbd424511b45f8df0f64dbbb25b6bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.0849832534790039 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201507_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201507_D_GLOBAL.out deleted file mode 100644 index ac7e6bea5170a74a9b5e1bf0e8be177b1b1f3d9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.07228405475616455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201507_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201507_H_GLOBAL.out deleted file mode 100644 index abd16b27636fc23566034325d624dac1cfcd8aef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.07735686699549357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201507_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201507_M_GLOBAL.out deleted file mode 100644 index e238a3fe97f8fd44ad6edea3635483132a550084..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.08118506669998168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201508_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201508_D_GLOBAL.out deleted file mode 100644 index b6a7a46a5336774791869bebac665fcac613152c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.07746578852335612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201508_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201508_H_GLOBAL.out deleted file mode 100644 index 8398929a2953dcb4d364332ad60bc621bace8aab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.06329031785329182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201508_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201508_M_GLOBAL.out deleted file mode 100644 index f87ac24a595191aa868fe3b14d1015e1054c924a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.07330533663431803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201509_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201509_D_GLOBAL.out deleted file mode 100644 index 20adb04a8e5e8945b4c2023fecb03dd241936cc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.07958223025004069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201509_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201509_H_GLOBAL.out deleted file mode 100644 index 60900679e709c6547d0ce648472629b6589fa386..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.07509944438934327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201509_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201509_M_GLOBAL.out deleted file mode 100644 index 2ed6b4be90707ce3d3be4e8ab93758f39b093adb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.09649875164031982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201510_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201510_D_GLOBAL.out deleted file mode 100644 index a6d605ca02a4425abc8e19e3178c40715806aa92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.06348539590835571 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201510_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201510_H_GLOBAL.out deleted file mode 100644 index 65394435217a9ef584d64534df0a27f44adeb0ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.06334505081176758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201510_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201510_M_GLOBAL.out deleted file mode 100644 index b3399c00149595df243694d33ed8626972cd3931..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.08894890149434408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201511_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201511_D_GLOBAL.out deleted file mode 100644 index ea427c33f6f4c25661576c603457d5c4b071dc61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.05956074396769206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201511_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201511_H_GLOBAL.out deleted file mode 100644 index 645104f751158018df42d54b2c7144cc4272361d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.07774117390314737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201511_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201511_M_GLOBAL.out deleted file mode 100644 index 2a34ccd37b320a68bcdfc4fd4bac01534fc23077..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.07698465983072916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201512_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201512_D_GLOBAL.out deleted file mode 100644 index 899d7599f9c9314ed294cc25d9ec6bcbc4ac3be6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.07766717274983724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201512_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201512_H_GLOBAL.out deleted file mode 100644 index 55d547f046cecf987d648c3ed59d5cf51a0dbdbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.07371548811594646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201512_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201512_M_GLOBAL.out deleted file mode 100644 index efff494376b3315426e79a1f97927a2761a45fd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.05382313330968221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index 373a3581ef3102b9336a6c860fc686c6e5e980aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.05605509678522746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index 878163a84ddaf36759fbd03d714f04916c0f377f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.09810272057851156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index d9c8c513fbee237f9cc1e271cdb31b15bf6d35f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.07514266173044841 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index 3ec62ef657ade2ab39bbd4968cbf066ddd20dbf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.07834151983261109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index b95cd90a2ac6d9ea82ed32dbcd102dbd3ebe4719..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.08235339721043905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index c78880b3c824fe0c7fb7f379a08d57573560b5c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.0804051399230957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index 624f41495f3e04eef451c6ffd6c45c419f31cd60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.06730145613352458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index 58d11a812df1c7f54afa39d9a8113089feedc732..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.06650236447652182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index 51ce791c42c6214c8132dc7c4991eef3b4ff8d20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.0808141827583313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index d27e90dc3ad1df2b255ff6668985846310422b94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.07576267719268799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index f081b4e7464af7ccd8d894314d05e3522cfe7af1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.07351569334665935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index 037c6c3d31ff44b97d178bdd23b83bb3efddebc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.09054081042607626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index 7e347c5e11e8672a6e9ed95afc03403e98e7be6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.07449425061543782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index 685f7ac4e6bd1e9cf97c0a358757c984960e65a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.053377799193064374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index 5b9575e4567447c316c797dde29d031a502e4108..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.07469553550084432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index 610e59d027c0ca1c835d4f8a5638dde4ae6f634f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.07817923625310262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index 31834dd185fad4cddb6c61ca629c6a03df5f1ee2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.09543561935424805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index fad513dc35a84e02ab06b214e6bc6289ad4bf3f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.0993257204691569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202006_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202006_D_GLOBAL.out deleted file mode 100644 index ce03f3283851ff182eea19b2bc3555309d4aa17f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.06986480553944906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202006_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202006_H_GLOBAL.out deleted file mode 100644 index a1aed5c4a2793bfd57e9ba4f339515f1d72dd0de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.07358886400858561 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202006_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202006_M_GLOBAL.out deleted file mode 100644 index 1d70e05ab0dc6e1aa7dfb2de087b3f823a99cfd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.07413135369618734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202007_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202007_D_GLOBAL.out deleted file mode 100644 index c2611146274fa20d596aed2a1585b13baaebb1f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.08465210596720378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202007_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202007_H_GLOBAL.out deleted file mode 100644 index 1fdb6a42c4a21130970ff4bfdff1daa86968c916..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.0811727523803711 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202007_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202007_M_GLOBAL.out deleted file mode 100644 index 028a5b09e3daf58fd286bc526501b40b48bb4817..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.08923125664393107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202008_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202008_D_GLOBAL.out deleted file mode 100644 index 71de3fded5712ca6716ff7c426703f46a3af2128..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.08306660254796346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202008_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202008_H_GLOBAL.out deleted file mode 100644 index cf7a2b4056343668320af75a477f2765d7b90c9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.06906157732009888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202008_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202008_M_GLOBAL.out deleted file mode 100644 index 641d4d5f476956acceb4214bcab5c1bbc05c0ad2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.07512994209925333 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202009_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202009_D_GLOBAL.out deleted file mode 100644 index 72b1ee6233eba56d4ff737ca98e50e91f8cfe624..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.0719030261039734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202009_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202009_H_GLOBAL.out deleted file mode 100644 index f473f560be8016e826ef6c6c172e00bf6477229a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.08958218495051067 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202009_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202009_M_GLOBAL.out deleted file mode 100644 index 7803559d8e95b979bd8687acb3d780ba179c94b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.07134405771891277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202010_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202010_D_GLOBAL.out deleted file mode 100644 index 83c24737a8334b2825611cb47fda986af717ebe1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.07239713271458943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202010_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202010_H_GLOBAL.out deleted file mode 100644 index 8fa60659456ab607047daa763903d1152b582220..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.06932533979415893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202010_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202010_M_GLOBAL.out deleted file mode 100644 index d824042a0c3a39e4fc10fa3f8936ed11206f0587..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.07973277568817139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202011_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202011_D_GLOBAL.out deleted file mode 100644 index 6dff5af968972369e1e0138bbc506e253e221486..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.08191777070363362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202011_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202011_H_GLOBAL.out deleted file mode 100644 index d238d0414d42232220e0664913086cd2bcff8f19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.07142522732416788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202011_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202011_M_GLOBAL.out deleted file mode 100644 index 728e6f9ffc5fefb4614b15a927485afaf52dee11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.082484499613444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202012_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202012_D_GLOBAL.out deleted file mode 100644 index 3f5928c71ef27e26238e74ce99793634d619b8a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.08360554774602254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202012_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202012_H_GLOBAL.out deleted file mode 100644 index eea9a0e8a0d650dfd058f363d6f8eb7157981425..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.08315953016281127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202012_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202012_M_GLOBAL.out deleted file mode 100644 index 2f811119360cbbd1a4ea630f212e379ebfaace06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.06509601672490438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202101_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202101_D_GLOBAL.out deleted file mode 100644 index de9e0ad764a3dd3691369eb0c273bf5d69b94e2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.025947848955790203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202101_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202101_H_GLOBAL.out deleted file mode 100644 index 565f107212fe6bb727d98b2fe05479ce1434cb65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.056227374076843264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202101_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202101_M_GLOBAL.out deleted file mode 100644 index c332da6f2bc2475e36e58ab086ed73ca79b49d47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.07821550766626993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202102_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202102_D_GLOBAL.out deleted file mode 100644 index 849af60bc4d3e88a0260fd44463ac8425c4c6867..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.06680721839269002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202102_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202102_H_GLOBAL.out deleted file mode 100644 index 86cd83ff1b816918df913a4c72cdbd519eb5d553..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.05879412492116292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202102_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202102_M_GLOBAL.out deleted file mode 100644 index 29a1b14b8e53dcbfb84afc489f6ba9aaebdc015b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.06391268173853557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202103_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202103_D_GLOBAL.out deleted file mode 100644 index aac2f63357d95f1f13b3e3bd2addc48a433a99c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.030419286092122397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202103_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202103_H_GLOBAL.out deleted file mode 100644 index 6eb72a35ba22e720cbf1201eed372c279bfcdcdd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.0525652805964152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202103_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202103_M_GLOBAL.out deleted file mode 100644 index e71a90945762721f89d3005733c440fc1ffdb649..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.03519528309504191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202104_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202104_D_GLOBAL.out deleted file mode 100644 index 2620811518774979e21ab988a7dddd74851b173d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.0333515723546346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202104_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202104_H_GLOBAL.out deleted file mode 100644 index e9e521d6e032ff1600303ff5fe08269b7be35864..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.05711466868718465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202104_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202104_M_GLOBAL.out deleted file mode 100644 index 8bbedaf758d7455f7741e08bf774e1e5d5bd8b24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.05341802438100179 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202105_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202105_D_GLOBAL.out deleted file mode 100644 index bbc468c2677c527266941763d691aee75ebed4eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.03298419713973999 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202105_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202105_H_GLOBAL.out deleted file mode 100644 index 4929d236ee14380a2c27aab5ff4d264b5e8304c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.03627853393554688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202105_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202105_M_GLOBAL.out deleted file mode 100644 index 41bdaf9336afc8ae42d833d70d7bfa633e6a4a5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.07679002285003662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202106_D_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202106_D_GLOBAL.out deleted file mode 100644 index 425565a10b0945890fc9673f4cc9d2a94110e9bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.05732510884602864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202106_H_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202106_H_GLOBAL.out deleted file mode 100644 index b96a0d2111bee7c8396fa1d93a1e63ecdc18bd97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.03673930565516154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_CO/T2/0_202106_M_GLOBAL.out b/run/stage_logs/NAPMD_CO/T2/0_202106_M_GLOBAL.out deleted file mode 100644 index ea409d44c3f1cacbd18f7efa34cbfc221ccf418e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_CO/T2/0_202106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.07631181478500366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/S1/0_2018.out b/run/stage_logs/NAPMD_NH3/S1/0_2018.out deleted file mode 100644 index 79ac24a1e98ade2c618e539a2bf7ff602fd72d02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/S1/0_2018.out +++ /dev/null @@ -1,3 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2018/NH3_2018.csv -52 -- PARSING RAW DATA -0.012061798572540283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/S1/0_2019.out b/run/stage_logs/NAPMD_NH3/S1/0_2019.out deleted file mode 100644 index 79df26da75aee5bcc00cecca4ae0278879905a80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/S1/0_2019.out +++ /dev/null @@ -1,3 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/NH3_2019.csv -52 -- PARSING RAW DATA -0.012590670585632324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/S1/0_2020.out b/run/stage_logs/NAPMD_NH3/S1/0_2020.out deleted file mode 100644 index 01e27cc65b0d352c66166da0d79faf1e35504dab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/S1/0_2020.out +++ /dev/null @@ -1,3 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/NH3_2020.csv -52 -- PARSING RAW DATA -0.0127754807472229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/S2/0_52_CL(EMC).out b/run/stage_logs/NAPMD_NH3/S2/0_52_CL(EMC).out deleted file mode 100644 index b00261588d6f5cc8b070c4045ea31220df940f07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/S2/0_52_CL(EMC).out +++ /dev/null @@ -1,4 +0,0 @@ -52_CL(EMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010007822513580322 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/S3/0_52_CL(EMC).out b/run/stage_logs/NAPMD_NH3/S3/0_52_CL(EMC).out deleted file mode 100644 index e84e5157728546c22cf1a3bd4de43c49da090f4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/S3/0_52_CL(EMC).out +++ /dev/null @@ -1,23 +0,0 @@ -52_CL(EMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1926828106244405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T1/0_52_CL(EMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T1/0_52_CL(EMC)_D_GLOBAL.out deleted file mode 100644 index 1a172f8887954984b883abb17345ef08c8d4db54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T1/0_52_CL(EMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_CL(EMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.13767561117808025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T1/0_52_CL(EMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T1/0_52_CL(EMC)_H_GLOBAL.out deleted file mode 100644 index 84903cb81555e47b100acbc382e0798cba3e24d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T1/0_52_CL(EMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_CL(EMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.44458455642064415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T1/0_52_CL(EMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T1/0_52_CL(EMC)_M_GLOBAL.out deleted file mode 100644 index c8c4d3be577637b369b98f1827d320c17169fb14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T1/0_52_CL(EMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_CL(EMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10275260210037232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201712_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201712_D_GLOBAL.out deleted file mode 100644 index 6a03d196c07dca660d93f661778282f71bd96caa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.04781449238459269 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201712_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201712_H_GLOBAL.out deleted file mode 100644 index 9ed293df7d4f0d82e17ff943f14e1665e8ef5597..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.04366620381673177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201712_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201712_M_GLOBAL.out deleted file mode 100644 index 0103ce38da95aedfa1a5ed278f6ca220052e3702..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.04549330472946167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201801_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201801_D_GLOBAL.out deleted file mode 100644 index 15957a43090a11420929edf875642e13f19a0869..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.04844721555709839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201801_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201801_H_GLOBAL.out deleted file mode 100644 index 684e435cfa295a42f8bdf382289c62329bab4c06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.024287633101145425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201801_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201801_M_GLOBAL.out deleted file mode 100644 index 97f428de44ae8da90054adf4ff4d7d6484a54b63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.049510729312896726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201802_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201802_D_GLOBAL.out deleted file mode 100644 index 8af93176cc70f1a0e32296aac38dc50ae6996336..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.025450634956359863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201802_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201802_H_GLOBAL.out deleted file mode 100644 index 811c38a4dcd153f157f59da593eef6988f6f86e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.022421324253082277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201802_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201802_M_GLOBAL.out deleted file mode 100644 index 306177a2afb6eb9d9dfd1829dad45ce7dcb88853..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.039329985777537026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201803_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201803_D_GLOBAL.out deleted file mode 100644 index 9fba4247f09fc0908935e91d1e296fc5b0e7e7ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.03970056374867757 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201803_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201803_H_GLOBAL.out deleted file mode 100644 index edce77783e98dbda31809dcb73e5ddb3dfa11aa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.044760223229726157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201803_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201803_M_GLOBAL.out deleted file mode 100644 index 706ea375f5f819d3c651de0218a1b139229a2986..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.025401270389556883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201804_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201804_D_GLOBAL.out deleted file mode 100644 index b7805d463728fa62dfc98d1dcd13b997c68e080f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.054825695355733235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201804_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201804_H_GLOBAL.out deleted file mode 100644 index 2520a2ff1f881149649083e74cde05a66cb66285..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.048898708820343015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201804_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201804_M_GLOBAL.out deleted file mode 100644 index 0ac46e638802c740c0fbb94d23392a5d4f719ffe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.02119234005610148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201805_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201805_D_GLOBAL.out deleted file mode 100644 index bea1d2610460743efc1a76d49d4b165105e82c79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.045896387100219725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201805_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201805_H_GLOBAL.out deleted file mode 100644 index 01d24b2553768cc4051c15b8659e331120bd4535..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.05025691191355387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201805_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201805_M_GLOBAL.out deleted file mode 100644 index 037a12a587c31a13b77ad81457541bd253ac6c20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.046220986048380534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201806_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201806_D_GLOBAL.out deleted file mode 100644 index 198b94e7f83f29ec493ab7283e438745c63e373b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.0489449421564738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201806_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201806_H_GLOBAL.out deleted file mode 100644 index 9106064305a0e9e85b0ead3e54e58fdd76d90f6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.03614331483840942 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201806_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201806_M_GLOBAL.out deleted file mode 100644 index 9f97b190b647e7ff1e6cd6a2e7ddd213cef9300c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.04907606840133667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201807_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201807_D_GLOBAL.out deleted file mode 100644 index 983f4ac3beaf21b283d4dc849f2356f25f57f4d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.04543208678563436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201807_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201807_H_GLOBAL.out deleted file mode 100644 index 55c11db95b770cfca81aca65280365a7e6298fea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.03129109541575114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201807_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201807_M_GLOBAL.out deleted file mode 100644 index 83409d2fd01a164277d1924c21868e3605ddf301..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.036387030283610025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201808_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201808_D_GLOBAL.out deleted file mode 100644 index 604e4d0bdcb53e7961186b3483ea0bbff4f96f4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.04070053497950236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201808_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201808_H_GLOBAL.out deleted file mode 100644 index 7f3e1fdb92677e9af07bc5a7e83fbc57d9d14ed0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.04886869192123413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201808_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201808_M_GLOBAL.out deleted file mode 100644 index f9a0b8248f1d287a66a174bb0833971762e3d010..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.020229574044545492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201809_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201809_D_GLOBAL.out deleted file mode 100644 index 8e3722d3f4c085f375fd292defb0e6eddb9ca43d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.049188844362894696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201809_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201809_H_GLOBAL.out deleted file mode 100644 index 2e1b6c2a809578a0d72ba28fe3954ab929ee2977..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.037613503138224286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201809_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201809_M_GLOBAL.out deleted file mode 100644 index 39f17f1507d46d0626b164122c4e2b64c07fd0e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.035158149401346844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201810_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201810_D_GLOBAL.out deleted file mode 100644 index 66a0d5f9def8537bffa25936d2b902a1a6b193cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.04827957550684611 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201810_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201810_H_GLOBAL.out deleted file mode 100644 index c32b35e7ac8bc6ee62700f4aa993ca9bb15451d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.04889467159907023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201810_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201810_M_GLOBAL.out deleted file mode 100644 index 940cfd19b6701eb183e666df28f54e1aca5f51b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.047786839803059894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201811_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201811_D_GLOBAL.out deleted file mode 100644 index 4581693022fb88e89aa937e1a3a435f575e5e9f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.05478559335072835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201811_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201811_H_GLOBAL.out deleted file mode 100644 index 7f7de871110fa281f7148dae34102badb00568bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.05449331998825073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201811_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201811_M_GLOBAL.out deleted file mode 100644 index 5c08d46e19c034628a949fbab6cf426eab25808f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.045859122276306154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201812_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201812_D_GLOBAL.out deleted file mode 100644 index 3937af1dc7f6c881842ca433c5b5c03adf3e6a8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.04864954948425293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201812_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201812_H_GLOBAL.out deleted file mode 100644 index ded8027ab13a880ab6f406d8e3f52a81b2fb2384..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.04971135854721069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201812_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201812_M_GLOBAL.out deleted file mode 100644 index 944dbee2b7820f0fd0fb5ec06c37d78cafd78767..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.04822251001993815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201901_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201901_D_GLOBAL.out deleted file mode 100644 index ff3d23b6e65a83fda5c9bf494632602d074f5f87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.020597581068674722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201901_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201901_H_GLOBAL.out deleted file mode 100644 index af926faa202444d0daa79de82bc691f449fc67e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.04937045971552531 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201901_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201901_M_GLOBAL.out deleted file mode 100644 index 0e3d7db0de836bd5df850ebb9338414b51505908..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.03418839375178019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201902_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201902_D_GLOBAL.out deleted file mode 100644 index 40c9a9f30d35ab1d6f40e4aa1c06aa22fa020b49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.04438519875208537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201902_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201902_H_GLOBAL.out deleted file mode 100644 index da7710af6f52688074fb6c2391153917a7b9463d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.055761667092641194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201902_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201902_M_GLOBAL.out deleted file mode 100644 index e3329c8ff14818c6753cc4a40889ebfc92cb8d3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.04761964480082194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201903_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201903_D_GLOBAL.out deleted file mode 100644 index ea60cc6704d97f6ee96f66467b5b8df503c1ae80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.04797796010971069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201903_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201903_H_GLOBAL.out deleted file mode 100644 index ad99090b92290d93bcb3514eaa4d595b7f9686ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.023252467314402264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201903_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201903_M_GLOBAL.out deleted file mode 100644 index 5033b7a1b29f4996e29741487e71e957905d5b95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.04271360238393148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201904_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201904_D_GLOBAL.out deleted file mode 100644 index b804d75cfeddf59d372992d8d5fb048c51f40c12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.054228365421295166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201904_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201904_H_GLOBAL.out deleted file mode 100644 index 8c64fc3d9fcbe75aa356cbc72f904f60def1a46e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.04766372442245483 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201904_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201904_M_GLOBAL.out deleted file mode 100644 index 0275a4424ae23fb29b6d80170a3879382e27b0fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.03418724536895752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201905_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201905_D_GLOBAL.out deleted file mode 100644 index fd00f34f57f85cdb3033fe53eaca6e0ef6548850..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.037605440616607665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201905_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201905_H_GLOBAL.out deleted file mode 100644 index 45eb15329881032a4263426b32c61218fd71bea4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.023433772722880046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201905_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201905_M_GLOBAL.out deleted file mode 100644 index 119ec86af067978a539a59a03485dfc49abe26b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.023014557361602784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201906_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201906_D_GLOBAL.out deleted file mode 100644 index 83c7eb805979a343bddc1b7cbb88babd5302b945..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.03881493806838989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201906_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201906_H_GLOBAL.out deleted file mode 100644 index 74d49b8e017b9e86de1eb0064bf97f244ebc7df5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.04938928683598836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201906_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201906_M_GLOBAL.out deleted file mode 100644 index 63c0b2f429639ab515a38faa52395421fa484e47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.04630137284596761 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201907_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201907_D_GLOBAL.out deleted file mode 100644 index cfcbd382fdb77b21df907c242516b14588479796..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.04947755734125773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201907_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201907_H_GLOBAL.out deleted file mode 100644 index 99586cb9567f7dac6710865f78d086a75ef65df5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.049169719219207764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201907_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201907_M_GLOBAL.out deleted file mode 100644 index 87942348ae5fc5aa9f06a36b49a27f6716cda9b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.01964812676111857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201908_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201908_D_GLOBAL.out deleted file mode 100644 index 7e40d906561f088f00883a54c8b6b5523f7965ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.022446354230244953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201908_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201908_H_GLOBAL.out deleted file mode 100644 index 7eacf7df7c987e28cd1d590e17cd1b8431acdd3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.04736488262812297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201908_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201908_M_GLOBAL.out deleted file mode 100644 index 77847da1ae72de54d33d65c978623a36f4834801..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.0475343902905782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201909_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201909_D_GLOBAL.out deleted file mode 100644 index a908a1f7d8b57d7cc60e0ddfdaf8a37d5e679711..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.044504308700561525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201909_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201909_H_GLOBAL.out deleted file mode 100644 index 5a607e1ac127f4b68431485eecba50c0c13eb9ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.05502084493637085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201909_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201909_M_GLOBAL.out deleted file mode 100644 index cb666722c618e5b83079de593313e9263bba710c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.035049692789713545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201910_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201910_D_GLOBAL.out deleted file mode 100644 index 0132dbcf6c3d0212135fd41f6751117e1574354e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.049343430995941163 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201910_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201910_H_GLOBAL.out deleted file mode 100644 index 4ef5e362c0de70307074683bd3645d5b4d993d66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.043864083290100095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201910_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201910_M_GLOBAL.out deleted file mode 100644 index 22329560d06c53a09fefa440edf238f7b7f813cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.03552473386128743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201911_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201911_D_GLOBAL.out deleted file mode 100644 index a3a82260f6545f511d4468789ef1e56d20b595e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.02465813954671224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201911_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201911_H_GLOBAL.out deleted file mode 100644 index a85cb46871a1a2e17cf5d5751ae9957f419bbb98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.04926630258560181 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201911_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201911_M_GLOBAL.out deleted file mode 100644 index 7d57f6c209237576bb02ae95cff78c46288c429e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.04498196442921956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index c39d2af676fe2ddd0a3023ef46f1bf058978b7f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.05023114681243897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index b361ed0bf7e90f707b15174872237c1e90758ec4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.05330708821614583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index 0f1d1b4f70a7fc27da30793b4c7fc30d57657cd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.04326347510019938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index f82d38849caf3fafbe1f6037eba790a032ba1f6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.041090965270996094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index 1f7d4e4fed8ae2a9de381efc31b79bf6660c26fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.04291814168294271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index 51dc24227e23036d4ec5a45086d5da6d510bb2c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.05545036395390828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index 5899c706bfc9102e8ada725a070f0991a87ab4f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.05050621430079142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index dff1e7ca63d9093c842a5c2bd41ba1f5f18a3cc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.04225263992945353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index 1f588ce3e7fb35dd67e84eebed05bf8810dbb105..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.04814682404200236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index ec3237ddbfa8b1305e9cf4dce6946a31be5c4ceb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.047473013401031494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index d0477f40a7c9909467ad8eb6d4f9ac0dfe37a518..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.042411768436431886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index 166acab429d5d7dcc185e01f677b8029279aba8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.044730218251546223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index d8ba0435c7767e9aef499f877caa45a16beaf13c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.04928038120269775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index 28c9a4d01237a9c052c512b7fe3e4743305962db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.047613163789113365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index c4bd46826aaea4cba246cdf69044ccde5d574036..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.014901403586069744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index 5b091c9b4611b2314541732066c7eb1e676bce81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.044277127583821616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index 10e7ebdb1ac63080bcad6510d851839e2037b916..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.05030070145924886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index f68a1b94edf2058ef6e37351b4cc68767e994976..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.03044876257578532 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202006_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202006_D_GLOBAL.out deleted file mode 100644 index d2e86ac9e21b92e6030d32f8fe73164e2ab15b19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.04946239789326986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202006_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202006_H_GLOBAL.out deleted file mode 100644 index ad1f63321c4ef3ed96eb0c4b27abb5825b34d6de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.047895793120066324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202006_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202006_M_GLOBAL.out deleted file mode 100644 index 9e00fdf26974a519d0c729f1de96ccb977a376ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.048562208811442055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202007_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202007_D_GLOBAL.out deleted file mode 100644 index 7885d46f5ced63ddf3240ace5e21fa7f311717ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.025344212849934895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202007_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202007_H_GLOBAL.out deleted file mode 100644 index 6c5bf8e316dc97222ca733d74032a3665588fdd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.044895493984222413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202007_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202007_M_GLOBAL.out deleted file mode 100644 index ac398cb1a29de3078f7307a303100c09475e52b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.04963730573654175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202008_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202008_D_GLOBAL.out deleted file mode 100644 index 9cfb8e222ee21fce85048facfe5d8991eb8b37e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.041060245037078856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202008_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202008_H_GLOBAL.out deleted file mode 100644 index 118096775c254f3b531c734b8e9bb2801eea335d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.049037655194600425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202008_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202008_M_GLOBAL.out deleted file mode 100644 index 16f95694403bf556e709bfeb5dd95d862dfd5c54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.04811942974726359 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202009_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202009_D_GLOBAL.out deleted file mode 100644 index 513876f04b0903cd97c438f6763af2ff5f4add9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.04540372292200724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202009_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202009_H_GLOBAL.out deleted file mode 100644 index 1ab327089a7371ace44ee262e52f22e40d4746fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.048118003209431964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202009_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202009_M_GLOBAL.out deleted file mode 100644 index 6047b05790b95886cf0d6ea3693f8a63b732a5c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.04893202781677246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202010_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202010_D_GLOBAL.out deleted file mode 100644 index 924bb35d9e07e2725719e7990fc71aff965dee3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.03817397356033325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202010_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202010_H_GLOBAL.out deleted file mode 100644 index 96e2fcfc915c8ba07ef6a67e7bf41a549aad6489..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.04886979262034098 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202010_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202010_M_GLOBAL.out deleted file mode 100644 index aedcf1193d9c0b94ed2b0fa806648fcea0cded4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.04935791492462158 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202011_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202011_D_GLOBAL.out deleted file mode 100644 index ee029d96bc24987f28e2b2c65de10b7a65780010..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.049773832162221275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202011_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202011_H_GLOBAL.out deleted file mode 100644 index 5969eaaa735bed4780a6d34f157ae705b10e1766..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.048092631498972575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202011_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202011_M_GLOBAL.out deleted file mode 100644 index 07d4593e0cafa63b4860cbd64f633fb25aac7a09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.04052517811457316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202012_D_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202012_D_GLOBAL.out deleted file mode 100644 index 3dbe94f679a25a162f3344eb2c438702f7631ab1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.024077312151590983 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202012_H_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202012_H_GLOBAL.out deleted file mode 100644 index 86bc0451caf5838312c8b9b8c26803daf0f8c1fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.04740935564041138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NH3/T2/0_202012_M_GLOBAL.out b/run/stage_logs/NAPMD_NH3/T2/0_202012_M_GLOBAL.out deleted file mode 100644 index 357a503729398997f4471505c4b28641cadb6949..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NH3/T2/0_202012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.047804983456929524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1979.out b/run/stage_logs/NAPMD_NO/S1/0_1979.out deleted file mode 100644 index 39b6a309a5eb56976caa7abd829c09ef9affa6b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1979.out +++ /dev/null @@ -1,3 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1979/NO_1979.csv -325 -- PARSING RAW DATA -0.00778814951578776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1980.out b/run/stage_logs/NAPMD_NO/S1/0_1980.out deleted file mode 100644 index 86fefacc4403c660da86b2a451915d07c454ae54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1980.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1980/NO_1980.csv -325 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.00719223419825236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1981.out b/run/stage_logs/NAPMD_NO/S1/0_1981.out deleted file mode 100644 index a293cdbda3aac2ab37d652f3e8bf5ede7b7bba3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1981.out +++ /dev/null @@ -1,5 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1981/NO_1981.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.013024501005808512 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1982.out b/run/stage_logs/NAPMD_NO/S1/0_1982.out deleted file mode 100644 index c47ee247cf7d571f43562c1d6037564e3a5703bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1982.out +++ /dev/null @@ -1,6 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1982/NO_1982.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.019499440987904865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1983.out b/run/stage_logs/NAPMD_NO/S1/0_1983.out deleted file mode 100644 index 9c3a0cce63600f100c9e0bf6e9e780c1a193b500..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1983.out +++ /dev/null @@ -1,8 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1983/NO_1983.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.02827625274658203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1984.out b/run/stage_logs/NAPMD_NO/S1/0_1984.out deleted file mode 100644 index 602c1479c72b42190c442cefd8b83fac4c81b4d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1984.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1984/NO_1984.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.044384435812632246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1985.out b/run/stage_logs/NAPMD_NO/S1/0_1985.out deleted file mode 100644 index 23b6ad108c285b164ab2b7c0e4198873c96d7159..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1985.out +++ /dev/null @@ -1,8 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1985/NO_1985.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.04224995374679565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1986.out b/run/stage_logs/NAPMD_NO/S1/0_1986.out deleted file mode 100644 index 1439d5d5d409201888ae7d040a82f8a432107ef4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1986.out +++ /dev/null @@ -1,8 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1986/NO_1986.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.04510280688603719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1987.out b/run/stage_logs/NAPMD_NO/S1/0_1987.out deleted file mode 100644 index 8e346f6daec8476e12e3606a63c9ada9a157fa3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1987.out +++ /dev/null @@ -1,7 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1987/NO_1987.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.03691463867823283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1988.out b/run/stage_logs/NAPMD_NO/S1/0_1988.out deleted file mode 100644 index 69b4332a7c13f45bdc88f3ecdaa5a0d0270764c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1988.out +++ /dev/null @@ -1,8 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1988/NO_1988.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.03765964905420939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1989.out b/run/stage_logs/NAPMD_NO/S1/0_1989.out deleted file mode 100644 index 271fc7ca2231acd84c6d1b62ebd53f33612210f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1989.out +++ /dev/null @@ -1,8 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1989/NO_1989.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.04331195751825968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1994.out b/run/stage_logs/NAPMD_NO/S1/0_1994.out deleted file mode 100644 index 97981eadccd556fd3f56ec537d0bb57507c45e1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1994.out +++ /dev/null @@ -1,22 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1994/NO_1994.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -40 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.16678367853164672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1995.out b/run/stage_logs/NAPMD_NO/S1/0_1995.out deleted file mode 100644 index 2e326d2b46b1fde3c20a29a8a9dbaf83e9d04156..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1995.out +++ /dev/null @@ -1,22 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1995/NO_1995.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -40 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.22176514069239298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1996.out b/run/stage_logs/NAPMD_NO/S1/0_1996.out deleted file mode 100644 index 5c30635ceb3d90244c8bc7ad1e71dabaf1eaacde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1996.out +++ /dev/null @@ -1,31 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1996/NO_1996.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.43824462095896405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1997.out b/run/stage_logs/NAPMD_NO/S1/0_1997.out deleted file mode 100644 index 9fcf13a6d4651e988fb08dd24ec0bcdaae86a9ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1997.out +++ /dev/null @@ -1,32 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1997/NO_1997.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.4499886631965637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1998.out b/run/stage_logs/NAPMD_NO/S1/0_1998.out deleted file mode 100644 index ff3f5af2e72ab56863a480ba3ab52166c1ba6c0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1998.out +++ /dev/null @@ -1,33 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1998/NO_1998.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -60 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.5072089831034342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_1999.out b/run/stage_logs/NAPMD_NO/S1/0_1999.out deleted file mode 100644 index 93af4d6c56f74efc9f39903846f060e2680ff2e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_1999.out +++ /dev/null @@ -1,33 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1999/NO_1999.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -60 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.5063683311144511 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2000.out b/run/stage_logs/NAPMD_NO/S1/0_2000.out deleted file mode 100644 index 30d5c32d25a7c2e2d69f454177c6fad07ff30e80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2000.out +++ /dev/null @@ -1,35 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2000/NO_2000.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.5349628845850627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2001.out b/run/stage_logs/NAPMD_NO/S1/0_2001.out deleted file mode 100644 index 2a5fc86acdbd00bf2dcbaad181bbdc6e2e586c29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2001.out +++ /dev/null @@ -1,35 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2001/NO_2001.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.5479405840237935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2002.out b/run/stage_logs/NAPMD_NO/S1/0_2002.out deleted file mode 100644 index 064df2c8b168e7474490e1014771f8cec591229b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2002.out +++ /dev/null @@ -1,35 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2002/NO_2002.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.5364261825879415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2003.out b/run/stage_logs/NAPMD_NO/S1/0_2003.out deleted file mode 100644 index c6feb1b424237d2dd3127526eeba49e7879ea512..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2003.out +++ /dev/null @@ -1,34 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2003/NO_2003.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.5159504254659016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2004.out b/run/stage_logs/NAPMD_NO/S1/0_2004.out deleted file mode 100644 index 3a59f1cebc22501d242a894ff3c406b13b3df17e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2004.out +++ /dev/null @@ -1,35 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2004/NO_2004.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.47307369311650593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2005.out b/run/stage_logs/NAPMD_NO/S1/0_2005.out deleted file mode 100644 index 30103a8306d61eed03ecb7529cdc21b417392a4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2005.out +++ /dev/null @@ -1,32 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2005/NO_2005.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -8 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.5128709077835083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2006.out b/run/stage_logs/NAPMD_NO/S1/0_2006.out deleted file mode 100644 index cfadb14860c7030c7e69ee42c77da955c76fb731..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2006.out +++ /dev/null @@ -1,30 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2006/NO_2006.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.44261516332626344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2007.out b/run/stage_logs/NAPMD_NO/S1/0_2007.out deleted file mode 100644 index 8aa7a2e2d789126c861aa398bec0fd4a7c64d806..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2007.out +++ /dev/null @@ -1,31 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2007/NO_2007.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.4509232759475708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2008.out b/run/stage_logs/NAPMD_NO/S1/0_2008.out deleted file mode 100644 index eea5e5ee30c3d40e7e47c3e96d60b1a976782f64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2008.out +++ /dev/null @@ -1,31 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2008/NO_2008.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.48384445905685425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2009.out b/run/stage_logs/NAPMD_NO/S1/0_2009.out deleted file mode 100644 index a9f1cfd867c9426c37763dcad73abc4b98406d4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2009.out +++ /dev/null @@ -1,31 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2009/NO_2009.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.484789776802063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2010.out b/run/stage_logs/NAPMD_NO/S1/0_2010.out deleted file mode 100644 index 5bae18ce82ae9c314bd3d05224a0c04810b54fa6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2010.out +++ /dev/null @@ -1,50 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2010/NO_2010.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -68 -- PARSING RAW DATA -76 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.6874913056691487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2011.out b/run/stage_logs/NAPMD_NO/S1/0_2011.out deleted file mode 100644 index 743fa7433201ac85b4a9c65d4c700fe0c0be2853..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2011.out +++ /dev/null @@ -1,52 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2011/NO_2011.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -76 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.6867879192034404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2012.out b/run/stage_logs/NAPMD_NO/S1/0_2012.out deleted file mode 100644 index 29c648a67f0c1d0ef51ad7478748fedbab51f89b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2012.out +++ /dev/null @@ -1,57 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2012/NO_2012.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -76 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.7375119050343831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2013.out b/run/stage_logs/NAPMD_NO/S1/0_2013.out deleted file mode 100644 index 22bd42307d4125a9d0f0e3338bbd8d46f7b636da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2013.out +++ /dev/null @@ -1,51 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2013/NO_2013.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.7097502430280049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2014.out b/run/stage_logs/NAPMD_NO/S1/0_2014.out deleted file mode 100644 index 0094ab1ea27eb9a820d587683d704c1485ca9c0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2014.out +++ /dev/null @@ -1,55 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2014/NO_2014.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -34 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.7284210046132406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2015.out b/run/stage_logs/NAPMD_NO/S1/0_2015.out deleted file mode 100644 index 0006c22f617c6c2a977cff841f1eacef9e7041a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2015.out +++ /dev/null @@ -1,62 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2015/NO_2015.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -34 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.749123998483022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2016.out b/run/stage_logs/NAPMD_NO/S1/0_2016.out deleted file mode 100644 index adaac69282745f223f188deae8febca076e0d2b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2016.out +++ /dev/null @@ -1,62 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2016/NO_2016.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -34 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.7494660337766011 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2017.out b/run/stage_logs/NAPMD_NO/S1/0_2017.out deleted file mode 100644 index 92cc05bdf127e4783257c2d6ea0e5530415cc9de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2017.out +++ /dev/null @@ -1,64 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2017/NO_2017.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -103 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -34 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -529 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.750941793123881 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2018.out b/run/stage_logs/NAPMD_NO/S1/0_2018.out deleted file mode 100644 index c641802f671760a56ad7651f2105014951d04e36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2018.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2018/NO_2018.csv -0.15681550900141397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2019.out b/run/stage_logs/NAPMD_NO/S1/0_2019.out deleted file mode 100644 index 24bbc51a111fc6824cd7d5bb4f677d3f2670f767..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2019.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/NO_2019.csv -0.17630621194839477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2020.out b/run/stage_logs/NAPMD_NO/S1/0_2020.out deleted file mode 100644 index c2bcf19f99c45c3d23bb4263d9709828c3e3271b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2020.out +++ /dev/null @@ -1,60 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/NO_2020.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -24 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -28 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -34 -- PARSING RAW DATA -35 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -366 -- PARSING RAW DATA -368 -- PARSING RAW DATA -369 -- PARSING RAW DATA -37 -- PARSING RAW DATA -370 -- PARSING RAW DATA -372 -- PARSING RAW DATA -373 -- PARSING RAW DATA -374 -- PARSING RAW DATA -375 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -534 -- PARSING RAW DATA -540 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.752107810974121 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S1/0_2021.out b/run/stage_logs/NAPMD_NO/S1/0_2021.out deleted file mode 100644 index 8f13b50053af7738c52a38afff3c3a9b78403352..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S1/0_2021.out +++ /dev/null @@ -1,10 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2021/NO_2021.csv -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -0.048458413283030195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_100_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_100_CL(IMC).out deleted file mode 100644 index 6ccc6719775272f991d1ffe142b6ac2b3212faae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_100_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -100_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02370214859644572 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_101_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_101_CL(IMC).out deleted file mode 100644 index 0928f09d5dd800d5ce326523b7f75533115ae7d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_101_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -101_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0250456968943278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_102_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_102_CL(IMC).out deleted file mode 100644 index 40569f64494ecf63f532b84bfcfcbd22523f6101..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_102_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -102_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.023693668842315673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_104_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_104_CL(IMC).out deleted file mode 100644 index 496a7c0257d00cba9a488e351639a10f8cdce4bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_104_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -104_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.019451423486073812 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_105_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_105_CL(IMC).out deleted file mode 100644 index 71b7967fcebfaa3dab7a6fc2c4e9649922e5a4fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_105_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -105_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010502473513285319 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_107_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_107_CL(IMC).out deleted file mode 100644 index 2eefa2ee0751dc6abe44404d1f64734d1d8852f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_107_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -107_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020610098044077554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_108_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_108_CL(IMC).out deleted file mode 100644 index dbff0181338d5448801a7539a1b3c45eb5c7b7f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_108_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -108_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02285658915837606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_109_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_109_CL(IMC).out deleted file mode 100644 index 5cf13b58644613dd53c4420ef49d845b955e9c59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_109_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -109_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02350561221440633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_110_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_110_CL(IMC).out deleted file mode 100644 index b226455bd2fea93e12f3d9ddd13263c080fac351..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_110_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -110_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010013322035471598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_113_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_113_CL(IMC).out deleted file mode 100644 index 279ad358038d3e4cd7aac2bdef06c986427b3402..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_113_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -113_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.022002879778544107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_118_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_118_CL(IMC).out deleted file mode 100644 index bc33671fb263fc46b9fcce26a6407b672072b9da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_118_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -118_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.021218045552571615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_119_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_119_CL(IMC).out deleted file mode 100644 index 5d812a0bfd813d5d2e85ce5d1ab8b47861750fd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_119_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -119_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0227579394976298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_11_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_11_CL(IMC).out deleted file mode 100644 index 13339f3cfc6a2f78e40fba4416a5e674b5605db7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_11_CL(IMC).out +++ /dev/null @@ -1,31 +0,0 @@ -11_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-01-17 13:00:00 1996-12-20 15:00:00 1049291340 1049778180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1049291340_1049778180.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-15 02:00:00 1049793840 1050295800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1049793840_1050295800.npz'] -1998-02-19 04:00:00 1998-12-31 12:00:00 1050390960 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1050390960_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1055052720_1055578320.npz -2007-12-31 15:00:00 2008-12-31 11:00:00 1055578500 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/11_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.15824493964513142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_13_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_13_CL(IMC).out deleted file mode 100644 index de46adbf6e64a002a5bf5b8548c29fd2fd59eaa8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_13_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -13_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0665913184483846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_14_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_14_CL(IMC).out deleted file mode 100644 index c4c71d39592ead793a2ea64ceedf513486067a17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_14_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -14_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.027337968349456787 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_15_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_15_CL(IMC).out deleted file mode 100644 index 98bfd9ffc40f8a5e7ab083ef27bbc5961c4f8ddb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_15_CL(IMC).out +++ /dev/null @@ -1,33 +0,0 @@ -15_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-01-01 17:00:00 1994-12-31 12:00:00 1048217340 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1048217340_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1048741200_1049266800.npz'] -1995-12-31 13:00:00 1996-12-10 15:00:00 1049266860 1049763780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1049266860_1049763780.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1052948880_1053474480.npz'] -2003-12-31 14:00:00 2004-12-31 12:00:00 1053474600 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1053474600_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-29 02:00:00 1054527120 1055049240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1054527120_1055049240.npz'] -2007-01-04 03:00:00 2007-12-31 11:00:00 1055057940 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1055057940_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1055057940_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1055057940_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/15_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16605399847030639 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_18_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_18_CL(IMC).out deleted file mode 100644 index 65029a7b89648cea5492a4327615b4ee341314fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_18_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -18_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01701639493306478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_19_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_19_CL(IMC).out deleted file mode 100644 index 851e07c47205abde82baa26e208b32cd30e7a2b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_19_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -19_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020667529106140135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_1_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_1_CL(IMC).out deleted file mode 100644 index 73571b3d66a02b0f32ff277454976b0433f9ea67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_1_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -1_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.031190017859141033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_20_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_20_CL(IMC).out deleted file mode 100644 index b00c202bdff726b29f06e4987e2f956f56640547..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_20_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -20_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.017881155014038086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_21_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_21_CL(IMC).out deleted file mode 100644 index 6258358c9b241fec462935b9893afb0f3de2134b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_21_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -21_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013102976481119792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_22_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_22_CL(IMC).out deleted file mode 100644 index 05e1857a4de8f2acd3909946058f44f50c32200b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_22_CL(IMC).out +++ /dev/null @@ -1,24 +0,0 @@ -22_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2003-02-03 04:00:00 2003-12-31 12:00:00 1052997360 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1052997360_1053474480.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/22_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.15964365402857464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_23_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_23_CL(IMC).out deleted file mode 100644 index c1076160d47581897a3fffaf819272ca57cd946d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_23_CL(IMC).out +++ /dev/null @@ -1,33 +0,0 @@ -23_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-24 15:00:00 1049793840 1050309540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1049793840_1050309540.npz'] -1998-03-05 17:00:00 1998-12-31 12:00:00 1050411900 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1050411900_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-24 03:00:00 1054001520 1054516500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1054001520_1054516500.npz'] -2006-01-06 01:00:00 2006-12-31 12:00:00 1054535100 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1054535100_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/23_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.17083065509796141 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_24_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_24_CL(IMC).out deleted file mode 100644 index e387811d34c405c88b1eeae9caeb178761af161d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_24_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -24_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00488128662109375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_26_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_26_CL(IMC).out deleted file mode 100644 index aa5348ae2f3e2bd1a413783a7768b615595b5e10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_26_CL(IMC).out +++ /dev/null @@ -1,33 +0,0 @@ -26_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-01-22 17:00:00 1994-12-31 12:00:00 1048247580 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1048247580_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/26_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.2197721481323242 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_270_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_270_CL(IMC).out deleted file mode 100644 index 499e855494707b65741d9f98c66c41afb15212b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_270_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -270_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016103756427764893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_271_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_271_CL(IMC).out deleted file mode 100644 index 967947f92e7f944f7d45964b7611d0c68ffde128..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_271_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -271_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006836557388305664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_272_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_272_CL(IMC).out deleted file mode 100644 index cbdb14a05a2295533ef0e5980eb5df63eead1db4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_272_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -272_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009518051147460937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_274_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_274_CL(IMC).out deleted file mode 100644 index bd38729b9cf63c772a3412c3d2c610435bab1d62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_274_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -274_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010808459917704264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_275_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_275_CL(IMC).out deleted file mode 100644 index bda6aaa504ca9f580d0ba23bea34ebde5db88cf1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_275_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -275_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01219566265741984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_278_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_278_CL(IMC).out deleted file mode 100644 index 5edea9e0c8fb48e8f04b1b9be345e5da71f8ecb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_278_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -278_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012524592876434325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_279_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_279_CL(IMC).out deleted file mode 100644 index 6caace9204713eb66584cdd3690defefb1659d5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_279_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -279_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012591803073883056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_27_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_27_CL(IMC).out deleted file mode 100644 index 9cbd46841c614119b10cfdd14708d171639e5b67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_27_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -27_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009413989384969075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_28_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_28_CL(IMC).out deleted file mode 100644 index ee67fa6a454eb2a60f7be21ebc4a2be277a50ef9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_28_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -28_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.018730390071868896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_29_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_29_CL(IMC).out deleted file mode 100644 index ee0b79b10717ea2c2fba3fa2b337512d737e8ee7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_29_CL(IMC).out +++ /dev/null @@ -1,31 +0,0 @@ -29_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-05-23 03:00:00 1994-12-31 12:00:00 1048420980 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1048420980_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 11:00:00 1049266800 1049793780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1049266800_1049793780.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-25 03:00:00 1052948880 1053465300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1052948880_1053465300.npz'] -2004-01-06 01:00:00 2004-12-31 12:00:00 1053482460 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1053482460_1054001520.npz'] -2004-12-31 12:00:00 2005-02-10 18:00:00 1054001520 1054060920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1054001520_1054060920.npz'] -2007-05-31 13:00:00 2007-12-31 11:00:00 1055270220 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1055270220_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1055270220_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/29_CL(IMC)_1060313040_1060838640.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.09927598635355632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_30_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_30_CL(IMC).out deleted file mode 100644 index e3f2ac67c91fe805ad51cd5aefe9518db2399e73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_30_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -30_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06613576412200928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_31_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_31_CL(IMC).out deleted file mode 100644 index c3165578037bc5ddf0f434b7971adfe695a61d0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_31_CL(IMC).out +++ /dev/null @@ -1,18 +0,0 @@ -31_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2004-10-30 12:00:00 2004-12-31 12:00:00 1053912240 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1053912240_1054001520.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-07-23 23:00:00 1057682160 1057978020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1057682160_1057978020.npz'] -2015-08-19 01:00:00 2015-08-19 22:00:00 1059592380 1059593640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/31_CL(IMC)_1059592380_1059593640.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1282915234565735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_325_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_325_CL(IMC).out deleted file mode 100644 index 61bb0c0e142c5adeddf19dae7883bd77fe6f5ec5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_325_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -325_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.023817360401153564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_326_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_326_CL(IMC).out deleted file mode 100644 index 59fc6bf3cdf127343efd9a7dcdb31a3d70d7d658..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_326_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -326_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012874845663706462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_327_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_327_CL(IMC).out deleted file mode 100644 index b19e3144a7a086f209bfabf3e8e91cc05c4628b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_327_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -327_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016888312498728433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_32_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_32_CL(IMC).out deleted file mode 100644 index c7694c745eb8f79ed23fbbd15c910c9f50c31809..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_32_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -32_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005900883674621582 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_330_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_330_CL(IMC).out deleted file mode 100644 index 2407eec7bf633730981a200d9ca7ff362826927b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_330_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -330_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012137524286905925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_331_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_331_CL(IMC).out deleted file mode 100644 index dad06f86125274b4062b46ee8c2609241bcc6a0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_331_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -331_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016552329063415527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_338_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_338_CL(IMC).out deleted file mode 100644 index 702a473536052ca64f18f495434156dd561ae012..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_338_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -338_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016818320751190184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_347_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_347_CL(IMC).out deleted file mode 100644 index 854647dede3667cf4fd9155c1bfa0565f60e76f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_347_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -347_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008199612299601236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_34_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_34_CL(IMC).out deleted file mode 100644 index 5895fd12a1a5414019ba2560139361f964245082..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_34_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -34_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012724236647288004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_352_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_352_CL(IMC).out deleted file mode 100644 index 8707b96575482775140fc0be02713c746f10abad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_352_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -352_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06604123512903849 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_354_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_354_CL(IMC).out deleted file mode 100644 index d90aa85fa7232ca54b9822ea51c40c92594cc2c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_354_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -354_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06768959760665894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_357_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_357_CL(IMC).out deleted file mode 100644 index f72a2dc14e5b344b59bf6f079f55ed5189d749e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_357_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -357_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005775249004364014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_358_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_358_CL(IMC).out deleted file mode 100644 index 349696685159bbe6c5809efbcdb26fe330e248ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_358_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -358_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06469118197758993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_359_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_359_CL(IMC).out deleted file mode 100644 index 26cb89bee245f51a76f2379dee8a7e4df40e9cd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_359_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -359_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06391921043395996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_35_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_35_CL(IMC).out deleted file mode 100644 index 7bac69a6e64933fa05d41cd3eddcc40b0ac98a37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_35_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -35_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002494919300079346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_360_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_360_CL(IMC).out deleted file mode 100644 index b98b7f62aab1428aff2780222cd88d7c4f6c89d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_360_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -360_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05709454615910848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_361_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_361_CL(IMC).out deleted file mode 100644 index b09972e67d52a28a61301347fc82465e442326e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_361_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -361_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0629948059717814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_363_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_363_CL(IMC).out deleted file mode 100644 index c70b33e10016442818052430f0009b093edd09f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_363_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -363_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06707154512405396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_366_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_366_CL(IMC).out deleted file mode 100644 index a80bdfcbc76e17fc7e89b3898c8c1f2cf73d160c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_366_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -366_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0027864535649617514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_368_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_368_CL(IMC).out deleted file mode 100644 index 0f1b652607ed72de94766444b540a319a4553b9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_368_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -368_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0016477028528849283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_369_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_369_CL(IMC).out deleted file mode 100644 index db27c5f25d4d9e07927196ec384fd756854b5104..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_369_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -369_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0014824271202087402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_370_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_370_CL(IMC).out deleted file mode 100644 index 9c285230b5ebe8599cb0679541a7eb6dcd75967b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_370_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -370_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0044658859570821125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_372_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_372_CL(IMC).out deleted file mode 100644 index ec06ca567623a14a9fa93aef45cd41abb3ead758..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_372_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -372_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002074285348256429 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_373_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_373_CL(IMC).out deleted file mode 100644 index 76294b6797c6e77b61d05beab4d0de1948335fd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_373_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -373_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0052827278772989905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_374_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_374_CL(IMC).out deleted file mode 100644 index 9dab553bc0f76a2276e454726096c4e2f44d9ecb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_374_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -374_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003502531846364339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_375_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_375_CL(IMC).out deleted file mode 100644 index 4d32f01c491bcd1b9597958d25a139db1dd51318..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_375_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -375_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003739337126413981 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_37_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_37_CL(IMC).out deleted file mode 100644 index 7d1cc3e8cdbbeb8ff5fce12c6cd1bc5111bce821..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_37_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -37_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02193675438563029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_3_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_3_CL(IMC).out deleted file mode 100644 index 2fb862641030dc6c058434de9c097c1fd809e5db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_3_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -3_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.046170735359191896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_40_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_40_CL(IMC).out deleted file mode 100644 index f2b17ad07e800080deea175d7e4cfedf9e5564d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_40_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -40_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.061887749036153156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_41_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_41_CL(IMC).out deleted file mode 100644 index 91308b749b2bc9f85c555862e1a1f8929daae166..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_41_CL(IMC).out +++ /dev/null @@ -1,31 +0,0 @@ -41_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-04-12 04:00:00 1996-12-31 12:00:00 1049414640 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1049414640_1049793840.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1049793840_1050319440.npz'] -1997-12-31 13:00:00 1998-12-31 12:00:00 1050319500 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1050319500_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-30 15:00:00 1054527120 1055051460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1054527120_1055051460.npz'] -2006-12-31 16:00:00 2007-12-31 11:00:00 1055052960 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1055052960_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1055052960_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1055578260_1056104100.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1055052960_1055578320.npz -2007-12-31 12:00:00 2008-12-30 15:00:00 1055578320 1056104100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1055578260_1056104100.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/41_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16808567444483438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_42_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_42_CL(IMC).out deleted file mode 100644 index 416b68b500b0641538e22050b6be6ac451527e1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_42_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -42_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003921997547149658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_43_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_43_CL(IMC).out deleted file mode 100644 index fb22cf04769d8fd18f72a369a11cfa3f8a499f56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_43_CL(IMC).out +++ /dev/null @@ -1,20 +0,0 @@ -43_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2007-04-19 05:00:00 2007-12-31 11:00:00 1055209260 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1055209260_1055578320.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1055209260_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1055209260_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 15:00:00 2009-12-31 12:00:00 1056105540 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1056105540_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/43_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0809298594792684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_44_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_44_CL(IMC).out deleted file mode 100644 index 863681ff36d839b527c378d05de2eb816839570c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_44_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -44_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06177083651224772 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_45_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_45_CL(IMC).out deleted file mode 100644 index 515783e51e02dd8bdcf4e89dc54850288a1b8518..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_45_CL(IMC).out +++ /dev/null @@ -1,33 +0,0 @@ -45_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-29 21:00:00 1052423280 1052946540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1052423280_1052946540.npz'] -2003-01-07 04:00:00 2003-12-31 12:00:00 1052958480 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1052958480_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 11:00:00 1053474540 1054001460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1053474540_1054001460.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-29 03:00:00 1054527120 1055049300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1054527120_1055049300.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 11:00:00 1057156560 1057682100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1057156560_1057682100.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/45_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16458218495051066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_46_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_46_CL(IMC).out deleted file mode 100644 index 8a0f9cd2ea8f1b1b28247483d75f7b2f4e23e8da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_46_CL(IMC).out +++ /dev/null @@ -1,33 +0,0 @@ -46_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 15:00:00 1994-12-31 12:00:00 1048215780 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1048215780_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-11-26 23:00:00 1049266800 1049744100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1049266800_1049744100.npz'] -1997-02-27 17:00:00 1997-12-22 21:00:00 1049877660 1050307020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1049877660_1050307020.npz'] -1998-01-07 06:00:00 1998-12-31 12:00:00 1050329160 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1050329160_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 03:00:00 1059786000 1060312500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1059786000_1060312500.npz'] -2017-01-03 01:00:00 2017-12-31 12:00:00 1060316700 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1060316700_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/46_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16044034957885742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_48_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_48_CL(IMC).out deleted file mode 100644 index 5b834b8ba15bfc4e76be4f58ce8b8ff656c6043f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_48_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -48_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01881984869639079 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_4_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_4_CL(IMC).out deleted file mode 100644 index b09945be7b35743c15b1cc3f63394beb8c667681..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_4_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -4_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02182956536610921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_51_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_51_CL(IMC).out deleted file mode 100644 index 1a6614d5a8630cbfa78bfb9a323ad02b8caf89f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_51_CL(IMC).out +++ /dev/null @@ -1,33 +0,0 @@ -51_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1049266800_1049793840.npz'] -1996-12-31 13:00:00 1997-12-31 12:00:00 1049793900 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1049793900_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 10:00:00 1059786000 1060312920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1059786000_1060312920.npz'] -2016-12-31 12:00:00 2017-12-31 11:00:00 1060313040 1060838580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1060313040_1060838580.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/51_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16863387425740559 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_529_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_529_CL(IMC).out deleted file mode 100644 index 6ff4e1fc2b74cb9de67f5d619cfd570a1ca5cc4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_529_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -529_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0015248974164326985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_52_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_52_CL(IMC).out deleted file mode 100644 index ceb9cf47d55e019c2df517b0365751e8e646757d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_52_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -52_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00903148651123047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_534_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_534_CL(IMC).out deleted file mode 100644 index 45e17c0e3d91b76f8d0d459123016155257e56f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_534_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -534_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0015487591425577798 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_540_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_540_CL(IMC).out deleted file mode 100644 index 432847f3ba39db0f51e0c26ca46e2c7801cfc84d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_540_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -540_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003620890776316325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_54_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_54_CL(IMC).out deleted file mode 100644 index afe2cde42872d59f51f9715f3838d958756cf654..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_54_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -54_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05465439955393473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_57_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_57_CL(IMC).out deleted file mode 100644 index d551710752877551aee06eb3f2e755607de4337c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_57_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -57_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.062167962392171226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_59_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_59_CL(IMC).out deleted file mode 100644 index 4b63d6eb0d873ed9b33822b900bd7d4ae3f0cddc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_59_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -59_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02992138862609863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_5_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_5_CL(IMC).out deleted file mode 100644 index e83c3a56c2c242902fe9c52ea8573348002eaf9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_5_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -5_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01475600004196167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_60_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_60_CL(IMC).out deleted file mode 100644 index f966fe61f63eb47f7fbf8409c45c7087074c264c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_60_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -60_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005865645408630371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_61_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_61_CL(IMC).out deleted file mode 100644 index 772b78ae3a2e8e186711e612d4ab60cf7a83bee7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_61_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -61_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.024391122659047446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_62_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_62_CL(IMC).out deleted file mode 100644 index 3a324cde5505de8528fe9ba3bd339279a39456d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_62_CL(IMC).out +++ /dev/null @@ -1,33 +0,0 @@ -62_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 02:00:00 1056105360 1056630360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1056105360_1056630360.npz'] -2010-01-01 17:00:00 2010-12-31 12:00:00 1056632700 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1056632700_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 03:00:00 1059786000 1060312500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1059786000_1060312500.npz'] -2017-01-03 01:00:00 2017-12-31 12:00:00 1060316700 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1060316700_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/62_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1653838316599528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_63_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_63_CL(IMC).out deleted file mode 100644 index 191ed16973b49fbaa914529cb457c7aa3fad74c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_63_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -63_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.027178951104482017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_64_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_64_CL(IMC).out deleted file mode 100644 index 9d8e6dcb7772c68b1ca4dbd0e32105f2af1b4267..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_64_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -64_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.019625536600748696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_65_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_65_CL(IMC).out deleted file mode 100644 index 9b04222cda672de87b47dade58fa1c9ec10ac211..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_65_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -65_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008746107419331869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_68_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_68_CL(IMC).out deleted file mode 100644 index 6afad569c5a2710e06ff64e44feee161186c3cd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_68_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -68_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0022218982378641766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_6_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_6_CL(IMC).out deleted file mode 100644 index 0f2e85c01915a6c60c2ae483f63de47a98c3b855..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_6_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -6_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006769907474517822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_76_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_76_CL(IMC).out deleted file mode 100644 index 34c7283adbefdbc47b25e4f6465c3e0c5b799b47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_76_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -76_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006073153018951416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_79_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_79_CL(IMC).out deleted file mode 100644 index fc18cbf791fd233163b3f22cc98b1a4097c9f58c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_79_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -79_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.022146058082580567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_80_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_80_CL(IMC).out deleted file mode 100644 index 7ce4e32af785935818bad24e2069b2f07f672bd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_80_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -80_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01950173775355021 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_84_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_84_CL(IMC).out deleted file mode 100644 index 7ea4558fe7a03b845ca821da7168bff5f59d0705..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_84_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -84_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02466493844985962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_86_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_86_CL(IMC).out deleted file mode 100644 index 0b82e4f7a2a832ce6a49966a099f6d2d4d28128c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_86_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -86_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.022768143812815347 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_87_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_87_CL(IMC).out deleted file mode 100644 index 16f5eb0c88a7bf7c846312e297465d74b79a01c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_87_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -87_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02331654230753581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_8_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_8_CL(IMC).out deleted file mode 100644 index a3d6905165b8faea0a4369510bcce0cbc930caef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_8_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -8_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020948302745819092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/0_9_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/0_9_CL(IMC).out deleted file mode 100644 index dc07789c04e076c9e5a4b4aa07df503888be5aee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/0_9_CL(IMC).out +++ /dev/null @@ -1,22 +0,0 @@ -9_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2005-12-21 04:00:00 2005-12-21 23:00:00 1054512240 1054513380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1054512240_1054513380.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2006-01-03 02:00:00 2006-12-31 12:00:00 1054530840 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1054530840_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno/temporary_S1/9_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.10940837462743123 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/1_103_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/1_103_CL(IMC).out deleted file mode 100644 index adf425d5f5f5f61552608d8597bbe05a46228e3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/1_103_CL(IMC).out +++ /dev/null @@ -1,5 +0,0 @@ -103_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -NO VALID DATA TO WRITE OUT AFTER REMOVING UNIQUE STATION DATA WITH EXTENT < 31 DAYS. -STATION WILL NOT CONTINUE IN PIPELINE. \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S2/1_362_CL(IMC).out b/run/stage_logs/NAPMD_NO/S2/1_362_CL(IMC).out deleted file mode 100644 index 3e1f07d9429c098308e4eef1bcfa0641ed236bc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S2/1_362_CL(IMC).out +++ /dev/null @@ -1,5 +0,0 @@ -362_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -NO VALID DATA TO WRITE OUT AFTER REMOVING UNIQUE STATION DATA WITH EXTENT < 31 DAYS. -STATION WILL NOT CONTINUE IN PIPELINE. \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_100_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_100_CL(IMC).out deleted file mode 100644 index 8a4629f0777c58f40a08d1b710364fe952d80507..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_100_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -100_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1041733781496683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_101_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_101_CL(IMC).out deleted file mode 100644 index 1897ae246ab34c3cb7537dab036d732c387c058c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_101_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -101_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.053357462088267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_102_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_102_CL(IMC).out deleted file mode 100644 index 021b6fc89b011af0327b037a8cffb1873eba0940..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_102_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -102_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0918874621391297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_104_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_104_CL(IMC).out deleted file mode 100644 index 3fa653efa3fef6d9be695b8ee418f3427de086a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_104_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -104_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0098931392033894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_105_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_105_CL(IMC).out deleted file mode 100644 index 0f3b7c6dc6de9e1f946d0690d3f77f36a9dd4c41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_105_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -105_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8671943664550781 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_107_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_107_CL(IMC).out deleted file mode 100644 index c4b9f5f65a705604c092f41be4c0a5aedb4d4f30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_107_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -107_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.007305924097697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_108_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_108_CL(IMC).out deleted file mode 100644 index 4b1e7c32cfee048ae631b9b10197947cf220bc12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_108_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -108_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1314125577608745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_109_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_109_CL(IMC).out deleted file mode 100644 index d6bf2ccc7109dac9125c4555f03cb4a8d870cbf1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_109_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -109_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2346834659576416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_110_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_110_CL(IMC).out deleted file mode 100644 index eb912b3f7cb56ad0b12edebe9a1cc2d30382965b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_110_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -110_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8593647678693136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_113_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_113_CL(IMC).out deleted file mode 100644 index 66c9fa5daf11914a1bac65bb09942c475b07a7a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_113_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -113_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1455126921335856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_118_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_118_CL(IMC).out deleted file mode 100644 index 347e90e28781a5e0dcccb98a0b3de7a05621ee13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_118_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -118_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0138387560844422 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_119_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_119_CL(IMC).out deleted file mode 100644 index cbf91ceba073b6344774941f8cd5ec09b84c221b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_119_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -119_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.120165181159973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_11_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_11_CL(IMC).out deleted file mode 100644 index 04b452e570954179474d277b2cf32c7c4a53a8e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_11_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -11_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9201181332270305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_13_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_13_CL(IMC).out deleted file mode 100644 index 46ad73e76f95dfd0dfdf63bae2f8d44fc859afd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_13_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -13_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1538551529248555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_14_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_14_CL(IMC).out deleted file mode 100644 index 80ada88735229c6f15c2bfee8b500f4a003504b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_14_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -14_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2228702028592429 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_15_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_15_CL(IMC).out deleted file mode 100644 index 7b260372b5ec6e34ce6882ca0fb11854089e4dd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_15_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -15_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.0421670993169148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_18_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_18_CL(IMC).out deleted file mode 100644 index bf6f0a6324757361e252c16d4354b64ed6ec8e28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_18_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -18_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9974979797999064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_19_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_19_CL(IMC).out deleted file mode 100644 index e00d9e7a46e345af32a417396cfc008b10d0e472..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_19_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -19_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1025920112927754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_1_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_1_CL(IMC).out deleted file mode 100644 index 79ffad9f346d68cb99690681b5ac7b2bcc98d9cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_1_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -1_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3362308621406556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_20_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_20_CL(IMC).out deleted file mode 100644 index 10d4a33d9bbdad7851d2a62758cc56140dd708aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_20_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -20_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1407636801401775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_21_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_21_CL(IMC).out deleted file mode 100644 index fc1060053f7bfdd5a82ca833137f14a7c02eba8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_21_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -21_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7285183111826579 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_22_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_22_CL(IMC).out deleted file mode 100644 index f05ac01b223f498b0814535d9620668c8f1efc7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_22_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -22_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5049971024195352 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_23_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_23_CL(IMC).out deleted file mode 100644 index 60bb23f100f18f979455a45c95c8f1eddd1e8ce1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_23_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -23_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.087265690167745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_24_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_24_CL(IMC).out deleted file mode 100644 index c5829065bd7e9615d9df4faa94527d02d7b20da4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_24_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -24_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7030500809351603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_26_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_26_CL(IMC).out deleted file mode 100644 index 370b9b04bafbbfea6c8d7d5fb8cd36143dc1d556..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_26_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -26_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -3.4620571374893188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_270_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_270_CL(IMC).out deleted file mode 100644 index c8ea06d9e53478ee5c23a042a2aae0a1b2dbe526..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_270_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -270_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8269031286239624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_271_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_271_CL(IMC).out deleted file mode 100644 index 3981a53d4f8fb939ba628f0827401917aa499e25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_271_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -271_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8345122456550598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_272_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_272_CL(IMC).out deleted file mode 100644 index d222e08704bd14f348bd928f08840b2dee47a5d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_272_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -272_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6446759819984436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_274_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_274_CL(IMC).out deleted file mode 100644 index 150b29e86775ae226747899758c171137df52dd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_274_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -274_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.794493822256724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_275_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_275_CL(IMC).out deleted file mode 100644 index 0319f2dbe63749f5802ff5a54ed040ebc3774307..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_275_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -275_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8277963081995646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_278_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_278_CL(IMC).out deleted file mode 100644 index 621275f1b921954c656e9a95c27005d2456d7c2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_278_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -278_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7288254936536153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_279_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_279_CL(IMC).out deleted file mode 100644 index 63b57c4ee0057b5a37f62134ee6efebdb7d4b874..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_279_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -279_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8220346132914226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_27_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_27_CL(IMC).out deleted file mode 100644 index abd81085569e90cd3a9806f4d66e55fc13b4bac6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_27_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -27_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8270825346310934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_28_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_28_CL(IMC).out deleted file mode 100644 index 421a9029477c8be23b782a2a6113cd84a3f2c949..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_28_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -28_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6323740561803182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_29_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_29_CL(IMC).out deleted file mode 100644 index 3ea28e9a070c772aa57c18f5ee149f4468a8cd9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_29_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -29_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.896317966779073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_30_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_30_CL(IMC).out deleted file mode 100644 index 83162772c9f8ae1818e9ff9e4d52fa8f8ad7fa25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_30_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -30_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.237459131081899 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_31_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_31_CL(IMC).out deleted file mode 100644 index 111c388a18a28c9f97a8e75758319bc6baa6f8f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_31_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -31_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1306594769159952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_325_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_325_CL(IMC).out deleted file mode 100644 index 6abc9ed54bfb874186e1e1f91e03313190b3dc3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_325_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -325_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1609372258186341 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_326_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_326_CL(IMC).out deleted file mode 100644 index 06867001df01867219b505dbd3d2022701b48877..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_326_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -326_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0043010671933492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_327_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_327_CL(IMC).out deleted file mode 100644 index 0caf35835c7987b434182f8a21c27834c3e939e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_327_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -327_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9335119962692261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_32_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_32_CL(IMC).out deleted file mode 100644 index ebe948a2c8fe718e0228662cfa652e44512eeda5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_32_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -32_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5800500988960267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_330_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_330_CL(IMC).out deleted file mode 100644 index a5f481d28ee24b1a59cb00480a933dc64640882b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_330_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -330_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8832521160443624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_331_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_331_CL(IMC).out deleted file mode 100644 index 34a1b8adb5a398d0c1ed23a7d4528b8a9e2bf17c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_331_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -331_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9789249936739604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_338_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_338_CL(IMC).out deleted file mode 100644 index dfdbedfde241519a481fbec5085a08baaa0624f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_338_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -338_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9468734820683797 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_347_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_347_CL(IMC).out deleted file mode 100644 index 752fe625745afe2a7c9b5686c1a5daa43a175df3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_347_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -347_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8195946176846822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_34_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_34_CL(IMC).out deleted file mode 100644 index 1b8667ea2453148bc081c52b5e0792da3024da17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_34_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -34_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7645588517189026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_352_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_352_CL(IMC).out deleted file mode 100644 index df850cc0d6d8fed863d8e67417a1d50a14685898..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_352_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -352_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1267123103141783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_354_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_354_CL(IMC).out deleted file mode 100644 index a134d2f4a4fefaa2ee8f1653f0fdfdfab276d3a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_354_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -354_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.065135709444682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_357_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_357_CL(IMC).out deleted file mode 100644 index 82bc3999bf2e96491d179e042ed27abc58659d3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_357_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -357_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6085825244585673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_358_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_358_CL(IMC).out deleted file mode 100644 index 2ec63833eb09b557e3d267f7c8c5a4ba1e6a8722..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_358_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -358_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8912299712498983 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_359_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_359_CL(IMC).out deleted file mode 100644 index d3f2985a86abb10c08e6bda75e2f29c1a2688050..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_359_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -359_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9064433892567954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_35_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_35_CL(IMC).out deleted file mode 100644 index 6e438bec37f87f061c47a7dc1adc68761e60c330..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_35_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -35_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.49510449965794884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_360_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_360_CL(IMC).out deleted file mode 100644 index c110e1a6e4bda07b68e3accd409533ea82c8ef45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_360_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -360_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.727564271291097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_361_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_361_CL(IMC).out deleted file mode 100644 index 4b98c60b1be2c4a87fdc9c396ccce3e7e51d3d2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_361_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -361_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.0401650150616963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_363_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_363_CL(IMC).out deleted file mode 100644 index 7e6a9b6e704d88c17d77ba4773aa3199233dfadd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_363_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -363_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9071393251419066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_366_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_366_CL(IMC).out deleted file mode 100644 index efb31d1264c50b0cc86f6c136de96a8da1b0824f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_366_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -366_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6094760537147522 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_368_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_368_CL(IMC).out deleted file mode 100644 index 7ee6ca120a4a43e2f89edb14c7831eb81799e31f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_368_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -368_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5344449559847514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_369_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_369_CL(IMC).out deleted file mode 100644 index 960d10c585087eee13b1095ada60ead883923571..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_369_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -369_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6054635405540466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_370_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_370_CL(IMC).out deleted file mode 100644 index bfa3481a95559e3b1dd389a1a3dabbfbbe9512a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_370_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -370_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6973217129707336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_372_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_372_CL(IMC).out deleted file mode 100644 index 24bb5ad9c9b30488f433368da0365c759c572d69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_372_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -372_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7002572615941366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_373_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_373_CL(IMC).out deleted file mode 100644 index c7a636b6b012ee84db54af4328cfec54930f76aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_373_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -373_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5526932954788208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_374_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_374_CL(IMC).out deleted file mode 100644 index 08fabc7484e06762a4927630b0dcdcf6238f38e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_374_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -374_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.692394765218099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_375_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_375_CL(IMC).out deleted file mode 100644 index 97964e79b4c08c60a59e52aacacecd08ca3818a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_375_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -375_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.598185133934021 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_37_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_37_CL(IMC).out deleted file mode 100644 index b8309746f74b27c7a7f39a2b5588c168625f7192..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_37_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -37_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0142685135205587 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_3_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_3_CL(IMC).out deleted file mode 100644 index cce56e6c1eabf613c80561331b54d3b736f443be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_3_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -3_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4813773910204568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_40_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_40_CL(IMC).out deleted file mode 100644 index 7ddb0a357e06d82a8e3dfa5147bed895751ee359..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_40_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -40_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.0378968000411986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_41_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_41_CL(IMC).out deleted file mode 100644 index 706936afbc7d33e1458a7916b3a5a9419c9ee2bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_41_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -41_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7754052877426147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_42_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_42_CL(IMC).out deleted file mode 100644 index 5119955cefb495a5b0a393195b79b273a03414da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_42_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -42_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5864206631978353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_43_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_43_CL(IMC).out deleted file mode 100644 index 1ede85a2c355d91c2a21c934ec87b519d9f497e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_43_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -43_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2605819225311279 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_44_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_44_CL(IMC).out deleted file mode 100644 index 053891a4a8f18e625b6ab6aeb35ac6f7380d0784..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_44_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -44_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.237116567293803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_45_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_45_CL(IMC).out deleted file mode 100644 index c891f3baa2a7a90ccb022969389f2124525bb3ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_45_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -45_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.213646650314331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_46_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_46_CL(IMC).out deleted file mode 100644 index 1e4beeffbac382a2d81f6cb67b4c5b55539b06ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_46_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -46_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.0560505509376528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_48_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_48_CL(IMC).out deleted file mode 100644 index e3fc4c422732db05abfa5c55dda1276dfee01f6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_48_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -48_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1240021427472433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_4_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_4_CL(IMC).out deleted file mode 100644 index 54d4f92d22c5b7dc9abf4fbf83615104e216dcd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_4_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -4_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0190308014551799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_51_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_51_CL(IMC).out deleted file mode 100644 index 6cc4a921454ac998a87643e8b645eea5ce44907c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_51_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -51_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1923863530158996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_529_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_529_CL(IMC).out deleted file mode 100644 index 8348106b9637c7c7d1f453747372835fae2de212..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_529_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -529_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5889712889989217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_52_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_52_CL(IMC).out deleted file mode 100644 index 2f2d66a60b431d547070fab960ceba60632a31ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_52_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -52_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7356642882029215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_534_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_534_CL(IMC).out deleted file mode 100644 index 929ec61c6b2a54e93db5525dfd9c1ab0b9c50772..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_534_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -534_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5312331398328145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_540_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_540_CL(IMC).out deleted file mode 100644 index 820f5ac6c71e88f00fcfdc684bed786e94490676..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_540_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -540_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6193882266680399 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_54_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_54_CL(IMC).out deleted file mode 100644 index 87c1be5577a3a8ec1a3434f915fe48e6c38fef06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_54_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -54_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.107939624786377 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_57_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_57_CL(IMC).out deleted file mode 100644 index aa92b60d2160b8e83e54c9fd8e9f7fe14bc659cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_57_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -57_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.2638583103815715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_59_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_59_CL(IMC).out deleted file mode 100644 index a3bf6a5e4c54201d55df9e813d20780b7ff2a43d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_59_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -59_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3152071793874105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_5_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_5_CL(IMC).out deleted file mode 100644 index 1a1e7db48e9b72314959528bce4fcde81d283e04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_5_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -5_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8617839097976685 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_60_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_60_CL(IMC).out deleted file mode 100644 index 314e63198b27aea733f6771b6c04653ff5b2e76c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_60_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -60_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6430666009585063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_61_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_61_CL(IMC).out deleted file mode 100644 index d5ffa9f57c2795dc695ceb7de776cc3a53625bb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_61_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -61_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4890523036321004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_62_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_62_CL(IMC).out deleted file mode 100644 index 466f029b2d8780f1607efac126498b4e25b889a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_62_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -62_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -3.241082799434662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_63_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_63_CL(IMC).out deleted file mode 100644 index 51c38737dce01fbf0098a08b6ee0e33ac809598b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_63_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -63_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2727133711179097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_64_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_64_CL(IMC).out deleted file mode 100644 index 75799dbad99cdae91fc6d6d0bf5596c0a666d177..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_64_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -64_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8283494710922241 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_65_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_65_CL(IMC).out deleted file mode 100644 index e7deca8429030c6b0e4d944c04c81e5ef337cc0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_65_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -65_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7284071365992228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_68_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_68_CL(IMC).out deleted file mode 100644 index 36be77ce11fd4c6ce4d10c04f8c60c8ab9685b49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_68_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -68_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6525685906410217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_6_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_6_CL(IMC).out deleted file mode 100644 index 49e5eb7f7facd6c44fdaec333ad8a5e820ceea32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_6_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -6_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7860478242238362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_76_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_76_CL(IMC).out deleted file mode 100644 index 389307ba850628d06b2d25697cc9109876347fdf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_76_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -76_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7464397589365641 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_79_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_79_CL(IMC).out deleted file mode 100644 index 67c0e123acaba0ee13d28f2d1ca962fee5bfac30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_79_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -79_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0718465209007264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_80_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_80_CL(IMC).out deleted file mode 100644 index 0ff59506046aa6d9be9449784ed17d6a3abe2bcb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_80_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -80_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.120365810394287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_84_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_84_CL(IMC).out deleted file mode 100644 index 9ee7c7452fb55f0b041896e6e54c6defb0623f5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_84_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -84_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9316850741704304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_86_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_86_CL(IMC).out deleted file mode 100644 index a5b0306fe3aa00d961a662bd1d138a7c54f53f0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_86_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -86_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.107424525419871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_87_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_87_CL(IMC).out deleted file mode 100644 index daea363c1b62a501c1bd0502d73c4cb3344e6ae2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_87_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -87_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1527140855789184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_8_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_8_CL(IMC).out deleted file mode 100644 index 5df366fffd5afb59392ae7b87d82f8b61707867f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_8_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -8_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0507174928983052 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/S3/0_9_CL(IMC).out b/run/stage_logs/NAPMD_NO/S3/0_9_CL(IMC).out deleted file mode 100644 index 361071e8d688a0b7764e887a929063d7795c99b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/S3/0_9_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -9_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3726325472195944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_100_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_100_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 76b263419d42ea70b564abeb01e4403c37bf8d65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_100_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9312122782071431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_100_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_100_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 94ef268c56b41637cd4a6b30756127574fe2d6e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_100_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6860204458236696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_100_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_100_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 946c164462efa2a3ae0c0792dc22d639945127c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_100_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.923728346824646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_101_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_101_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f4b9707972eecfab1d10d620261001a15c971f34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_101_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -101_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4444529414176941 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_101_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_101_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 27e120dd548a5f10185a36989d2dfacf139b854c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_101_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -101_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6815017580986025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_101_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_101_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index c151c314c7f319fe33acc2ed1271fe93283d84d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_101_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -101_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3919921278953552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_102_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_102_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f8dc6e8590b0973ea4f01b81a54975701af7e730..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_102_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -102_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4058651526769004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_102_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_102_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c8cd09b89a15081a1f908ed6b2a65188fd981f60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_102_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -102_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5583182017008463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_102_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_102_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 2c34daecdc82812000d4c25a6fe4eb2f5cb1b030..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_102_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -102_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9112890720367431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_104_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_104_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 61db6c8afe10ab7be5bd8acc322f7a91b494064b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_104_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7201691667238871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_104_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_104_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 24e1db0817c4399eb7028312f74e40c64a2fc91a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_104_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2743260622024537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_104_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_104_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index e9ac8e29179f44ce925103687c26a12c852322f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_104_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8929513533910116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_105_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_105_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 7a4a5a54d9474f77d52b03900cad35497eb19dbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_105_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5497407039006551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_105_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_105_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 731b462f908ee225e062b8471c21b7bf07bf8886..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_105_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8620147148768107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_105_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_105_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 4339c004c2b46ac83d916471b0b410593b276a91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_105_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.508191665013631 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_107_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_107_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 4fd0e87045bac8393cce626bc72fe589e0a486f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_107_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2721328735351562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_107_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_107_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 4e89db8ebd18285e3a42befd01284250163dfaa3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_107_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1719736536343892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_107_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_107_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 7c6cfd3acefd99ba9d0d2ac7eefd239f5b86ebee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_107_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7756015419960022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_108_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_108_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 4bb2e401e5bde2b8edee3109ad79daad0983e30b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_108_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2183576146761577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_108_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_108_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 718568d377bcb88144284f36a7e7bb4ee0e1f837..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_108_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2446677088737488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_108_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_108_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index aa05f13a7f8b066f158d5bfa32fb8bc09a35b806..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_108_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.347024420897166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_109_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_109_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f0e24f7fce1faa1336735c5d98227fb51b1e2e15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_109_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9120565017064413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_109_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_109_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 2eec9b2db4b21591fd8c8727590668e02ab4f660..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_109_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2442062497138977 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_109_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_109_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 1b4371d49cde63cdae93f30ab4357058154e7769..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_109_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4459150393803915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_110_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_110_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 8324851dcf1e769c4c11dec9cfab7b998806caa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_110_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4601356029510498 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_110_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_110_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 1f7778179e995acf8f44bdf66b53cb1285eacad3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_110_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7977905591328939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_110_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_110_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index ed05256d101eba5d5eb3d529b327d8d96f925984..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_110_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8172218481699626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_113_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_113_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index a8fabfe8684d6e9b3e48dcd59469b84cb623030a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_113_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9113554199536641 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_113_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_113_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e99efd96db3185c7d9f50ba8438734d1e9a36de1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_113_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2464506864547729 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_113_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_113_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 6e5ec434369b4bc22789a498a2916d9f85d71bd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_113_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4034844279289245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_118_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_118_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 7e41c0b1f296acb720a60495a443ce97fbaa33c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_118_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7515519738197327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_118_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_118_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e686cc4dd3cf5047a4139b724b22b5155b034b25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_118_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0447420676549275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_118_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_118_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 722b942390138c37f760686790855c0253c2b078..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_118_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3235553542772929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_119_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_119_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 894554c296e8493cfc7b0ed9609408fba861d745..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_119_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9479767958323161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_119_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_119_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 3fce14439eaaf7f6546ca1a610b2301e46fa31ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_119_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.695875898996989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_119_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_119_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 6c8bcaa51e59d40b582ecb004afc08eac267808b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_119_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8983106215794882 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_11_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_11_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 03e772163ce55279152058370ea6569369fc98c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_11_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.79876024723053 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_11_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_11_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 114ee95eac569ebb0df7aa485e11303de459c508..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_11_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.359977451960246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_11_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_11_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 8b93eafba0ad3916d56ee188b8b3233d90e3d323..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_11_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -4.825663220882416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_13_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_13_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2724382c3bd7dd306d8df2a5ac6c66e9641bed5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_13_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9322833657264709 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_13_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_13_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index baae7154d5215e1dd4673d47904f9c363e86a8cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_13_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.204856197039286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_13_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_13_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index d16d65eedc87b22afd0daaf74f183e402efed397..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_13_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1314276893933615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_14_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_14_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b68b760884b89a83c758f57783b35dde31e35237..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_14_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5296125451723734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_14_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_14_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e874ccfecdac8840592cb0922df14d83f35134aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_14_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9506296992301941 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_14_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_14_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index d8193776fa9c01b492a6c03d6a379c9d0f5a0eaf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_14_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.8519267797470094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_15_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_15_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f026428289c656684dc0d75399195e6840dbb5d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_15_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.071568707625071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_15_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_15_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 33ec699ff6d702b0a9af9d7118647cfa899ab024..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_15_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.507679545879364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_15_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_15_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 5efe3ea6b2d45bb19b2cf4ddfd9da4149d8c5611..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_15_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.873524741331736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_18_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_18_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index fd2d0f7e5729f1916eb20c17a873f6a3e7c05bec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_18_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9688953836758931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_18_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_18_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 5bfa610660791831556f9808ea25577d7033a0f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_18_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3353522936503093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_18_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_18_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 3a28d6cd1f7a654e28b85b33d6cc83b68482313d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_18_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9021781881650288 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_19_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_19_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 338dcfa83b9cbd0e7eedff808bcde4f69659927a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_19_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8903473416964213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_19_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_19_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 9269162a3dab4f2054a29425d1c66db931d52e67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_19_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2366356174151103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_19_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_19_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index ce467862ab2e3c06fb350fdcec8214a49086fd26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_19_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3277234037717185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_1_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_1_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b3d5b48f6fc4d5e71db42038699d97c99fde88ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_1_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.086742607752482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_1_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_1_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index a5842ade0161bb2cb4ac33130491c6bff69ced65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_1_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.535647209485372 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_1_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_1_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 1e586444ad5516a62d32dd9198e51b28187db955..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_1_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1972081383069357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_20_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_20_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index e05f756d8a43de0ea3491c8aaf53c2d512350a7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_20_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7545537789662679 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_20_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_20_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e7ce1c7b8a801a4c7d3ba28e2ef91859d80cd970..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_20_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0562771081924438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_20_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_20_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index cfc3b0770e64548f347ce2f65b7c8b4a5bde4ffe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_20_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31218871275583904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_21_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_21_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 44e374cba726a2a97c94a8c31b1f725d3bb6b85b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_21_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6720488826433818 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_21_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_21_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index ce6a4cfe6d09f18732b40947a7618d3b4d206d97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_21_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.005063740412394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_21_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_21_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index bec6809390cdda0e82b4c24e8b35cd82ef1247b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_21_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1453891197840373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_22_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_22_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 04c87ccd8b457d643d58e7aebb0b2c325a7b9903..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_22_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.123402694861094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_22_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_22_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 527df204d790f7fb38995024fcf083d7b4e5e7cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_22_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8888875683148703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_22_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_22_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 1663b0ff7427c2035d2692c4454408db37dd9752..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_22_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.203584329287211 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_23_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_23_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b71af246f98d237cc0944b4269381e239790593c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_23_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.069265782833099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_23_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_23_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 85913798d6d9de21aa3fa481f8c21855063c1d73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_23_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.311744105815888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_23_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_23_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index e8366c0cf19e219d4a2249208fd3cfaf8c9327a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_23_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.1200019796689356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_24_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_24_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 82f51b337360361363d97838bf201ecd1d2f9977..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_24_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12367219924926758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_24_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_24_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 3a61d2a5b2d870e4cf9e0253bf514ad9562efe44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_24_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.29576568603515624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_24_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_24_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 23470206c2bdab2e217d383fc8b700288d0a49df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_24_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17668695449829103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_26_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_26_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 829fcd0f9c797476a094bb2fa6ad941ecde888fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_26_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9562088012695313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_26_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_26_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 67e9b1c4f433d2821e8b5f053861e44b9b93d5dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_26_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.3205174962679544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_26_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_26_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 4fb304d9aad7c4bc7b8353ad9bca36f743739bcf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_26_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9187547167142232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_270_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_270_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 4b9e127cce0935390dadc589809887f112abc070..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_270_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.925958800315857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_270_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_270_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 48bde3140dba2892875712f77ba9ec2b620bfb52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_270_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.858359158039093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_270_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_270_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b07262468229fac86cb62d1037e6aa80051ae665..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_270_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5984923044840494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_271_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_271_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b5f60a69360e7a8049056aec5017374adbe67104..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_271_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.48860896825790406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_271_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_271_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 934fa5fc8e0d00cc38169ef5c900dbf1aac30737..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_271_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7309681415557862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_271_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_271_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 0daf2b95b49e820b1b10a59041852cddc26f6b3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_271_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24483609994252523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_272_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_272_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2a9d9356c0b4e2b629982051327bce65f0009b5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_272_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.35077205499013264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_272_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_272_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e36e09e015dc86d2f47ed790b5e585ce4374d655..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_272_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7032596468925476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_272_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_272_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 92d3e266fdd36a792719a50b4540e648fa5f8402..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_272_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.15124217669169107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_274_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_274_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 555b38575aa77e55dfe7c483c8844364b90c7eff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_274_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2583423495292663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_274_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_274_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index cf3a3f418f8a39766731814e2a35a0ae42c42859..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_274_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6936425606409709 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_274_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_274_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b0e34cc0c8fd43fc50767bf4c41eee965a055ad0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_274_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5840982834498087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_275_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_275_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 1604fe7ed1da76f628c8c53503fc8dde752132cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_275_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6164082090059916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_275_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_275_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c311b194cc8e06c4fe3234ae08437fee4cdfeaaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_275_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9003001928329468 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_275_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_275_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index df3ad79ad09b295a562418824c95a4fcdf86148f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_275_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2326667149861654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_278_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_278_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f372c39283b2cc143f3331520d21ae5d59346dae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_278_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.47496110598246255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_278_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_278_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 295d2994ae3743d097257b1145e34682c8da597b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_278_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7509949247042338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_278_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_278_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 284c356d05f2001160d5ccd861bbda3921f52676..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_278_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9219976345698039 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_279_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_279_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index e4e33b248b8787b2a12820a94622349b65ccb24b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_279_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.276206123828888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_279_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_279_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 9fd77c98a0e2f666f12f8a9e58289a897b07cbe0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_279_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8966681281725566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_279_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_279_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index bf1d52afb099a56d5519314d0f761b9c209e3ff6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_279_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.44764301379521687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_27_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_27_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 6baeb203e0d361e786b6daef283166deb6c88cc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_27_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3535077730814616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_27_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_27_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e3a9c9b4f60dfd14af2ba81813607801e6d94034..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_27_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.279646631081899 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_27_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_27_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 769cce18efd817e94c4d9b7cbb356e2e236389ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_27_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.321374507745107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_28_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_28_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 7c889241bd5b30733b0394654fa5452bac4e98d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_28_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.48366830348968504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_28_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_28_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index b02344132dc3e14296c132bea2082c963bfecc84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_28_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.0703475077946982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_28_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_28_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index ef621a4e30d7c96c0f78e398219e6a9bc17ee555..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_28_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5975383520126343 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_29_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_29_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 75d8752b26e7d8c9c235eed5b2dc6b7c6b4e989b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_29_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -4.692368948459626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_29_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_29_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 8765b9903bcf249c9d2702a625f30ffbf7163248..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_29_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.005662175019582 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_29_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_29_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 92ced0ab7907a7bdc14d242caba7c09d9adbb006..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_29_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -4.685615122318268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_30_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_30_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 7488b1cd8d4bd792fb8c92d000740500edfb16a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_30_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2057563702265421 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_30_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_30_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 758483d8414d534006a79908e6eb968499429f32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_30_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.185972758134206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_30_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_30_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 3af8c1a38cc0e9d9d19c57a50eb03ee93dac1a5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_30_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.109109330177307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_31_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_31_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 7d73ba0805ed242696f82c416c6ed4cbc76da20c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_31_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3671791593233746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_31_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_31_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index d0c7b2d36aa3063ae69fbff1ebae5a3effcfc5a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_31_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6596089164415995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_31_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_31_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 8fa15737cb78d050cec9c325f2c256636c1f078b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_31_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1691343148549398 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_325_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_325_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 21445546306f1187efff2dff745679f335961714..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_325_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1403053243954977 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_325_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_325_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 68d28da4d503d56c937e81449dff04edc0f7d4ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_325_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4638935009638467 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_325_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_325_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 6116da1f2b2a1541019ab3fb01b8d1bdf8bda84e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_325_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1072237253189088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_326_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_326_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 445088b08b105357b562e7942950b43c973e9f43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_326_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0772586981455485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_326_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_326_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 50f88479f1a50d498f2eefb98583d15fed4865ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_326_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.362798281510671 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_326_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_326_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 74a073e49287357004240494c47bcd4255c856a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_326_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.042884385585785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_327_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_327_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index e9e7ab138a00018855f1500bcd981b686826ec5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_327_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.841380000114441 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_327_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_327_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index cef9fdcc0875eeff1afd08533a5c8ea7f69efc79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_327_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2321621656417847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_327_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_327_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 0ec8ffc0495590523e5949152ce2f5844ff848dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_327_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8465325673421225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_32_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_32_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index e5197cf53895b3f2cd515d02c040d4505f231e85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_32_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3486796021461487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_32_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_32_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 822221829bc87dd51864e9ec67c8271be869be3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_32_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.38316073020299274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_32_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_32_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index ef7ac1f5dc0071ab53c62d9f7c679a63b9d4d787..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_32_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3606516599655151 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_330_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_330_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 0cb8b42d28934f2b2e91179d9dd7f79f3ab666ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_330_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.40455562671025597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_330_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_330_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 0b0f561cf64c663002b01e456b2b2833f59a0081..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_330_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4726192196210226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_330_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_330_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index e085d1c2965967a4cbd5cb162374c3e5dfc44d69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_330_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.598448638121287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_331_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_331_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 4fbd369abae819681b0e8476ff70c186609d97ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_331_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0436449925104776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_331_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_331_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index bffb15c0cc92d537d2937c8f733ab26796fbbd16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_331_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.087829331556956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_331_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_331_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 198b5b224bc3b2b06d08ac3172a0af49f7a10d51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_331_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1361185709635415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_338_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_338_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 913f9fb016cdfdbf2f313653e154e69ac146c6d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_338_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -338_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9266953031222025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_338_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_338_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 892e747ed567cd13bdd539936263174f6a56e91a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_338_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -338_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0096819082895914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_338_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_338_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 815d023b58785fac8f1c12528f0b58b801d51005..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_338_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -338_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.687779410680135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_347_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_347_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 8a83f81b1ef23b55bde8464bcdb440da66fca8ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_347_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.325546932220459 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_347_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_347_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 6faadbace910d71fdee925c6fe8a36f355f50029..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_347_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0089800437291463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_347_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_347_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 62635f4bd727adab0c4935950643b4f3baa6cdf6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_347_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6634437123934428 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_34_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_34_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 099c14ecd58be567c80dabf46e8afad73fd01102..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_34_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6570350726445516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_34_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_34_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 27f0d56c35263280c8e9ee399ff563827e433ac6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_34_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7895715475082397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_34_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_34_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 80284bbd612b24a280122d7f14aa4703cf696bf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_34_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.48219448725382485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_352_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_352_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2a8ad196d5e06061cb45dd255ad6ab06c2533bb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_352_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.095667064189911 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_352_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_352_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 7121e284f66a1652ad3b53c5443dd182971310d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_352_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3641902446746825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_352_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_352_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 7cb2520ce1e0663dedf04d5b04cb404b29a7a248..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_352_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.01329908768336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_354_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_354_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2c15f3cb8c9129b2d831a26a0aa95447e8177352..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_354_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.050739653905233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_354_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_354_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index cced0170c16c830cf8f587b32f9bdc79acfb2201..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_354_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.212205676237742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_354_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_354_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 9f2f30b25cbdb9f71e5d8dfed12c5f9c73448398..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_354_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -4.905608069896698 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_357_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_357_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 59711577c19cc271b7fa6ab538fcc56c17f42646..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_357_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.14446490208307902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_357_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_357_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 21cfcc14b295fb79d48a5f1761449b044649f4f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_357_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.28987373113632203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_357_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_357_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b44a90dda66146b33a989f79a6350d5d186bc522..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_357_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1409349997838338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_358_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_358_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 3a5fddd0a9424723122e1f445cb9b28b56304c7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_358_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.882708446184794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_358_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_358_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 8ac7b760ea96f17660269bebe485f6b5d0e7443f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_358_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.19699498017629 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_358_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_358_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 0ec3acec740bc457acbe0636d1c3c5dff0ca49f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_358_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7227145036061606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_359_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_359_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index af22c5e4dc499d8a4fc20ed9bfca91f848d9e504..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_359_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -359_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.042354492346446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_359_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_359_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 357d05a64286dadfd1070e2e1fc4e2cdd37e5bfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_359_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -359_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.1928070465723675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_359_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_359_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 473e2a27706e403c3ed33ba52744af88cb6490dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_359_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -359_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9721230347951253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_35_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_35_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b0b9aa11afa31b38de99a76dcc4248b4680e1238..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_35_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08660866816838582 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_35_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_35_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index f28e9b3194b9cf1054d945af04d9a4ca2a880720..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_35_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2831796367963155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_35_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_35_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 8fda2cd58aad465e01cca4475e806a50f02eb9f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_35_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02423901160558065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_360_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_360_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 232417beb1e10444aade25779261123305b115e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_360_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9537064830462137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_360_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_360_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 6142a26990f8432c55a9ffbf43fb2e206124e06d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_360_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.079206669330597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_360_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_360_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index dc0a4cc8a4dd0a41716f617fcf3db743aaf24363..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_360_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6746105432510376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_361_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_361_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 7aec1eb01be127819661e74a3b29d388944c72cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_361_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -361_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0331207513809204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_361_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_361_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 163a901e695bd5e53a239302ee40e194ea7e8048..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_361_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -361_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0279190222422283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_361_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_361_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index c08f4e9ceba519aba641dc6d02e514dfabc74dd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_361_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -361_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.064941410223643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_363_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_363_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f5bc5b595e32aa8753d608ac7db9189cebf1784d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_363_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -4.96061536471049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_363_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_363_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index ae7d234597aa743a154d331e3f2d5d2765e36f84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_363_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.277458544572195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_363_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_363_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index c3e03a5aaf73f7376e543e71a5e71c38faa4764b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_363_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -4.898145119349162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_366_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_366_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 4e2c55f9669534c5cde55447a58ef32ca7e271ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_366_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11883567571640015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_366_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_366_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index a90bbc3a2235d3dd022425c9bb3e2acf55d6824b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_366_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3150636116663615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_366_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_366_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 42b819c642e8e14661abc7d646ea8beee98adad8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_366_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.047415498892466226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_368_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_368_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 7a811e76dbb24c71f1eaedb4b2d4dd8cbdefb4a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_368_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04875603516896566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_368_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_368_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 328296bc24d5f05d7fbcaa7dd771574bae5937a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_368_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23745078245798748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_368_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_368_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 56122af0d60e0440be2621d5bb7773aff7a8c2b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_368_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.024029417832692464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_369_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_369_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 3080bbbf7af75c06c5fd28969354a29a13c779aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_369_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04173953930536906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_369_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_369_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index bc71af8e234cb5572ef7406e021bfb0153cf5270..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_369_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24677532116572062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_369_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_369_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 172fbe340b02f6b2bdb949790c2e5a18474cdd38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_369_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.012885781129201253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_370_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_370_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 6973a5b0dacf909458dfb94d3868d83867641030..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_370_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08330804506937663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_370_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_370_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index bc8c097d331b18f1b77c587b1632265de425bfa9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_370_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2933776060740153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_370_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_370_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b2cb6331318f5c956a0551dca24cd22a5061b50e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_370_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09598666429519653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_372_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_372_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index d302a543f1f7880ad0ea60704a59dd1eb09a2674..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_372_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07948003212610881 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_372_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_372_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 2e15a78b9601d907e096ad01711483e576e85d99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_372_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2949608087539673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_372_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_372_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index d55ea39571fce59c08c8d9de3dd18f37482a20f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_372_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05612358252207438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_373_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_373_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 3e9b1bcba231fadfcfc1c4c11b4e9657db42a4c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_373_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04822052717208862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_373_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_373_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 3210b644b9b8163d64737ed9bf1f5cfa3c04f402..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_373_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.29120742082595824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_373_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_373_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 790c5a997241372d08157728d03c442ffc1466d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_373_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.19135594367980957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_374_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_374_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2593b9db65d169f997c23b9d8c4a037f96b1561c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_374_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06300731102625529 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_374_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_374_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 78bc325093a4e206c23a8d4b8688c7aa714530fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_374_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4900569200515747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_374_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_374_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 81916805ba89fc70882f4e049c13e324c3288686..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_374_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0690216064453125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_375_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_375_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 9d5ce660c75e74d0df2a54dc7701d8e3c1b8e77e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_375_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24391193787256876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_375_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_375_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 3ff0a3b15134508443c26bc2cc5bc1bca4841c0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_375_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.49427410364151003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_375_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_375_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index df2fbfc818c1b086128cbd5b9effb672e088d808..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_375_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08897605339686075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_37_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_37_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index ce65556f80ac3ed39b1bd0271c5dc6dd982dc5a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_37_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0859407345453898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_37_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_37_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 6fc32c81db2595c0cc2de172eedb28c70426c008..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_37_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.534432351589203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_37_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_37_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index debfdf260b7f1364372ce8592c2c88cd19f4e6a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_37_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.15425363779068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_3_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_3_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index cbee009ce0be10dfe9d425e1a4ca72547410658d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_3_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2610517462094624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_3_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_3_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e79477ec49baa8cf5d4734d6133437ad4986a052..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_3_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -4.1308773557345075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_3_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_3_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index efcb6b3aa071ad0e7ac1c27d2c1e6afe15814bbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_3_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4750263730684916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_40_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_40_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 7950b9e8e76d1aa2b4919da02a507f9bae4a408b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_40_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.087166754404704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_40_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_40_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e7bb5bf23a32ee46a2ff06e69cfb677b57ff2a0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_40_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.325688699881236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_40_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_40_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 7ecdc40ffe78847e022f0cb13de0b79f73878564..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_40_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0329556107521056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_41_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_41_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 72a8cafe54a0694ee98fbca7c99f1da4dd9003e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_41_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -4.928725469112396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_41_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_41_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 8e28bb1f527ec9713ac8f17d9e3b805e7ec403de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_41_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.218098759651184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_41_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_41_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 0d3708cc7bc038d82a95c39a462a8d83e7ed4ac9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_41_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -4.950759828090668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_42_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_42_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2faba14c68c5699f60a4e7d0396e5248cd07a241..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_42_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.14307589530944825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_42_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_42_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 63e38986242c3252e0935bcfe70c5172793c17f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_42_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3482464750607808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_42_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_42_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 5c2f666736ae0c8f1f46addebbac5c8c3f4fa05d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_42_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06431384881337483 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_43_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_43_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index eeebe5bef2feebc38902baca12aec59a4b5e36a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_43_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.1153398315111795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_43_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_43_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 91babd03ea562aff34dfef1ab24d8b1d5e6434e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_43_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5580524961153666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_43_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_43_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 9e1856dad3d97e34c9acb1edcf3ba2596d591c00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_43_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.1598315040270486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_44_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_44_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 6a6087731c6a44913d9d4b2d9f67aed896d1cd41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_44_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.109164909521739 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_44_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_44_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 255875c3ed216be713ff850445b58f38ceef3c7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_44_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.2071440776189166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_44_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_44_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b11ce7c685b308ae05d045efbafe73e96302d24b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_44_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.8452813704808553 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_45_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_45_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index d141f42d72f914739960c83284a008144c21208c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_45_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.217172392209371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_45_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_45_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 6c0ae492fce7b89e532fb1206bda3fb5aa7b1d64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_45_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.225677041212718 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_45_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_45_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index eb3bbc961e827aedfac8e7e7d5d68836a0032092..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_45_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9235337058703104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_46_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_46_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 00662d42218642bc20b6774a02903e1eb15c8d85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_46_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.124165523052215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_46_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_46_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 606b5f22b842ecc521cdaa58d4c022bab1793589..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_46_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2819856564203898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_46_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_46_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index a4e3aae4b991aa14f80df02f2b477c47182a8f33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_46_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0494245211283366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_48_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_48_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f52a88fec687acb38e1e02fe5bec2fe73592dc2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_48_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8240335424741109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_48_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_48_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index be7b7f91e93fe624b99421e80769054370ce9d1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_48_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1696077585220337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_48_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_48_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index ddd9f00ed67f9155f63de856f377fab7303d04e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_48_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.808709975083669 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_4_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_4_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 49942099f367f6e3d148a895c895bc80754a4758..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_4_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1736897627512612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_4_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_4_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c4d793340251a7707956bd94623ba225781cb249..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_4_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5699334383010863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_4_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_4_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b88cad0d020e0ae9833fdbd0c96ce3b941edd34f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_4_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.122663648923238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_51_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_51_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 83167e28e9125a6ee6be1c5ba814ab2cd296b86a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_51_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.140529576937357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_51_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_51_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index f7167aa330679f55798d9d9990f71fea734affa6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_51_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3350263833999634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_51_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_51_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index fe5010a53cd633d8a9c6bfd951da3d8722b3e1c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_51_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.8898722290992738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_529_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_529_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 5934f1f9b6e95e61cd4efd19b66fc34fa859da86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_529_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04271326859792073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_529_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_529_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e7230c6fb50bab2d5b752912bf2dfd4c31da4252..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_529_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23842785358428956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_529_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_529_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 902376eacbb5838fb5b307aa3aaedff4e589e478..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_529_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08607176939646403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_52_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_52_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index fb6cd7d5edb6f9d66077236b75911da34c7cba6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_52_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3183799187342327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_52_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_52_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index f5160b4dd94fdd4ef7ebe410a43694880268b55d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_52_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5025466958681742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_52_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_52_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 4ca11e4c71def3050afaa8d63e167a6ca8736b26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_52_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.45956849654515586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_534_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_534_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 812a6558245a9b19b084c6ca76d6d7c03b7d9c47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_534_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03521139621734619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_534_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_534_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 0b9fa4333971758e107ccc3bac7e2c5ff48074a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_534_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2197948733965556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_534_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_534_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index bf0946e8cd96130b107f9d51f201858672c4200f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_534_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.034307444095611574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_540_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_540_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f5cbc1532523fcb8fba544e3505ba1f98f83b5b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_540_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.029275524616241454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_540_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_540_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 6260f261f2de8d6fd3f004a473548cbb6ac82a76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_540_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.16912574768066407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_540_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_540_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 5d864cff946a101f3e023eafbae0ce9c701776b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_540_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.004815606276194254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_54_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_54_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 1ee6f7b1caa7540d87e7c2cf6cdb4869f5122d30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_54_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0695886135101318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_54_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_54_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index ce605378feb7b17d01667c745c4053b5524ece80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_54_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.171387914816538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_54_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_54_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 6ce37896c09ff65972ac1c65583bdad5b52ad343..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_54_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8080544869105022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_57_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_57_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 5194bfe285cd7c9e75d7dd21f69553c219874bc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_57_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9701557556788127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_57_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_57_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index bfe0810f52e7264be5fc6de20c90facfb92fbd68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_57_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.2961939414342245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_57_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_57_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 727c41863a90d5d6978e87c70250db003a89e88c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_57_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1303502360979716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_59_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_59_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2aa1d3bcf2b6050dc9119c6e759bb19a42fe721b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_59_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3308070421218872 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_59_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_59_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 7c1ffe851e812fca6a19ece8170dc6b6ad9ff018..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_59_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.643088126182556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_59_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_59_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 8999bf2695a04f830f78e86cdc2fbfbab6cdbdfc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_59_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.2298762758572894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_5_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_5_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index bd50818b9e8eb77db43e6a08426081ee897fcad2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_5_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9994975566864013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_5_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_5_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 1a6f7e4f675cbed023d0cc8e7992900ad12c5a5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_5_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1724342624346415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_5_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_5_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index c919aa94d8ffe30db9db3c766d5d76320dcb4715..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_5_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6918604095776876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_60_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_60_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 5ec76dd5d8d035ecb19cd195093dce5e341a9021..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_60_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18968363602956137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_60_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_60_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index b06f6d9458a64a0492885965262e8c8ad4006e96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_60_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.41090251207351686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_60_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_60_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index fe90ea37f8db4a736585ac4dbc541decc0a1fcd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_60_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24026740789413453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_61_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_61_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b3327b7ee5af2750442096238ae7af0ed687e218..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_61_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.942986476421356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_61_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_61_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 555be64c3ca028a02e730c9d41f4136d3277988a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_61_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9638737758000693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_61_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_61_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 1c9903ac2c6469bae8f391ed69bd4034579291e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_61_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.920026648044586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_62_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_62_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 3cd3190154d415c6e83bef40b38388f4f8126e68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_62_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -5.106096831957499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_62_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_62_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 2fd91403eff156347b45bb4b19d5e432361d246c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_62_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.520265992482503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_62_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_62_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index fddaf3d2c7810c42571f2cbfd12445e595b6f0ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_62_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.042964843908946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_63_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_63_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index de7488c30e8ddd3416c86a5124e4a8987a8f4a1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_63_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.0537899851799013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_63_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_63_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 2b4199b6d8eafc702c0f95d60d0fff8e5f56ba5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_63_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.2293672641118367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_63_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_63_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b73d35115497d294f138fa291892bdbcee096e96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_63_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.8865553895632425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_64_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_64_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 88566f4205b0f619121294f446019ed031251467..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_64_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9556547244389852 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_64_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_64_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index f3a260cb7436f6d5d1fc0ec7a87d50f26f28eef2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_64_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3134981830914816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_64_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_64_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 7589c3668d94ba2776f2ead8c53515d0fab2ce9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_64_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2838029980659485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_65_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_65_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index de1464c2bc8dc98926dd3b1a7a61c3617d21f97c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_65_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20262225866317748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_65_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_65_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index d2fd112209aeeedadfc686d601938f61ad87e38c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_65_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4986709952354431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_65_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_65_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 80e20b763d042282070b47e6592adf66b1625b89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_65_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4235642234484355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_68_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_68_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 4d6c4e40adcd613cf0773e012671ce6aebf68373..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_68_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0837792158126831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_68_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_68_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c8386ad64a75060180cde7f15386db4040cb237b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_68_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3135459184646606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_68_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_68_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index c216e26a3091a6eb400bae2d037cf8d2bbcb3e23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_68_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11556134621302287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_6_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_6_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b387b7a9f1e861035a801222ac54ba1be2810e4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_6_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1739347497622172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_6_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_6_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index a361de345ec331a6ea1c5a1cc860ed95634e3b34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_6_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8002313892046611 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_6_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_6_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b841d3665e1b59d88e6d8f1eb870d27951af97c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_6_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21427493890126545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_76_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_76_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 13e45037ba68b802a3e735f8a19345dc3e5f2606..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_76_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2744377295176188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_76_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_76_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index dc7d8885bdc457b325ff0c3217598efcde319e33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_76_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.34954391717910765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_76_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_76_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b07180b057f20aec11683638c0e1108c0a0950d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_76_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3377641757329305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_79_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_79_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 95ffeea6e12d8516b80117ef841118b188f23d0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_79_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9147978663444519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_79_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_79_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 29945b0595bc22856575e1b530f39cc60446d0a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_79_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2184539953867595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_79_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_79_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index ec4b11cd7aa5de488cc157da9aa9e7d83d24e558..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_79_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1817859331766765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_80_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_80_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 287d1124723585644461deb73911a407a1f73d77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_80_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2217289606730144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_80_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_80_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e9d5c68ab341ca364348a8df72f6bd5cb8e55625..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_80_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6525652567545572 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_80_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_80_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b3dc17ec9feb3043b55e38b773654ac14345dee6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_80_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.915636169910431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_84_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_84_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 917513dcf8dda739259566b5bb66a2630efd1c07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_84_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9308807015419006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_84_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_84_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 612b109805659e9787847121c0a1602f79f15ade..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_84_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7775561968485515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_84_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_84_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 3424ffad3ba5a181f73b954249959ef72b38cff8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_84_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8890205581982931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_86_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_86_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 28923c25e780ae452fa22bd606073d76254ec261..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_86_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -86_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.372228682041168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_86_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_86_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index f728cad05e752c076955d04a3bd61b0b87856c73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_86_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -86_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.639120701948802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_86_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_86_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 975efc46bf39e36022e2a04068f5a053288e05b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_86_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -86_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8609506766001384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_87_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_87_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 17c07eac969d6b2d52844b38f07cf629740dc475..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_87_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.901677934328715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_87_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_87_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 153a323534ab92f05c3384f3ea7a7d59493831b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_87_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2192459543546041 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_87_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_87_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index ea9aac9d154c991330f417db1cac018e8d08a867..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_87_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.341725488503774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_8_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_8_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2d6262ca872ac0b74c1a0818d476ca23da7beb1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_8_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8493223547935486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_8_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_8_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e0b5d7a1173dc0f14ccace398c99019bae7ffbe2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_8_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4341760913530985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_8_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_8_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index a489c733a7928a7e487cce455176f81349d759f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_8_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3594963749249776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_9_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_9_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 3a7f4e769b63b3d453bb7d90a81857a3a92a95e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_9_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.315151810646057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_9_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_9_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 03c3fc1f154a8c460c1a53211600d6d62a0aeee6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_9_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.6461054563522337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T1/0_9_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T1/0_9_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index c46ad234662cb562313624a2a8c0039a5189fdb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T1/0_9_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2921071449915569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197812_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197812_D_GLOBAL.out deleted file mode 100644 index ebd46cc2be1072c8bd6f2ba75ae059f9fbb4c239..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197812 STATION NETCDFs -0.030043180783589682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197812_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197812_H_GLOBAL.out deleted file mode 100644 index 512a78d70ef45ccb0fbe61a3af56964e4663dac7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197812 STATION NETCDFs -0.029595383008321128 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197812_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197812_M_GLOBAL.out deleted file mode 100644 index 08dfe06f4708b30b7fea8c1903f5eb6df4ff4b38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197812 STATION NETCDFs -0.025187603632609048 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197901_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197901_D_GLOBAL.out deleted file mode 100644 index cf644cc61ad1ee60359cb2a529d3e00485a1d380..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.019164196650187173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197901_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197901_H_GLOBAL.out deleted file mode 100644 index 524a660cfd6a5a79c6f66d84f2f265e80f61f444..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.04354239304860433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197901_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197901_M_GLOBAL.out deleted file mode 100644 index b3bf6de8e24f31e472841e336cf21f0eb9edb2fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.036742750803629556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197902_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197902_D_GLOBAL.out deleted file mode 100644 index b24cdaa14a0dd3fb29919955e280f4c438ddc033..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197902 STATION NETCDFs -0.026634458700815836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197902_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197902_H_GLOBAL.out deleted file mode 100644 index 7bb00429a4193d923052958b0e9e4ad519a2109b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197902 STATION NETCDFs -0.021651506423950195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197902_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197902_M_GLOBAL.out deleted file mode 100644 index f43db42fed24ddf6c9c7d138b7997ae4e287bfb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197902 STATION NETCDFs -0.033474258581797284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197903_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197903_D_GLOBAL.out deleted file mode 100644 index 91657153dc6d21f41919addccf7b2575b6146183..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.04085822502772014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197903_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197903_H_GLOBAL.out deleted file mode 100644 index 9b2b46d6450447e66c7c022e31dcbc5c308aaa89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.024939191341400147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197903_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197903_M_GLOBAL.out deleted file mode 100644 index 9f5f5a3b8eccef43ac5f3a19fef141b2f052febc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.026531485716501872 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197904_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197904_D_GLOBAL.out deleted file mode 100644 index ec0e22027880786060786dc2c88259b685a306ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.0456778883934021 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197904_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197904_H_GLOBAL.out deleted file mode 100644 index 88ccab066fc0d59353db48b88d4f0c5a489b0fd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.019356254736582437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197904_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197904_M_GLOBAL.out deleted file mode 100644 index 22ccf7e78ab0853d0f56c459ba6f3324ba7a0184..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.02563771406809489 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197905_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197905_D_GLOBAL.out deleted file mode 100644 index 80c2b8adc05ca56234c1aed792028a1d6fc09cfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.021205576260884602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197905_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197905_H_GLOBAL.out deleted file mode 100644 index 41350a0c7c541ec99a31789879c9186bf57ffdf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.037348604202270506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197905_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197905_M_GLOBAL.out deleted file mode 100644 index f91bfca907482846249f1b0f47b433dcf107e89a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.024915210405985513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197906_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197906_D_GLOBAL.out deleted file mode 100644 index 122d19947604d5025bf30d22c84f9606e6648647..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.03289200862248739 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197906_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197906_H_GLOBAL.out deleted file mode 100644 index a57bd244f641a4b112a1068379f6673557a717ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.034665389855702715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197906_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197906_M_GLOBAL.out deleted file mode 100644 index 08ede2ef2796ba362dc2be9306683854a5dddaf3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.03185621897379557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197907_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197907_D_GLOBAL.out deleted file mode 100644 index 3fdb9543ae54538f8405ca79053093506e57fe30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.04725715716679891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197907_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197907_H_GLOBAL.out deleted file mode 100644 index c28e74d3b18b66e7cde8b156525214087e60cc08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.025402621428171793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197907_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197907_M_GLOBAL.out deleted file mode 100644 index c63f97931e15cfe1bfeedb3d9e1adb0d6606a890..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.017828611532847087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197908_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197908_D_GLOBAL.out deleted file mode 100644 index ab0d85316610c99cb5a1b618e8ac5f7a815937ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.022830375035603843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197908_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197908_H_GLOBAL.out deleted file mode 100644 index 29db75215dcb82723c03465f9e0124c3a4395a44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.04724637269973755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197908_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197908_M_GLOBAL.out deleted file mode 100644 index 9faee4885f137b2b06cfde7228ce59efcdaef1d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.03523248036702474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197909_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197909_D_GLOBAL.out deleted file mode 100644 index 5edf4b5ded54faf0b14653c1529c47a6b7162f2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.027391974131266275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197909_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197909_H_GLOBAL.out deleted file mode 100644 index bffc5d2722eac40fd240e900f1e2bce501c22154..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.027739393711090087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197909_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197909_M_GLOBAL.out deleted file mode 100644 index 6e6d1de4f7ba2a97653508cff2ed4346f9b9f382..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.05775061051050822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197910_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197910_D_GLOBAL.out deleted file mode 100644 index eac523c7bee9a163a194bd56a7c60fe65e8eb03b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.04419974088668823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197910_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197910_H_GLOBAL.out deleted file mode 100644 index 1dda1d61443f0b63447e948ee100c848bc767f13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.030366718769073486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197910_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197910_M_GLOBAL.out deleted file mode 100644 index cb3d69359082a7bfa7c0e945d70ae59611c9db9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.020688974857330324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197911_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197911_D_GLOBAL.out deleted file mode 100644 index 1fe5e533c8fe068cf224f7edde0d5bedf7e758c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.029780113697052003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197911_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197911_H_GLOBAL.out deleted file mode 100644 index 3af3b90e7c57a63732bdb176a241623477b44c7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.024398358662923177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197911_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197911_M_GLOBAL.out deleted file mode 100644 index b5ec0137b5c5e193a7df205cec4b1db30d6b3608..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.029383869965871175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197912_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197912_D_GLOBAL.out deleted file mode 100644 index ab6330502b6e306f72b8cf7448479a50c70b37b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.027232813835144042 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197912_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197912_H_GLOBAL.out deleted file mode 100644 index 96d19e13a2698725b4dbad2f19652a8baa135dc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.02982224225997925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_197912_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_197912_M_GLOBAL.out deleted file mode 100644 index 9b26a3052a1cc28818d73d2beebadf1ce5872fb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_197912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.026075963179270426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198001_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198001_D_GLOBAL.out deleted file mode 100644 index 1102d9b815ee2705469d727583fc6be3c09f8307..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.03663763602574666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198001_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198001_H_GLOBAL.out deleted file mode 100644 index 9af1897c1c96adb10ed34a7abcd6bb26f96806c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.036578035354614256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198001_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198001_M_GLOBAL.out deleted file mode 100644 index 23d1c813c89414be9867af7e09671521819c6eed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.032806154092152914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198002_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198002_D_GLOBAL.out deleted file mode 100644 index 4d38b794fc0cf342bb1dd1e39503a782dbdb1f04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.03189655145009359 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198002_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198002_H_GLOBAL.out deleted file mode 100644 index bf0add3b076036c77cd90558ea7b83bf68702c55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.02208996613820394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198002_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198002_M_GLOBAL.out deleted file mode 100644 index fc8fd1b2d64983ddcdf7b2a2da17e108587bda05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.0210977037747701 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198003_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198003_D_GLOBAL.out deleted file mode 100644 index ebd4b84c86bfef8c8f2f2b0f557257b71f1d42cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.04326596260070801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198003_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198003_H_GLOBAL.out deleted file mode 100644 index 342aaca40a0f79d5fa67e2ae1b9237f4841650fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.02855441967646281 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198003_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198003_M_GLOBAL.out deleted file mode 100644 index 4602f5232308364001fec25283fe19dfb45108a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.02046366532643636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198004_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198004_D_GLOBAL.out deleted file mode 100644 index 4576b1b13826d39b32911c33462197f9128938b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.03251833915710449 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198004_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198004_H_GLOBAL.out deleted file mode 100644 index b8e8194b4a97cb8703b1492ee6b32be9eb9aaec8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.050122706095377605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198004_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198004_M_GLOBAL.out deleted file mode 100644 index d7e70a096ae2385bd81a579493127bb56c72b641..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.028066209952036538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198005_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198005_D_GLOBAL.out deleted file mode 100644 index 1fd109344e6862e2a09461fe063338e18409be88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.03318458398183187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198005_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198005_H_GLOBAL.out deleted file mode 100644 index efe17d2c9b9913135f9cb014af59067f65bbc461..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.038915491104125975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198005_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198005_M_GLOBAL.out deleted file mode 100644 index 38997ec14fafda8dd684563ff32cd8ea223f12ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.038285223642985027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198006_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198006_D_GLOBAL.out deleted file mode 100644 index 8052bf6c1b465e0a8b4425bca36b46337bacc6f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.03314856688181559 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198006_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198006_H_GLOBAL.out deleted file mode 100644 index 1d5bc60438b57c5514fac22a9f77c61fec17d359..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.04093850453694661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198006_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198006_M_GLOBAL.out deleted file mode 100644 index b704f829f7dd6768f2d270c857d41178d038fdb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.031692993640899655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198007_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198007_D_GLOBAL.out deleted file mode 100644 index 44bdbc933372f0822528f9a44ba6fc1ae24975d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.05463982820510864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198007_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198007_H_GLOBAL.out deleted file mode 100644 index 6ed1cb7543a184b986ffffd2eb93bb5d3637a58f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.02434622844060262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198007_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198007_M_GLOBAL.out deleted file mode 100644 index d1851755390b8477a4a0f1aa0d955a62e0b591cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.02835270166397095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198008_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198008_D_GLOBAL.out deleted file mode 100644 index b8e267cb0bef4b7405c6fef36b2d0f43794d56b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.019078409671783446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198008_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198008_H_GLOBAL.out deleted file mode 100644 index 49d36722240a6c47e1316a75810f69fbf189c49a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.04356557528177897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198008_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198008_M_GLOBAL.out deleted file mode 100644 index ef029561f6a46c733a95e60476b373984d5a3c7f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.023399492104848225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198009_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198009_D_GLOBAL.out deleted file mode 100644 index 539343549d9228997d85955077ba47d9535da2eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.04031867186228434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198009_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198009_H_GLOBAL.out deleted file mode 100644 index 837cc7e40045704b542080ecb7d81671dad94c5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.0439171036084493 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198009_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198009_M_GLOBAL.out deleted file mode 100644 index 7b6c0a5e2026882f56f6afff954b94cd460c65c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.030794111887613933 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198010_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198010_D_GLOBAL.out deleted file mode 100644 index 7797622908e7ea244c8cc3bfd715eb58717abbd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.058485523859659834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198010_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198010_H_GLOBAL.out deleted file mode 100644 index 2df20200f34340b84d6a6eadae6206ff21fe8585..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.019474867979685465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198010_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198010_M_GLOBAL.out deleted file mode 100644 index 307817e3b5c4016fbccec8686c2315c8206c8828..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.02259097099304199 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198011_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198011_D_GLOBAL.out deleted file mode 100644 index 45912cea043f517096b550c8bb260849b147d5ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198011 STATION NETCDFs -0.02360457976659139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198011_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198011_H_GLOBAL.out deleted file mode 100644 index 08aa16b52daabd69af70c21b5a02ff54c0f7611c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198011 STATION NETCDFs -0.0431483785311381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198011_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198011_M_GLOBAL.out deleted file mode 100644 index 42ff14e48447a4bd4e976d59e5c8035b1b340fd7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198011 STATION NETCDFs -0.02000934680302938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198012_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198012_D_GLOBAL.out deleted file mode 100644 index 8d6d548e6d9c460248214bdf2c3be6a7224e6cc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.04133297602335612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198012_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198012_H_GLOBAL.out deleted file mode 100644 index e8b2b203c79f731d8a3b18113e2cbd4efa4bd2ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.025534284114837647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198012_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198012_M_GLOBAL.out deleted file mode 100644 index a6cb20ed7d2d1ae646c97988e2279aa12e2a4d7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.04047553141911824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198101_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198101_D_GLOBAL.out deleted file mode 100644 index f8464be92dcdd50857f83766ef2d8b92b9ea893b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.03862362305323283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198101_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198101_H_GLOBAL.out deleted file mode 100644 index 88feeec91f2df470a903ef591a2895aeb30063cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.02339543104171753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198101_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198101_M_GLOBAL.out deleted file mode 100644 index e5b5ae98fbf75d95a98ab654b08b3f81f45e4ca1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.02995464007059733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198102_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198102_D_GLOBAL.out deleted file mode 100644 index 7f374a3d6f83000c0136cf25ee80705132543f5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.02062925895055135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198102_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198102_H_GLOBAL.out deleted file mode 100644 index c25ef55f79ef6bd64651d3c0963bc89763c84f66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.03981177806854248 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198102_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198102_M_GLOBAL.out deleted file mode 100644 index b2b122cf6d672348818590072e80a527e8a5c392..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.03171783288319906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198103_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198103_D_GLOBAL.out deleted file mode 100644 index 1c6d0a7c68769033d3e6c591d3f84c59bab48c20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.03287882804870605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198103_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198103_H_GLOBAL.out deleted file mode 100644 index 8771ed3c787546b58cdc3293081f1ff721480912..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.059069029490153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198103_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198103_M_GLOBAL.out deleted file mode 100644 index a36cb97aba3b17389d5560fddbd0273392af768c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.03565646409988403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198104_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198104_D_GLOBAL.out deleted file mode 100644 index e1edc7151a0ef554ff685fa1e42eebb0020195af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198104 STATION NETCDFs -0.02075537045796712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198104_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198104_H_GLOBAL.out deleted file mode 100644 index 64d2262f07134697216f9d035909ab60b1bab823..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198104 STATION NETCDFs -0.018483841419219972 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198104_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198104_M_GLOBAL.out deleted file mode 100644 index 91bc87935406533e0e23568e859bfd2870b168ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198104 STATION NETCDFs -0.033239599068959555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198105_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198105_D_GLOBAL.out deleted file mode 100644 index 674a976b4fafa81720f85346af9cd491eb42405e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198105 STATION NETCDFs -0.024197026093800863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198105_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198105_H_GLOBAL.out deleted file mode 100644 index 869c83c3ab0fc06acf1651e967e55782f9758b8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198105 STATION NETCDFs -0.027393579483032227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198105_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198105_M_GLOBAL.out deleted file mode 100644 index 256cbf7138e57fead181561dddf7292e6973f508..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198105 STATION NETCDFs -0.0239275852839152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198106_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198106_D_GLOBAL.out deleted file mode 100644 index 7b18a78bf4d52478db5df2a86842f9bb02680e30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.03452826340993245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198106_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198106_H_GLOBAL.out deleted file mode 100644 index cd86949c1a4c1addccc78970cf438ab0b1357988..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.024993606408437095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198106_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198106_M_GLOBAL.out deleted file mode 100644 index 5dbaacd9618d925245b9665c3e3aa35968cb0208..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.021132508913675945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198107_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198107_D_GLOBAL.out deleted file mode 100644 index 9fc7eea89a4efd85506f768c310f57219b232213..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.04881124099095662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198107_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198107_H_GLOBAL.out deleted file mode 100644 index a51b7a753aede82c7de1fb95b4b77ed2d49d9a3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.02440711259841919 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198107_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198107_M_GLOBAL.out deleted file mode 100644 index ec93f31cb44924c5bd56f0f8f8624686938f0741..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.04652145306269328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198108_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198108_D_GLOBAL.out deleted file mode 100644 index e58192c0ce641088e138e4843713db8c52eed67f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.03921331564585368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198108_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198108_H_GLOBAL.out deleted file mode 100644 index dec81d58c5bcb794f3492906b7fb1d37f13f9da0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.036756070454915364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198108_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198108_M_GLOBAL.out deleted file mode 100644 index 47c31962379df527b87501618d6cc0c7770f2128..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.03952650626500447 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198109_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198109_D_GLOBAL.out deleted file mode 100644 index a797a72589a6f17547231bbd97d88c68a6251309..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.017463191350301107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198109_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198109_H_GLOBAL.out deleted file mode 100644 index ff1d10f1ddd0779f7f736431fc7293f5374330fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.04231787125269572 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198109_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198109_M_GLOBAL.out deleted file mode 100644 index 3bd85eb80d713a6a9944f92095e851b5029960cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.02245543400446574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198110_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198110_D_GLOBAL.out deleted file mode 100644 index 32264e008a8c0070554ed51559131b62c58eed8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.021786125500996907 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198110_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198110_H_GLOBAL.out deleted file mode 100644 index 3530601c01dacd17e393bc03c3a8a8fe043f5c0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.02572273015975952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198110_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198110_M_GLOBAL.out deleted file mode 100644 index e6d1983f860430a610b56df6535f75cc37d2dbab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.029180475076039634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198111_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198111_D_GLOBAL.out deleted file mode 100644 index cff16168e4be905e90b9f5e9334f52c4570ac85f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.05086667537689209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198111_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198111_H_GLOBAL.out deleted file mode 100644 index 45bb4a462463d378d58cd3b63cf3ef5bf598c21f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.029746719201405845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198111_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198111_M_GLOBAL.out deleted file mode 100644 index 038ce39a20bda43f07b452a52ee3c3d569b22792..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.021230781078338624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198112_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198112_D_GLOBAL.out deleted file mode 100644 index 7bfaa3281d301595c030130aa3543118a7616383..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.058542319138844806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198112_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198112_H_GLOBAL.out deleted file mode 100644 index 185c8eece2cdde12d779c5945d70af4db0f35099..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.025703910986582437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198112_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198112_M_GLOBAL.out deleted file mode 100644 index 80367f76f81ff60a77ec415a804ef6951469be47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.039257697264353436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198201_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198201_D_GLOBAL.out deleted file mode 100644 index b5ce358160b1ccc65124484722668e6575dd6161..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.027594669659932455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198201_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198201_H_GLOBAL.out deleted file mode 100644 index a0c1cad823f85e0fa7c139f98e288e23894ab73e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.025476924578348794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198201_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198201_M_GLOBAL.out deleted file mode 100644 index 8279134bab0b5271be214746a6625b0350469e24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.05040533145268758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198202_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198202_D_GLOBAL.out deleted file mode 100644 index fe713611da1dad92f7b7a73ea3dceb46f3ee59cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.04067997932434082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198202_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198202_H_GLOBAL.out deleted file mode 100644 index 23696e691fd5caee0240dd5e3279be3d30719d4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.020838514963785807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198202_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198202_M_GLOBAL.out deleted file mode 100644 index 42ed69824cb05ab89ea9e40109868b6bdcd43907..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.04048178990681966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198203_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198203_D_GLOBAL.out deleted file mode 100644 index 21085568a2087b1c336c7dd631a302ebc83eb34f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.039284888903299967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198203_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198203_H_GLOBAL.out deleted file mode 100644 index c2ede2bcd10f94796bfa279f54410358b075ce83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.03904735644658407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198203_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198203_M_GLOBAL.out deleted file mode 100644 index 727198bbe86fa5bd9ff27c872f959481df428df6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.03102879524230957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198204_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198204_D_GLOBAL.out deleted file mode 100644 index 0434bfbd3b1c5d6b5cb3971ce4920de0268c33fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.022303521633148193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198204_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198204_H_GLOBAL.out deleted file mode 100644 index 71386954e7aae27d1766018a8d4c381ed2d2f6fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.0223754088083903 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198204_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198204_M_GLOBAL.out deleted file mode 100644 index de8b34198696f3e0f41b1136f1404dfd8a6f1bb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.024037766456604003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198205_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198205_D_GLOBAL.out deleted file mode 100644 index 068d75f2f5fd728e2c4a62a1dc4a3671b1db4da3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.05189850330352783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198205_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198205_H_GLOBAL.out deleted file mode 100644 index ea8050c2ebe6aa410ca26189aef530fd8e6f633b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.03229921658833822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198205_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198205_M_GLOBAL.out deleted file mode 100644 index 2ee9aaba161da85854720e7ff7a3504e08cb33cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.03320827086766561 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198206_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198206_D_GLOBAL.out deleted file mode 100644 index cc07c7c708dd3c4ba3e67a3f8710dba179cfcb44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.033926761150360106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198206_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198206_H_GLOBAL.out deleted file mode 100644 index a86b3ce0c59bb4ecce635d39785f05babaa191ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.0333369771639506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198206_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198206_M_GLOBAL.out deleted file mode 100644 index 0225b8ac64adb17216a15a7b5a78e856509b24b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.03168470462163289 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198207_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198207_D_GLOBAL.out deleted file mode 100644 index fd45dc6dc3aa872cf90f59880714eca0a6633395..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.0522095799446106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198207_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198207_H_GLOBAL.out deleted file mode 100644 index 95a0d503bb8e43a93ca0f564094acf9af3bd8b3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.0418064554532369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198207_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198207_M_GLOBAL.out deleted file mode 100644 index 86f96d816bd91d2d20901aa56ea71a8b31cf1a08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.031962013244628905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198208_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198208_D_GLOBAL.out deleted file mode 100644 index 77d8a23f5c32dbdd028376a370c41f89574d0a1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.057885233561197916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198208_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198208_H_GLOBAL.out deleted file mode 100644 index e81118e0bb72c32b37d5c851735973f17130a454..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.0345259149869283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198208_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198208_M_GLOBAL.out deleted file mode 100644 index a9985fb60d36a695afcea1ec1932ee38e86465d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.023604766527811686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198209_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198209_D_GLOBAL.out deleted file mode 100644 index 02226415a309f62c94376053e20db9386b9682ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.04458541472752889 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198209_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198209_H_GLOBAL.out deleted file mode 100644 index ce04789817477478f30c5b340bccee5436f78876..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.019964043299357095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198209_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198209_M_GLOBAL.out deleted file mode 100644 index ff06c6bcf704bede89dfdbc38a71ede1eca09f98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.030082714557647706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198210_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198210_D_GLOBAL.out deleted file mode 100644 index 437c36b3dc0e320ba7888dc675b38bad34de5b28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.04453399578730265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198210_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198210_H_GLOBAL.out deleted file mode 100644 index dae0906fba1368279e79e8189df686c23ef35b37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.029859832922617593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198210_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198210_M_GLOBAL.out deleted file mode 100644 index 6fdb433e178706931a89d42bac34d2d2fd89ac28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.018402719497680665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198211_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198211_D_GLOBAL.out deleted file mode 100644 index 9733a91d3f7d06a5e970592618fec826954e7051..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.024269382158915203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198211_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198211_H_GLOBAL.out deleted file mode 100644 index 0880aaf325389874d4bd262a1d3230a61fe99611..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.031131052970886232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198211_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198211_M_GLOBAL.out deleted file mode 100644 index 02b702d3d454c388e7a810db597703bda29cb3b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.02596872647603353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198212_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198212_D_GLOBAL.out deleted file mode 100644 index 1d047a44cb1dbb6049505c49acafa74d1e8870f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.03026503324508667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198212_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198212_H_GLOBAL.out deleted file mode 100644 index d4da3756fc9d0f5e4fe6f3774def3814460511c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.04155016740163167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198212_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198212_M_GLOBAL.out deleted file mode 100644 index 42516a0233570aabde73006b5645bd86289dfceb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.018590883413950602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198301_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198301_D_GLOBAL.out deleted file mode 100644 index fc853224ee420166de8b0ce5d2aea119c25ddc00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.033441384633382164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198301_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198301_H_GLOBAL.out deleted file mode 100644 index 05da3e1c15455e59b5bb1d77cd534a7b7838dbcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.021070555845896403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198301_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198301_M_GLOBAL.out deleted file mode 100644 index edfc7ca51ba7d3d7432829698335e3ef5f63a417..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.02320066690444946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198302_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198302_D_GLOBAL.out deleted file mode 100644 index 08521c05497bad2cf27cfb25b3d9a8602930c0e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.04150538841883342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198302_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198302_H_GLOBAL.out deleted file mode 100644 index d694871853de33c59bb705aa72f68b2caab372eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.0350166122118632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198302_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198302_M_GLOBAL.out deleted file mode 100644 index 3679f13ab12df5fc7a568665a15c4aa027f40c9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.04273854891459147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198303_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198303_D_GLOBAL.out deleted file mode 100644 index b286d32521056f22907552633debaaf914c92409..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.040462807814280195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198303_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198303_H_GLOBAL.out deleted file mode 100644 index 3e990b8e00a2e421bcf0ddc67678b2285ecbc7bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.03409806887308756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198303_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198303_M_GLOBAL.out deleted file mode 100644 index faa7a358aef652b469bdfc96419c8c90fea88cd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.021339285373687743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198304_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198304_D_GLOBAL.out deleted file mode 100644 index 1f7dbffede9ba8708ec80f0c2aa0782925ab8a53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.016887203852335612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198304_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198304_H_GLOBAL.out deleted file mode 100644 index 12993915d1315a01b456bbc2ca9c43b69ad89b10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.04232320785522461 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198304_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198304_M_GLOBAL.out deleted file mode 100644 index d1f373cc5bd2c9b6a73eb2b452aae9f4aad6fa12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.04153800408045451 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198305_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198305_D_GLOBAL.out deleted file mode 100644 index a1e7ee4ab84d76ca48d3341faf3a890f76039a38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.022323675950368247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198305_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198305_H_GLOBAL.out deleted file mode 100644 index 44f59b38d179f1b417f8b459a47fb72477d27418..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.023978567123413085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198305_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198305_M_GLOBAL.out deleted file mode 100644 index 7e2f59696af9adf3fc911ec8c2563b456a041826..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.029638493061065675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198306_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198306_D_GLOBAL.out deleted file mode 100644 index fb0d39fcda2e41888895c9a687e5ba5677abfb06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.04385275840759277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198306_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198306_H_GLOBAL.out deleted file mode 100644 index 740086ab7d722b720e75378f14df473e0e7633b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.0234160582224528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198306_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198306_M_GLOBAL.out deleted file mode 100644 index f9179c576a6d393bd310dbde0bff2e272ef373da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.029925048351287842 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198307_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198307_D_GLOBAL.out deleted file mode 100644 index 1e12d4ae0f19aedf437d05ecf2c49c14eba00ca8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.051808337370554604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198307_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198307_H_GLOBAL.out deleted file mode 100644 index d4400c1a9b42505232dae16842063dd6e93a6341..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.021304261684417725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198307_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198307_M_GLOBAL.out deleted file mode 100644 index 03ab2548b07dbb198163b5c2a0765b2c9946c405..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.0481881300608317 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198308_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198308_D_GLOBAL.out deleted file mode 100644 index af20f7af1114d26c76c8f13b478887dc2d44b2db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.04156023661295573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198308_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198308_H_GLOBAL.out deleted file mode 100644 index b6ee23bb4a36b997ff02bb5876e0790758f945d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.03547932306925456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198308_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198308_M_GLOBAL.out deleted file mode 100644 index 14f57fa70b13e371ffefbd36342f3ad526dc70de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.02836985190709432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198309_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198309_D_GLOBAL.out deleted file mode 100644 index cdd2899c0a7787227b12388c33bdf2ff56a734ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.029577056566874187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198309_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198309_H_GLOBAL.out deleted file mode 100644 index 727ce8b430f93354b968d60c9e424ae4754126a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.03965965112050374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198309_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198309_M_GLOBAL.out deleted file mode 100644 index 553d75eb326ea1e82ca875490528c68740cb1dad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.023337729771931968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198310_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198310_D_GLOBAL.out deleted file mode 100644 index 0ee16db22dae5efc4c69343a6de0ad610e4533ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.028510220845540366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198310_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198310_H_GLOBAL.out deleted file mode 100644 index 97f36fa5f09ba5ee2112cea9b295efe9a3d147b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.062121379375457766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198310_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198310_M_GLOBAL.out deleted file mode 100644 index be74aba5fbee71ec2ff9ad5ea98a6906cc22878c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.04516925811767578 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198311_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198311_D_GLOBAL.out deleted file mode 100644 index 9d04864cdd11ed7a0e70d9576d95357e8fd9ab40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.04058777888615926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198311_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198311_H_GLOBAL.out deleted file mode 100644 index 46d08d44aceac81e7a16cbc122938a41b4aa2214..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.026559428373972575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198311_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198311_M_GLOBAL.out deleted file mode 100644 index 89181d982f042f4712ba1c538b29a4bb62882bcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.024035549163818358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198312_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198312_D_GLOBAL.out deleted file mode 100644 index 2869b92ecfc129b3bff0d20f9bd01b4085091f4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.02562686602274577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198312_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198312_H_GLOBAL.out deleted file mode 100644 index a9290ba7c8ba08227d6eddb5d6389b0e3c92347b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.04241738716761271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198312_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198312_M_GLOBAL.out deleted file mode 100644 index d9eb2506ca235491e6679acc4cedfd6bf87bbee4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.03041905959447225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198401_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198401_D_GLOBAL.out deleted file mode 100644 index 482d5b741380fcce98f8a6766c288d9fe556e3d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.04577119350433349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198401_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198401_H_GLOBAL.out deleted file mode 100644 index 8966c5fd29f44bb9e4e9037e94b6819a712e8e24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.034874149163564044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198401_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198401_M_GLOBAL.out deleted file mode 100644 index 3e6a2e8ddbc36a8b47c674a382a64afee05e09e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.024701289335886636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198402_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198402_D_GLOBAL.out deleted file mode 100644 index f0311473505f2168fd5ece5522132d502c026983..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.026603086789449056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198402_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198402_H_GLOBAL.out deleted file mode 100644 index 7679fc5591bc54fbb7eccd9b860dec2031736aa0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.023886609077453613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198402_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198402_M_GLOBAL.out deleted file mode 100644 index 9c942cb1fb2e2157614281bddeb2505686b22e78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.030380956331888833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198403_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198403_D_GLOBAL.out deleted file mode 100644 index 30c9c41899d638ae7b1e71c925d1b35537fbce6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.049000350634257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198403_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198403_H_GLOBAL.out deleted file mode 100644 index a290eae1357c5fce9a532c1f0403f1169f6d5faa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.0302191694577535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198403_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198403_M_GLOBAL.out deleted file mode 100644 index 1ec0dd32bc7fe0851eaaa757cdad183f8de906d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.03394285043080648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198404_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198404_D_GLOBAL.out deleted file mode 100644 index 0474dfa981d4f7e2204649f8c6f5b9b47f1ce147..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.04492288827896118 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198404_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198404_H_GLOBAL.out deleted file mode 100644 index 25fad5918b2002e4b6a3267b5e9ff8df5d1e7f23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.024573969841003417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198404_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198404_M_GLOBAL.out deleted file mode 100644 index bff0f2e27e3e29741cc49c0ce84108b8ce805691..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.02371373176574707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198405_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198405_D_GLOBAL.out deleted file mode 100644 index d8141082bbb11045a090147249108ed9615ad962..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.03066054582595825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198405_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198405_H_GLOBAL.out deleted file mode 100644 index e87a3a2adfbf5bb936ecf796520afea3529266a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.042016243934631346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198405_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198405_M_GLOBAL.out deleted file mode 100644 index e8f3353e996613449ef20def4b33fe6a93162f44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.030056230227152505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198406_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198406_D_GLOBAL.out deleted file mode 100644 index 058a7ad7787c57368d5f8549aa36957d3eee35b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.027312453587849936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198406_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198406_H_GLOBAL.out deleted file mode 100644 index 0e69cea2604371583a89c61271f440f4804b3f2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.04969274202982585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198406_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198406_M_GLOBAL.out deleted file mode 100644 index 927efa59d38268069de757e5bae1246dfea5dd12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.02944034735361735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198407_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198407_D_GLOBAL.out deleted file mode 100644 index ba2df9d7ead075eef7ad21e8cc4c7d032ac96184..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.026216797033945718 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198407_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198407_H_GLOBAL.out deleted file mode 100644 index 22518c5eae00d81fdb31da267ad3563fa0f4721c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.04644272724787394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198407_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198407_M_GLOBAL.out deleted file mode 100644 index 7e1e4f50ff4199e83c552b65a63549329fea92fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.04114546378453573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198408_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198408_D_GLOBAL.out deleted file mode 100644 index bda8ad04d9ddf027533cd8c2d7e658db787c8977..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.036981089909871416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198408_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198408_H_GLOBAL.out deleted file mode 100644 index 44362b432a8f3a68e3eca262cbe1935843cd328e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.02825860579808553 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198408_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198408_M_GLOBAL.out deleted file mode 100644 index 054a2ad4904e641c220857e021d5f2556d6b0c44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.027958675225575765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198409_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198409_D_GLOBAL.out deleted file mode 100644 index 2b95dc3ee51917be6bf58eabe1936097d2c91d13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.044884435335795086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198409_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198409_H_GLOBAL.out deleted file mode 100644 index 2a3cfc299b70b32bfa5c8fbd12fc6c2f7e4b53ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.0325863520304362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198409_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198409_M_GLOBAL.out deleted file mode 100644 index f494997f6aa098aad5aa5a990116ffd33014dd0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.032503358523050946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198410_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198410_D_GLOBAL.out deleted file mode 100644 index 21fd37fe37c1055b49818a7f3afa9a3d4f4c543c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.02841794490814209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198410_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198410_H_GLOBAL.out deleted file mode 100644 index ac1db36873a5bf763ab1e9ba835324106347b25a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.03046110471089681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198410_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198410_M_GLOBAL.out deleted file mode 100644 index d2ef76017b87bc37cf2eedafc7d0a2a514e769d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.026204013824462892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198411_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198411_D_GLOBAL.out deleted file mode 100644 index aa484d75ef63d8f7ae64aa15735e97c6d8b4199a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.02297646999359131 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198411_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198411_H_GLOBAL.out deleted file mode 100644 index e099f08af441265c406d051337bc6b1d9e67f9eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.034364680449167885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198411_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198411_M_GLOBAL.out deleted file mode 100644 index c26ceba84d8f3a5af455a5c2165ba662eb7eaa67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.05085228681564331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198412_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198412_D_GLOBAL.out deleted file mode 100644 index d0184df3d1c1a60d6f80ce39507b1db399a0f636..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.0474810798962911 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198412_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198412_H_GLOBAL.out deleted file mode 100644 index 311e62a2cbe8aa4f0098158987d14f3b26bc19fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.028436378637949625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198412_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198412_M_GLOBAL.out deleted file mode 100644 index fc15957c0c192c90054d4ff82c3bf96513697577..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.036246482531229654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198501_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198501_D_GLOBAL.out deleted file mode 100644 index 7c2dea88c665acb3248c3f25658d889e5c8780c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.0414134939511617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198501_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198501_H_GLOBAL.out deleted file mode 100644 index 744169424c40e6b33820edb260aee93c749322b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.025553401311238608 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198501_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198501_M_GLOBAL.out deleted file mode 100644 index 1cff97f51f2dd4787cb75b36596405fdead520c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.06564618349075317 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198502_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198502_D_GLOBAL.out deleted file mode 100644 index 51dac627c10b40c3cefa94f14bcac5a9dfb745c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.03559221029281616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198502_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198502_H_GLOBAL.out deleted file mode 100644 index 09cdbf55fa50acc26f530fe32b3e4e0d40e068f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.038407806555430093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198502_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198502_M_GLOBAL.out deleted file mode 100644 index 8cb3f9af7a1433b752bec393bd30abf06e4eb999..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.025635313987731934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198503_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198503_D_GLOBAL.out deleted file mode 100644 index 3fd18f037becda44e643d8a41663c1020e32b47a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.027967222531636558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198503_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198503_H_GLOBAL.out deleted file mode 100644 index e3f64b8a78061934d4aca2c79fa396c6cbd94dfd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.027551297346750894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198503_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198503_M_GLOBAL.out deleted file mode 100644 index 7685df6531c296a3c22580cd041fffadf55ba5e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.04022966623306275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198504_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198504_D_GLOBAL.out deleted file mode 100644 index c878530a34fb5fe336521843f4b4e1d7dea941c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.03222370147705078 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198504_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198504_H_GLOBAL.out deleted file mode 100644 index e878cd018f6b16cd9be624cc9e7292a8f0b0e364..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.04618230660756429 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198504_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198504_M_GLOBAL.out deleted file mode 100644 index b384c47bb0441ee402bded89e196fe9f1db3cd3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.023274354139963784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198505_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198505_D_GLOBAL.out deleted file mode 100644 index 20ac879d4d9d587f81452f846e40dcb0c9f1c2fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.027098727226257325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198505_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198505_H_GLOBAL.out deleted file mode 100644 index 379715964a3b1ce30d49d829bfc596d156089161..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.03337083260218302 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198505_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198505_M_GLOBAL.out deleted file mode 100644 index 9450fb7a36599f4b7efccfe024150aa02ec9886e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.041571672757466635 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198506_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198506_D_GLOBAL.out deleted file mode 100644 index c4dadc8bf013097e6f03090a1e19d21c3fc36efc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.03994010289510091 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198506_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198506_H_GLOBAL.out deleted file mode 100644 index feb35ca6b67ea3dbacc0bc0f1b838f277c781f98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.024822433789571125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198506_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198506_M_GLOBAL.out deleted file mode 100644 index 1aa8f59174a97958d05f08b8f1eca01c4982dd8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.052823436260223386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198507_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198507_D_GLOBAL.out deleted file mode 100644 index 264d4e747c0fa29f1fea6380b72c83203e01f81c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.024093087514241537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198507_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198507_H_GLOBAL.out deleted file mode 100644 index 60cc43d91bbffc97f91a9048088db32aad81d0ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.05328898429870606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198507_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198507_M_GLOBAL.out deleted file mode 100644 index feef685b47b6d229643316d348bed0c7b1fbcfdf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.028081258138020832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198508_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198508_D_GLOBAL.out deleted file mode 100644 index fe7f34efb85cedb5123bad86ccc6fa109f9f2b98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.024321675300598145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198508_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198508_H_GLOBAL.out deleted file mode 100644 index 449cb6ff2a6610435e1be4b9bb95f83727db8d27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.03673114776611328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198508_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198508_M_GLOBAL.out deleted file mode 100644 index d3f4ddb5a04a109badca5c9bb7fc78a4cd9a349f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.03675806522369385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198509_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198509_D_GLOBAL.out deleted file mode 100644 index 35122447424da6c64c3f48f95860638dde87235e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.025800851980845134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198509_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198509_H_GLOBAL.out deleted file mode 100644 index bff4b407122116ca3c3815f27e8a4569ec962d63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.04409215052922567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198509_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198509_M_GLOBAL.out deleted file mode 100644 index 267019ac11b44e693d91ff5f0586213b35aea73b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.02437931696573893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198510_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198510_D_GLOBAL.out deleted file mode 100644 index b291d85f6b8b1c13a7392d24b48da3a8345714f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.033473249276479086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198510_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198510_H_GLOBAL.out deleted file mode 100644 index a2454fe5fa9dc258efc536dd5b8827377a51ebb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.046301639080047606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198510_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198510_M_GLOBAL.out deleted file mode 100644 index cf601509e4ecc6bb7846b16c968ce31e96dbe315..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.04135426680246989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198511_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198511_D_GLOBAL.out deleted file mode 100644 index 00517493ff35c3a2c5e9809e090c7d6cd0e65046..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.024945135911305746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198511_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198511_H_GLOBAL.out deleted file mode 100644 index 84ece09cf080e7ac50977bbf9f64c31132d84f65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.025201686223347983 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198511_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198511_M_GLOBAL.out deleted file mode 100644 index 3b29b6f34d2da769f9c302c042076fc3522766c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.04403354326883952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198512_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198512_D_GLOBAL.out deleted file mode 100644 index 87429776d8dc279cafc7090b23694e118437ae1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.026809306939442952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198512_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198512_H_GLOBAL.out deleted file mode 100644 index 0faee15a7b55f484dc0477a6d1ff252ea519fd3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.06369722684224446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198512_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198512_M_GLOBAL.out deleted file mode 100644 index f20fde76f11d2dda98291a563ef083991da83f21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.03301657835642497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198601_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198601_D_GLOBAL.out deleted file mode 100644 index a3fefa826dfb425752a256ac4d3d12eb858c2159..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.028702946503957112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198601_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198601_H_GLOBAL.out deleted file mode 100644 index 99f4d1d1283aa4cbd315b35febc29b665e03a4bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.03868637482325236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198601_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198601_M_GLOBAL.out deleted file mode 100644 index 809a750c85be8c031674bd7633a5a91ce7825d8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.03711364269256592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198602_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198602_D_GLOBAL.out deleted file mode 100644 index 5137ee60ceae73e0c3a2eb7a1db281754358f5bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.054471794764200845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198602_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198602_H_GLOBAL.out deleted file mode 100644 index b16ce63229aea356b2c32d1373b38a5e39e58ca5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.02547832727432251 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198602_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198602_M_GLOBAL.out deleted file mode 100644 index ee6e73366d53e012bfde1451a9cf6d25837b987c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.029909392197926838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198603_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198603_D_GLOBAL.out deleted file mode 100644 index 5d8212ebe28dbae40a8ffa78633453bf92712141..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.02455994685490926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198603_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198603_H_GLOBAL.out deleted file mode 100644 index 61faffc6506c938bd0bdc49f74099f3ddd3fef7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.035239803791046145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198603_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198603_M_GLOBAL.out deleted file mode 100644 index 35c04ac478fc1431bebc2b5e98eef74dc5dc15b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.02361288865407308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198604_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198604_D_GLOBAL.out deleted file mode 100644 index 1d046e2dbea02e339ef7fb01784c4e00695faf1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.045570647716522215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198604_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198604_H_GLOBAL.out deleted file mode 100644 index cbbed2616d5dbfb1bfb20f9b76ae6bd897953441..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.045551427205403644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198604_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198604_M_GLOBAL.out deleted file mode 100644 index b97a8b2ebdbdd949a5b402c21121f99135fe5889..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.04499917030334473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198605_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198605_D_GLOBAL.out deleted file mode 100644 index 017ff2005a74861f2b281c5c394547365a36fc21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.02627557913462321 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198605_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198605_H_GLOBAL.out deleted file mode 100644 index 257804b6a7545015e7d37b8d1d58014e6a0bf8b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.044587123394012454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198605_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198605_M_GLOBAL.out deleted file mode 100644 index 5de6b18d549b2000ad477894a7d0bbaf221cbf8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.032270395755767824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198606_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198606_D_GLOBAL.out deleted file mode 100644 index 515ad2283d4fc60fafbf8041da71fd45ca48d432..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.020199783643086753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198606_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198606_H_GLOBAL.out deleted file mode 100644 index 91d600ace49baab60d6d5eee9441d1b3fb8ebe1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.02810155153274536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198606_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198606_M_GLOBAL.out deleted file mode 100644 index 1a731b4934aa15b342457e00d4e69d4425d85423..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.03079076608022054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198607_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198607_D_GLOBAL.out deleted file mode 100644 index 063811c783d22ad852530f6e079535f46d06dcbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.03318450450897217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198607_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198607_H_GLOBAL.out deleted file mode 100644 index 7c45a88f4fcba9a7a6caf6b77896327559c5b937..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.03490392764409383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198607_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198607_M_GLOBAL.out deleted file mode 100644 index b8a6157832e7b7c28b060a91f92cc3b1efd4497b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.037530728181203205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198608_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198608_D_GLOBAL.out deleted file mode 100644 index d39db31941a23b8970d65da42fcc9347398825f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.02815512816111247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198608_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198608_H_GLOBAL.out deleted file mode 100644 index 245e995e2f1a99f1aaf9d8fab018a02fbd570a1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.05023796955744426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198608_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198608_M_GLOBAL.out deleted file mode 100644 index 288304d43cf19af79550a3ebbf1ac8038374224b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.040479421615600586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198609_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198609_D_GLOBAL.out deleted file mode 100644 index f4626ca199732c6955c24d79ab1049af8fe76812..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.043423322836558025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198609_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198609_H_GLOBAL.out deleted file mode 100644 index f53990f9dec5dc086c35cd6ab4815c09a0087855..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.024667767683664958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198609_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198609_M_GLOBAL.out deleted file mode 100644 index d7e8eb1dc6743db0b2ffefc511e978aa60335c5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.021073436737060545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198610_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198610_D_GLOBAL.out deleted file mode 100644 index fbca9b8e2e98022e078cf2c876a8f86278a72111..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.04794464111328125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198610_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198610_H_GLOBAL.out deleted file mode 100644 index bb98af61978d62eb73e98601f3c5de580767444b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.025808346271514893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198610_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198610_M_GLOBAL.out deleted file mode 100644 index 6a902b349324c0be096d71d46dd7c561323bd8ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.05531314214070638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198611_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198611_D_GLOBAL.out deleted file mode 100644 index ae677a98c9a23dc15b883aa2eeee879011b6066b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.028472121556599936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198611_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198611_H_GLOBAL.out deleted file mode 100644 index 7c31cd2e9f37b500d3a88f6138620384767a2093..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.033112414677937824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198611_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198611_M_GLOBAL.out deleted file mode 100644 index 9c8818906b2b2a812f663a983f078c023fba14c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.02794672648111979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198612_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198612_D_GLOBAL.out deleted file mode 100644 index a89cdf6b775958bca6fcaeca70f30661ffe3115e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.026731352011362713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198612_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198612_H_GLOBAL.out deleted file mode 100644 index 9cd39dce3331ddf0b23acd28b2daf863b16c4da2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.02364992300669352 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198612_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198612_M_GLOBAL.out deleted file mode 100644 index 7fda3774126561ba115e03c75cd3a89eea73f555..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.05368737379709879 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198701_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198701_D_GLOBAL.out deleted file mode 100644 index e088da0cbac9180e899f9c7db9200aeaabb5a2d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.022470096747080486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198701_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198701_H_GLOBAL.out deleted file mode 100644 index eeb8aa8af4da39ddf6df0ea28c163bc700a2af35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.03766390085220337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198701_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198701_M_GLOBAL.out deleted file mode 100644 index 1d78bafc45140ffe832847c507cca6afd982c0ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.024939068158467612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198702_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198702_D_GLOBAL.out deleted file mode 100644 index ecafacb7e271efe24e65af7bc6dc25caea48fdf5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.04407498041788737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198702_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198702_H_GLOBAL.out deleted file mode 100644 index ed7a537b6f6954284404f8ebf99774e5e4df8e42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.029013641675313315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198702_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198702_M_GLOBAL.out deleted file mode 100644 index 0ae9f2aa6f1c12105f63c6cd0e5b224ddec92140..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.0522120475769043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198703_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198703_D_GLOBAL.out deleted file mode 100644 index dc08fc1223f3b2fe1a111ff8cafa1544e9a52938..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.0400351087252299 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198703_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198703_H_GLOBAL.out deleted file mode 100644 index d9c28984b19aadb729bfb5618873390871420708..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.02668347756067912 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198703_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198703_M_GLOBAL.out deleted file mode 100644 index 7bf91d2b8ac138d2d940b2f5b53461d3c3c09ae6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.03292122681935628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198704_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198704_D_GLOBAL.out deleted file mode 100644 index 8785053ec9bcabec939c7275fba4f987ce0514c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.023405396938323976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198704_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198704_H_GLOBAL.out deleted file mode 100644 index d008e5f3176ecfb09c688f68eb3af12e88f52162..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.032717764377593994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198704_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198704_M_GLOBAL.out deleted file mode 100644 index 5489b408708f5ac75960c0fa7add367e0ddeb7cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.04365565776824951 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198705_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198705_D_GLOBAL.out deleted file mode 100644 index 14bbd146bd5ae0c9a8cfab0d2d1d6a6c175b582a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.03913556337356568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198705_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198705_H_GLOBAL.out deleted file mode 100644 index 4f8fdb1b419d40cf8e31c63d07ae3cc45cf8f450..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.04252456426620484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198705_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198705_M_GLOBAL.out deleted file mode 100644 index 7b568976a17e730788284f8185902142e20d6f3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.061146954695383705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198706_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198706_D_GLOBAL.out deleted file mode 100644 index 553a77389978cb9ce3218cc717d296de8a2ed88f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198706 STATION NETCDFs -0.034646217028299967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198706_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198706_H_GLOBAL.out deleted file mode 100644 index ad314a1eec74953e62327d377d501c62ca6b4217..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198706 STATION NETCDFs -0.03739490906397502 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198706_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198706_M_GLOBAL.out deleted file mode 100644 index bff7914bc783f123d23daf5335f27ef29f7f3622..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198706 STATION NETCDFs -0.03125079075495402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198707_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198707_D_GLOBAL.out deleted file mode 100644 index ff127a3daa45e2ac9ed1db51bb34979eb9de3306..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198707 STATION NETCDFs -0.0326203187306722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198707_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198707_H_GLOBAL.out deleted file mode 100644 index 2fb7f42e5cf69090312cbee174dfc62fcbdc334c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198707 STATION NETCDFs -0.024540547529856363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198707_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198707_M_GLOBAL.out deleted file mode 100644 index c13d67dbb2e3ff4b8d6526bb09ef076ca7a88d8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198707 STATION NETCDFs -0.046366580327351886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198708_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198708_D_GLOBAL.out deleted file mode 100644 index 22677732651dd24368a76e175a71bb9c7457c107..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198708 STATION NETCDFs -0.02882935603459676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198708_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198708_H_GLOBAL.out deleted file mode 100644 index 49251a1cdd554594cdfa5a5c0190f62a4eda9f90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198708 STATION NETCDFs -0.02390644947687785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198708_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198708_M_GLOBAL.out deleted file mode 100644 index 3d8d771418ed36f38d7c0098f8791096d4d26c58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198708 STATION NETCDFs -0.04277519782384236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198709_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198709_D_GLOBAL.out deleted file mode 100644 index 08b327ade26d1e2c7089231d98444046f6dd136a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198709 STATION NETCDFs -0.02613122860590617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198709_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198709_H_GLOBAL.out deleted file mode 100644 index 54b95ef90cbf723b14bc59e9bae9d116fb4c25ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198709 STATION NETCDFs -0.06301368872324625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198709_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198709_M_GLOBAL.out deleted file mode 100644 index eaa2d42d9d42e11d48d9e7b65a34f7c7f4310d59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198709 STATION NETCDFs -0.0298650066057841 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198710_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198710_D_GLOBAL.out deleted file mode 100644 index dd3d5f3fd131d3ee561d35a48410ca9c23d186f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198710 STATION NETCDFs -0.023923691113789877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198710_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198710_H_GLOBAL.out deleted file mode 100644 index 3f0eadb7be9afce71b5c34d1b90ed094c591ac06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198710 STATION NETCDFs -0.0397525429725647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198710_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198710_M_GLOBAL.out deleted file mode 100644 index 90a215b087fba7064157739ec90d3952de7137c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198710 STATION NETCDFs -0.038801109790802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198711_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198711_D_GLOBAL.out deleted file mode 100644 index 9bbf13902b890c5a01109d63009833991134addd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198711 STATION NETCDFs -0.032463411490122475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198711_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198711_H_GLOBAL.out deleted file mode 100644 index 95f74652482128cf262f37cafbe94d49f1e3a5cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198711 STATION NETCDFs -0.03193681637446086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198711_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198711_M_GLOBAL.out deleted file mode 100644 index 5f0cbad549bf5b14abe50ccc588a1b21451ae416..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198711 STATION NETCDFs -0.03132985432942708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198712_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198712_D_GLOBAL.out deleted file mode 100644 index b981093d285c80da07c1de5b8d89fb9d5d8429fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198712 STATION NETCDFs -0.03799211581548055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198712_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198712_H_GLOBAL.out deleted file mode 100644 index b53f66155ad3698ce006c8905f6b546b5ca9ba3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198712 STATION NETCDFs -0.026745776335398357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198712_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198712_M_GLOBAL.out deleted file mode 100644 index 53cc6d1973267a615739680071e6ee8ca04a5446..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198712 STATION NETCDFs -0.02568991978963216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198801_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198801_D_GLOBAL.out deleted file mode 100644 index 5bfa849f56a72bf6e523d29603f71c9987c4f336..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198801 STATION NETCDFs -0.0505789041519165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198801_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198801_H_GLOBAL.out deleted file mode 100644 index 3a25c9f91b1b50979d4613f34f545ce15430da9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198801 STATION NETCDFs -0.024980326493581135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198801_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198801_M_GLOBAL.out deleted file mode 100644 index 673d6105b360d239abab2c0cb3ae402c083c8e3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198801 STATION NETCDFs -0.0339771827061971 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198802_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198802_D_GLOBAL.out deleted file mode 100644 index ef84e67021094dc33dfce152905d28e1c2aa0675..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198802 STATION NETCDFs -0.03233406543731689 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198802_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198802_H_GLOBAL.out deleted file mode 100644 index 559b00a4abed1fc868aa31ef64998a6ebdee5e6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198802 STATION NETCDFs -0.03289248148600261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198802_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198802_M_GLOBAL.out deleted file mode 100644 index 7eeef39f182004ecdedf2fcfba3a952c255601ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198802 STATION NETCDFs -0.03903626600901286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198803_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198803_D_GLOBAL.out deleted file mode 100644 index a7862e60379aa62706d99cdf3b99d61dd9f15e1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198803 STATION NETCDFs -0.029630645116170248 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198803_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198803_H_GLOBAL.out deleted file mode 100644 index 3a2c83bc684ffb7b7b8232ee2985820aa180b2e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198803 STATION NETCDFs -0.030616954962412516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198803_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198803_M_GLOBAL.out deleted file mode 100644 index 9750d5b61c9d8133a8a33aed81aa002b9b750024..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198803 STATION NETCDFs -0.04867825905481974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198804_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198804_D_GLOBAL.out deleted file mode 100644 index 55b6af9f2b2e21239406cb8cda98265de17a9dda..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.03184056282043457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198804_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198804_H_GLOBAL.out deleted file mode 100644 index 3e850f8fdb605b3fab9f961d55ab8f364809a0c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.03289563258488973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198804_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198804_M_GLOBAL.out deleted file mode 100644 index 1aa19a94879ebdbd18dcda48bb4cf93b8e6f9180..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.045864204565684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198805_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198805_D_GLOBAL.out deleted file mode 100644 index 8dffb4f92d93720cb1caceb9a136655b4067470e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198805 STATION NETCDFs -0.041234290599823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198805_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198805_H_GLOBAL.out deleted file mode 100644 index 6e05656d4eac992656dcaf2452f0ff500bfa4440..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198805 STATION NETCDFs -0.02901329199473063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198805_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198805_M_GLOBAL.out deleted file mode 100644 index f41f9ac5fc27c7d37d8f8b65599d65690288331d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198805 STATION NETCDFs -0.021537399291992186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198806_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198806_D_GLOBAL.out deleted file mode 100644 index d6ca86313c0d4b48cff5c34b65d4a1185319be38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198806 STATION NETCDFs -0.034910035133361814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198806_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198806_H_GLOBAL.out deleted file mode 100644 index c903230c74cdc3762a9ac378e1e482b584c0ec2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198806 STATION NETCDFs -0.026847906907399497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198806_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198806_M_GLOBAL.out deleted file mode 100644 index 1301ab43e90e00d611305c7f6dc6abfc66d7a1d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198806 STATION NETCDFs -0.024785335858662924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198807_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198807_D_GLOBAL.out deleted file mode 100644 index 6c831fa6a2d47534726dca71caa40f9a81d82115..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198807 STATION NETCDFs -0.05223428805669149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198807_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198807_H_GLOBAL.out deleted file mode 100644 index 2e0f24a3bf3eba0369945ad9d1c813e381a9b665..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198807 STATION NETCDFs -0.038235366344451904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198807_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198807_M_GLOBAL.out deleted file mode 100644 index 5aa4e710d1a5f2c1ec3c82b9700aa0691057e003..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198807 STATION NETCDFs -0.0352961262067159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198808_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198808_D_GLOBAL.out deleted file mode 100644 index bdb3483d8841fa71abf902efc6d7ccb715d76f72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198808 STATION NETCDFs -0.03933269182840983 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198808_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198808_H_GLOBAL.out deleted file mode 100644 index 55015065d5c181049eeea497aa195eb2ff62cf80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198808 STATION NETCDFs -0.03057257334391276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198808_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198808_M_GLOBAL.out deleted file mode 100644 index af9ca958bae927878ecc4cc14a0c453876e84144..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198808 STATION NETCDFs -0.05266005198160807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198809_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198809_D_GLOBAL.out deleted file mode 100644 index 0953a71a20fa64bde8d96e93e0c062a2546358ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198809 STATION NETCDFs -0.026780935128529866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198809_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198809_H_GLOBAL.out deleted file mode 100644 index 823251f4c85b795cf6ba81bfdaa0e0d7dac370f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198809 STATION NETCDFs -0.02915565570195516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198809_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198809_M_GLOBAL.out deleted file mode 100644 index acb5de22f831eae5d275b9c800d3eacdd1f0ef25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198809 STATION NETCDFs -0.040909337997436526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198810_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198810_D_GLOBAL.out deleted file mode 100644 index 587b8a64198d0bc9369ae8ca0e7e6623ffa3c1a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.04534807999928792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198810_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198810_H_GLOBAL.out deleted file mode 100644 index a39d419b4012a30f29ef120ef26987c1989a22b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.03300677537918091 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198810_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198810_M_GLOBAL.out deleted file mode 100644 index 11da2951b0a4043c2a41efe23a7ca833433e521c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.02494588295618693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198811_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198811_D_GLOBAL.out deleted file mode 100644 index 4eedc2b9787c3859155059295befcadbb48d7be8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.02870432138442993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198811_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198811_H_GLOBAL.out deleted file mode 100644 index 2b06e11e74e4e3cbc3593aaec7aa25e451eec8d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.026113359133402507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198811_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198811_M_GLOBAL.out deleted file mode 100644 index 6a42a2d3d014448388cb4d5049400da4c25796b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.047688361008961996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198812_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198812_D_GLOBAL.out deleted file mode 100644 index 2cc030282fe83d61b6aaa6fac1d133ca7bf3268e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.023480673631032307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198812_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198812_H_GLOBAL.out deleted file mode 100644 index fc59e82bcda70e31218bf5dec3a8a01294bd17a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.031452898184458414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198812_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198812_M_GLOBAL.out deleted file mode 100644 index ebad2cfd67b893ddf5cb1e9daeba4edab9b68160..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.045395946502685545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198901_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198901_D_GLOBAL.out deleted file mode 100644 index 5cb0cf9b42e6e3963bde4306536abf1a193f0075..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.04281683365503947 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198901_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198901_H_GLOBAL.out deleted file mode 100644 index 23154e2574ebde09d7eca254cf374c103abd573e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.026919126510620117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198901_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198901_M_GLOBAL.out deleted file mode 100644 index 3063e029c21c5f75d4fec34c84f579525a3e7b06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.028278966744740803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198902_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198902_D_GLOBAL.out deleted file mode 100644 index 3457304ef0b171867cc8c24affc0cd854cbe9ecd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.030725646018981933 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198902_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198902_H_GLOBAL.out deleted file mode 100644 index 2a3d75bb5b8f972efc4b79aa645a0033f7825e4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.02684119939804077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198902_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198902_M_GLOBAL.out deleted file mode 100644 index 4db30bf699e1dee4ae40b6be8b7b8f37b38385fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.03372291326522827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198903_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198903_D_GLOBAL.out deleted file mode 100644 index d83ba3e08136175f116975c9e033054a43f8375a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.055059591929117836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198903_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198903_H_GLOBAL.out deleted file mode 100644 index f4f305befab778e40c3a43e0dc7bf2de73e4601f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.026638575394948325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198903_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198903_M_GLOBAL.out deleted file mode 100644 index b819f549721fa8ba8bc1659a983d132fd47ec3bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.04763816197713216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198904_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198904_D_GLOBAL.out deleted file mode 100644 index 0c47b91ac788f5400fe8af3b16d5cce2797f8b05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.02922389507293701 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198904_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198904_H_GLOBAL.out deleted file mode 100644 index aa896a13be3e660c55776eff40c68a712da70e2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.03331105709075928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198904_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198904_M_GLOBAL.out deleted file mode 100644 index 4855ef4fdc060121bbb9293663eb7bce10fb95bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.06135263442993164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198905_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198905_D_GLOBAL.out deleted file mode 100644 index da409023efb6a08e82d05b3b2ad9e8ece5ef0a08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.020595773061116537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198905_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198905_H_GLOBAL.out deleted file mode 100644 index 5f281c0667483d86f77ae191e0337d3fb965810b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.03539097706476847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198905_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198905_M_GLOBAL.out deleted file mode 100644 index 7dd14bc5900937bf9f821b66f74ee9f838441c54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.02207080920537313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198906_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198906_D_GLOBAL.out deleted file mode 100644 index 75944831ba1e62be9088970824c4292b2fd9d83b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.04105459451675415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198906_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198906_H_GLOBAL.out deleted file mode 100644 index a2b32d30c07aaf166fdc29a8cd712bab26e6ef69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.026047670841217042 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198906_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198906_M_GLOBAL.out deleted file mode 100644 index c6e67fcf630228c59cbf692150aa8248699fef60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.04262463251749674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198907_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198907_D_GLOBAL.out deleted file mode 100644 index 641d09d005779c13f0af185b8c6f9a110da4c622..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.030180005232493083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198907_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198907_H_GLOBAL.out deleted file mode 100644 index 2c114a28bc59f4e8fd0ff51d27a82733b93cd956..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.027371923128763836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198907_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198907_M_GLOBAL.out deleted file mode 100644 index 813b2db947bdc2438dc1aa96439141151f17de23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.04138083060582479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198908_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198908_D_GLOBAL.out deleted file mode 100644 index a6188f6158830f4f2828c9a04549d0526b7ea889..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.02766100565592448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198908_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198908_H_GLOBAL.out deleted file mode 100644 index ebdcec6ad5effaaec33e5ccfa7ac63052a7f93aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.02916633685429891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198908_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198908_M_GLOBAL.out deleted file mode 100644 index f6625e7f27e2d9f4ce8dda11ce0bec21909956e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.037079668045043944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198909_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198909_D_GLOBAL.out deleted file mode 100644 index bf936320f00d74b71c21f5e9b79dc8d49992df5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.036083145936330156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198909_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198909_H_GLOBAL.out deleted file mode 100644 index 1972bde60fdf8140af8a954342c493cf46b654c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.03541580041249593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198909_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198909_M_GLOBAL.out deleted file mode 100644 index f28397cc5c5c0d9c02641ce12b98742f3d0acecd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.031894803047180176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198910_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198910_D_GLOBAL.out deleted file mode 100644 index 3978d2ac8693edea1d69bed6029954389056b6df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.047535375754038496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198910_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198910_H_GLOBAL.out deleted file mode 100644 index 0546e43c0be1c041d63db1c285aa36dbbaf0b624..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.03321970701217651 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198910_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198910_M_GLOBAL.out deleted file mode 100644 index 10def9e7620f6e70897c4d722de832f68aba1db2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.030023610591888426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198911_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198911_D_GLOBAL.out deleted file mode 100644 index d89558b7d3f9014253f6888423788497b51d37fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.031450470288594566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198911_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198911_H_GLOBAL.out deleted file mode 100644 index e82758c24a3f0441104e1404518666293131cb1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.03207862377166748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198911_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198911_M_GLOBAL.out deleted file mode 100644 index 2a729d08e389343d410fb6f33af775cf5d0e6341..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.023305114110310873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198912_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198912_D_GLOBAL.out deleted file mode 100644 index 1661d96b2c1185113085db2e2b80185cb32b328f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.04915775060653686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198912_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198912_H_GLOBAL.out deleted file mode 100644 index e27b2e854265cebee338e694ae2c25e65df0a10c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.05921316941579183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_198912_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_198912_M_GLOBAL.out deleted file mode 100644 index fcc69f2f73a5cf69c228a668e515b1ca6516e0a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_198912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.026736772060394286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199312_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199312_D_GLOBAL.out deleted file mode 100644 index b86086f83d597f7cffcdc6043c75e8acb5a94cae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.03361719846725464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199312_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199312_H_GLOBAL.out deleted file mode 100644 index 257e03894ca6c2a21a532b6ed7b67b8bbdc5a95b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.045769679546356204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199312_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199312_M_GLOBAL.out deleted file mode 100644 index 41b0d540ba87a6b2644f6bd6238570ba0207b2c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.05367048184076945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199401_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199401_D_GLOBAL.out deleted file mode 100644 index 1b2aba3d1bf52e660212f25ba0d5c2dc7d954783..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.03741896152496338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199401_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199401_H_GLOBAL.out deleted file mode 100644 index 7f7d17027d3eaeab7536dbb49e0393ca1d433c0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.044562427202860515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199401_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199401_M_GLOBAL.out deleted file mode 100644 index dd97cd8d691d06a3891b48d051a8539b6a3330a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.03753256400426229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199402_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199402_D_GLOBAL.out deleted file mode 100644 index c1a88f9fde5fa65a088519f4846252f18154a37b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.0545350432395935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199402_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199402_H_GLOBAL.out deleted file mode 100644 index 1330d69b3cb2a32acb68193573d26908e775dd46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.03686190048853556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199402_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199402_M_GLOBAL.out deleted file mode 100644 index e2f3497d557f88e46d48d7371c2756bfa2eb9309..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.04300856590270996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199403_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199403_D_GLOBAL.out deleted file mode 100644 index d8a9bb382ccca5404fc7db128bf4d4d01bcad459..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.06281376679738362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199403_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199403_H_GLOBAL.out deleted file mode 100644 index b15529b2214b94659bfa5693e853120898b2e993..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.051899278163909913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199403_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199403_M_GLOBAL.out deleted file mode 100644 index 78525cab4ea0e64b65dafb35cbcc8852a100ea44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.05266098181406657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199404_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199404_D_GLOBAL.out deleted file mode 100644 index 1a47c222f71ec0bb8e6c50c86fe1c408c2c9067e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.060622763633728025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199404_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199404_H_GLOBAL.out deleted file mode 100644 index b982363e5213e574e38eac02b8540e9dea28b309..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.07276811202367146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199404_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199404_M_GLOBAL.out deleted file mode 100644 index 9650af58b8743b54f6363b758e39299d230b13cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.0378733237584432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199405_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199405_D_GLOBAL.out deleted file mode 100644 index fa64a6b8a2a9f3589bdb090029acc7f0389ca688..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.058917280038197836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199405_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199405_H_GLOBAL.out deleted file mode 100644 index d9164f4a57636c1b5d7cc781913c85a7416b73ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.03497381210327148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199405_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199405_M_GLOBAL.out deleted file mode 100644 index 3b1028651637f30e56895fd738952408cbb392fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.04058361848195394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199406_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199406_D_GLOBAL.out deleted file mode 100644 index bddbf9465b6e9bd1b1fd59f5d0b89480a3849853..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.0453626275062561 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199406_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199406_H_GLOBAL.out deleted file mode 100644 index eb0cfd1abe081498141b9c20b988b40189b25163..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.04972532590230306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199406_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199406_M_GLOBAL.out deleted file mode 100644 index d7e1ccf0bec19425de72640382535bb0d15fa7bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.0643798828125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199407_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199407_D_GLOBAL.out deleted file mode 100644 index 2c7cb16607b4f6a0b4e54a8014b6466234fb0847..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.058000707626342775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199407_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199407_H_GLOBAL.out deleted file mode 100644 index ea6b6725669b96f1cea94ece2e6afc7d890a1998..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.05579514900843303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199407_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199407_M_GLOBAL.out deleted file mode 100644 index 40a6c3952999aefc43df89fb0abaeaab533e7919..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.05277825991312663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199408_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199408_D_GLOBAL.out deleted file mode 100644 index e38aacfb3540332188dc5662df83bd6ffa3e4432..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.05280362367630005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199408_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199408_H_GLOBAL.out deleted file mode 100644 index 0de1549c488b2045059668b4f4cc44cd27dd0ae2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.06063162485758464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199408_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199408_M_GLOBAL.out deleted file mode 100644 index 71fff29f25d5c542cc8557be711e5ca48d92a4d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.050860206286112465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199409_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199409_D_GLOBAL.out deleted file mode 100644 index 3a6d5f4a1c5636f94a9448d85743dc6269d8ea77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.0544136921564738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199409_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199409_H_GLOBAL.out deleted file mode 100644 index 9c9470aadf8d0e8b9c1796763ecfa1dd543dc129..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.038827824592590335 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199409_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199409_M_GLOBAL.out deleted file mode 100644 index 0c3927a102658eb455cef70b756245b720652173..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.06269600788752237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199410_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199410_D_GLOBAL.out deleted file mode 100644 index 78c685baed7143219c5d1f0c19d46b1108c57cc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.04574784835179647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199410_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199410_H_GLOBAL.out deleted file mode 100644 index ede60a19daf904d1e1f9444be42fe768d1ae9069..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.045192376772562666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199410_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199410_M_GLOBAL.out deleted file mode 100644 index 0521cfacdb5df3c8a0e3317fcf2e31928fbc65ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.055070706208546955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199411_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199411_D_GLOBAL.out deleted file mode 100644 index dd606cf8eba81280d9af8985ff4220f81f2e7db3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.05877221822738647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199411_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199411_H_GLOBAL.out deleted file mode 100644 index 52752add9918717feb8f03695484d03320727211..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.06062005758285523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199411_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199411_M_GLOBAL.out deleted file mode 100644 index 82c0b706abfde119ab1e9612d12bef3b66243c2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.06871757109959921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199412_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199412_D_GLOBAL.out deleted file mode 100644 index 92e47b348e6e847c7a179888314284180cda1200..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.06817787885665894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199412_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199412_H_GLOBAL.out deleted file mode 100644 index bd3d515cf953f149878dd735c9f7991d9554adfb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.0661766529083252 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199412_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199412_M_GLOBAL.out deleted file mode 100644 index a75acfc6ede52127b03d0ca742c24e9cd2a85b1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.05649652083714803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199501_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199501_D_GLOBAL.out deleted file mode 100644 index 7522902b20bbb6d818d0f51fe912fbcfbce9fe82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.045587249596913654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199501_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199501_H_GLOBAL.out deleted file mode 100644 index b03e97e7dfc72019c3630a9bebae3e3b64a5609f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.05787074565887451 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199501_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199501_M_GLOBAL.out deleted file mode 100644 index 25d84c785defdb7ebe694b08c0246a3861d11206..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.05106739203135172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199502_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199502_D_GLOBAL.out deleted file mode 100644 index 20dab055bf4a488f4af0a7b862ff1101e3a1dad5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.043799090385437014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199502_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199502_H_GLOBAL.out deleted file mode 100644 index 4092ee95eeb43d12d87d2068bccc70c8acf89e06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.05120012362798055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199502_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199502_M_GLOBAL.out deleted file mode 100644 index cbc8747a86d316ddd20eba699f58e7d4a6083b17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.07246171633402507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199503_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199503_D_GLOBAL.out deleted file mode 100644 index 29e7264606680954259d0a3bb0140a093570cef4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.06135192314783732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199503_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199503_H_GLOBAL.out deleted file mode 100644 index 77833c21d8d544941afc0189cd7256d03d2b532c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.04304354588190715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199503_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199503_M_GLOBAL.out deleted file mode 100644 index 457a91b930d900d7f7fea3662cc056de854b403f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.05883285601933797 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199504_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199504_D_GLOBAL.out deleted file mode 100644 index 627fb669674a5b9a078add29d4044ef1c027ce1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.05274132490158081 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199504_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199504_H_GLOBAL.out deleted file mode 100644 index a796361c429ff8237dfeaded4b005961a11995ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.05559153954188029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199504_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199504_M_GLOBAL.out deleted file mode 100644 index 0e7d608beb6cc6b6f163ddf2f55e6de9220ca6e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.0390571117401123 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199505_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199505_D_GLOBAL.out deleted file mode 100644 index 34d98044f3c1f0dfedeb61075e9b6701de45d64c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.05964729785919189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199505_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199505_H_GLOBAL.out deleted file mode 100644 index 89670c2d0709c846f712e6cad30f3fb31f345bc5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.040508560339609784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199505_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199505_M_GLOBAL.out deleted file mode 100644 index 7c7ee74eed5840286314ae72c75151bec207d99e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.03610750436782837 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199506_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199506_D_GLOBAL.out deleted file mode 100644 index c115d91d9886b8159d274683c502b3e746f10baf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.040861515204111735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199506_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199506_H_GLOBAL.out deleted file mode 100644 index 9fce784f3bdb4a3dc0c1b556ef513e3450380d63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.04178899129231771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199506_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199506_M_GLOBAL.out deleted file mode 100644 index 772f5b5598fee572033ba1fd6a0ac425022a4da9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.04720845619837443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199507_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199507_D_GLOBAL.out deleted file mode 100644 index b7d2a9173afb03e028041e6e43fb68dbd9f11172..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.06687954266866049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199507_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199507_H_GLOBAL.out deleted file mode 100644 index 908d7735a58a53601ecc1e6f1ffae0820c235439..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.04247524738311768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199507_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199507_M_GLOBAL.out deleted file mode 100644 index 84066ea172f538c57a2b5f5aedff4aa18620011f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.04815358320871989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199508_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199508_D_GLOBAL.out deleted file mode 100644 index 6967f42102fa9551838f84ff5ad3ae33ad50bc36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.050914955139160153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199508_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199508_H_GLOBAL.out deleted file mode 100644 index 4cc346e7ac245f0e051c00234b6504caec64848b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.03705407778422038 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199508_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199508_M_GLOBAL.out deleted file mode 100644 index 17f122dbea3b006aba4688b8126aa97e7cdd8b92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.07493575016657511 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199509_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199509_D_GLOBAL.out deleted file mode 100644 index d0b38b27994c87a5d6bae9f00d540444c56fe503..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.057676227887471516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199509_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199509_H_GLOBAL.out deleted file mode 100644 index 574f51430bb052c1fccbf7adca16f62c4256f9f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.06745439767837524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199509_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199509_M_GLOBAL.out deleted file mode 100644 index 4a8545b27deef881bae9d1e994898631b53ae89c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.04127495288848877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199510_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199510_D_GLOBAL.out deleted file mode 100644 index 00bc8b60dada9c1b7b92bd77d4df22db9b2f1413..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.04598937431971232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199510_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199510_H_GLOBAL.out deleted file mode 100644 index 842d6a4eec1acb59136142806c47f8cf3c14a39a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.06477286020914713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199510_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199510_M_GLOBAL.out deleted file mode 100644 index e2d7fc6a55bc97e75e7c66d742644e174e1cfb7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.053041998545328775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199511_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199511_D_GLOBAL.out deleted file mode 100644 index cfbc29df709f4788dc70dfbb13f528500bd7bd82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.053812567392985025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199511_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199511_H_GLOBAL.out deleted file mode 100644 index c9bad0c449e26b9a01de33412e00bdd5896c198f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.05912050803502401 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199511_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199511_M_GLOBAL.out deleted file mode 100644 index da1eb25405888fd0551ed0e880801757aad904ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.0423895279566447 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199512_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199512_D_GLOBAL.out deleted file mode 100644 index f4d736df76530513cfa4f0dbacc14a98b6afdfd7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.04855184157689412 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199512_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199512_H_GLOBAL.out deleted file mode 100644 index 45dc109500767d436b60b98b5a4c82ad64e1cca2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.07669401963551839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199512_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199512_M_GLOBAL.out deleted file mode 100644 index 42ecb213457f313bce827bdf695a9c66347e0c14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.0516380508740743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199601_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199601_D_GLOBAL.out deleted file mode 100644 index 9aa61ad0bd94c472d587670fa82bd8b392077d03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.05345102548599243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199601_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199601_H_GLOBAL.out deleted file mode 100644 index c7add7f82b20d50716cb36ec7a1898116971dc33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.07151211102803548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199601_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199601_M_GLOBAL.out deleted file mode 100644 index 98c08a084a27c33d157e483e0917f696ce264ff6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.04728976488113403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199602_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199602_D_GLOBAL.out deleted file mode 100644 index 90f55204db875898dbbc5e83fae9222c0ee052b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.07231064240137736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199602_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199602_H_GLOBAL.out deleted file mode 100644 index e85432fc0b032bf6cefa17db6b252af7c26e4c28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.04299709399541219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199602_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199602_M_GLOBAL.out deleted file mode 100644 index 50ee170be0f12a79bb9a6c88e93361aace28970e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.09021364450454712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199603_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199603_D_GLOBAL.out deleted file mode 100644 index 26540c3faf3f9670926b5a770d1eb7dde5c39f38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.054104161262512204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199603_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199603_H_GLOBAL.out deleted file mode 100644 index 1de553acd0e95d720ba9e0b778dd526bd6bcafc1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.05916066169738769 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199603_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199603_M_GLOBAL.out deleted file mode 100644 index 9b2e5c9345772abfb94f900f0535a26893d77ce8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.08319921096165975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199604_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199604_D_GLOBAL.out deleted file mode 100644 index b52437107030516981856b04f11192374312968f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.053895660241444904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199604_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199604_H_GLOBAL.out deleted file mode 100644 index ff0e2235a637b9b5d889b8150925efa571f754c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.06876996358235678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199604_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199604_M_GLOBAL.out deleted file mode 100644 index 6a4fbe007c2ddacb784b2b0447ccfc68350c8a8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.07978093226750692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199605_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199605_D_GLOBAL.out deleted file mode 100644 index 72faeb4ef7d6103f884b7afc15a99884810de1eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.05831359624862671 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199605_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199605_H_GLOBAL.out deleted file mode 100644 index d450eccb6c256ab81867d9e14261c4835966c051..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.07001858154932658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199605_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199605_M_GLOBAL.out deleted file mode 100644 index c13450619850bc4b0660ab3d88cb1cf7d5cceb6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.06692529916763305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199606_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199606_D_GLOBAL.out deleted file mode 100644 index fa70203742c5e869ab56789e538f742dd42f9173..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.07929555972417196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199606_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199606_H_GLOBAL.out deleted file mode 100644 index e29b5ac3d8556210e4a49d6eb86273d22cdcfa12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.04698652426401774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199606_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199606_M_GLOBAL.out deleted file mode 100644 index b6ef4509d495c911493bed1d822d4553c90f3fd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.07204353014628093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199607_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199607_D_GLOBAL.out deleted file mode 100644 index f94941a1139a0be01f1e458235551fac9b37eaf5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.05468053817749023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199607_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199607_H_GLOBAL.out deleted file mode 100644 index faec0ea41dc7220d3acf46723ce4b57dae4c49f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.06656858126322428 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199607_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199607_M_GLOBAL.out deleted file mode 100644 index 1f136a75cf88337269ebbb3e017f868652194bcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.08315633535385132 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199608_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199608_D_GLOBAL.out deleted file mode 100644 index 3998ad30363eb9f160f7095603ae55b20987615c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.07702404657999674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199608_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199608_H_GLOBAL.out deleted file mode 100644 index 15f4f002ccbb552e3745a8655b03b10e71da0b7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.06004814704259236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199608_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199608_M_GLOBAL.out deleted file mode 100644 index 7c7012ecabcb548a68d249a15a796da23873d24f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.05773293972015381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199609_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199609_D_GLOBAL.out deleted file mode 100644 index 9622f0e4301fda8f9e4ebe3c8ac1e79ecd41b83e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.08373206853866577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199609_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199609_H_GLOBAL.out deleted file mode 100644 index 8015631ed3073250e6737e9949877c7ae9f16ca7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.07087541023890177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199609_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199609_M_GLOBAL.out deleted file mode 100644 index 32d5a1729ab48ea25762f45a42966b1e0f283375..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.07942452828089396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199610_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199610_D_GLOBAL.out deleted file mode 100644 index 1cbce29f4acea0d8fe38d134862d3d8720c7ffb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.07268259127934774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199610_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199610_H_GLOBAL.out deleted file mode 100644 index 4238a4bead9e7868a5483c8154ed6ddb2fe9a34a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.05147622028986613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199610_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199610_M_GLOBAL.out deleted file mode 100644 index 4b18d15226eb35f88475930cacef1b22ad3acdb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.06998796463012695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199611_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199611_D_GLOBAL.out deleted file mode 100644 index dc8954ec505de0f8e858971e9900eeed132248cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.0601702610651652 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199611_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199611_H_GLOBAL.out deleted file mode 100644 index 1a6855ac822e7ac8dd771b3ffb641ed1e3d24c81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.04574939807256063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199611_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199611_M_GLOBAL.out deleted file mode 100644 index 13d79b9e48de3e2d524065185458aea86596580f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.06019689242045085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199612_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199612_D_GLOBAL.out deleted file mode 100644 index e9c49fc5d65fad93fc92a08bc3cb8cfc8064e545..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.07836980024973551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199612_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199612_H_GLOBAL.out deleted file mode 100644 index b667e8a287ff5640cfad0c7ff684c4cc1b3ddc9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.0697069009145101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199612_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199612_M_GLOBAL.out deleted file mode 100644 index 94bc6fd6cf0d0ada2191faffd2bc90d7d1640349..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.057632052898406984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199701_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199701_D_GLOBAL.out deleted file mode 100644 index 346af371556bd1146ee92dc706a9c2764357a591..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.073663330078125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199701_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199701_H_GLOBAL.out deleted file mode 100644 index ebce30631676f1e20e42177a1515f086468102fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.052740029493967694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199701_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199701_M_GLOBAL.out deleted file mode 100644 index d524e01c72e8ef950cb64d53c7b9f34ebd595b34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.0498671015103658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199702_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199702_D_GLOBAL.out deleted file mode 100644 index 9660b2bcbfc1fe3fc1d7762dc83614429f5d096c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.0787474274635315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199702_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199702_H_GLOBAL.out deleted file mode 100644 index 198f601880842d0de502fbcb4cd4308e7333f964..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.06581915616989135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199702_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199702_M_GLOBAL.out deleted file mode 100644 index 68311451eb9c9952d15d8417f64ce9d6ddb8ae41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.0702163020769755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199703_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199703_D_GLOBAL.out deleted file mode 100644 index 7182380c2a518a398f43c33ec45813d164e00424..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.06738555828730265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199703_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199703_H_GLOBAL.out deleted file mode 100644 index 48f0a878323557e32cb6e8a835c7f97679990b96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.07734293142954508 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199703_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199703_M_GLOBAL.out deleted file mode 100644 index a2fe26a6da743a0357a0eb032664eb101504e682..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.05172672271728516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199704_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199704_D_GLOBAL.out deleted file mode 100644 index 40602e531716abf8b3aa46bd0262cc9c130adbd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.06930102507273356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199704_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199704_H_GLOBAL.out deleted file mode 100644 index 9bc1584c250e0c0dd2ecd15f4622f1a47a388c20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.08192445039749145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199704_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199704_M_GLOBAL.out deleted file mode 100644 index f7ee3f65525b70b9ecd54cf326c4795c5c825394..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.05447369416554769 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199705_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199705_D_GLOBAL.out deleted file mode 100644 index 336b883fc540e0219f9e483c802e27e25ab2f8ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.056831785043080646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199705_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199705_H_GLOBAL.out deleted file mode 100644 index c25d011c15be30ed225050e02ccd907a32e59ef7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.050559155146280926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199705_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199705_M_GLOBAL.out deleted file mode 100644 index 2cc6b61ac23190e8ca248ffc5e4fd1bad95bc761..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.06999039649963379 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199706_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199706_D_GLOBAL.out deleted file mode 100644 index 796c3536c40103a2a1e98d6745adf13dad801867..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.05367141564687093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199706_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199706_H_GLOBAL.out deleted file mode 100644 index be136781bb5ebcac51e257ef4ca6a0cad4d8f68b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.048976715405782065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199706_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199706_M_GLOBAL.out deleted file mode 100644 index 3b2c4e1a4c0bfc78ac5903cfff82cf38c4dee8ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.06263397137324016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199707_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199707_D_GLOBAL.out deleted file mode 100644 index 1fe27a530a9aa3c8412adbb8b52c7816140e513c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.05413263241449992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199707_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199707_H_GLOBAL.out deleted file mode 100644 index 69a2a165fad9e18f14a6ac93ad9c8311fa867b2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.07226424217224121 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199707_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199707_M_GLOBAL.out deleted file mode 100644 index 489af4e3329c87463f4052e7ea1947d7a5c4286f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.06595120032628378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199708_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199708_D_GLOBAL.out deleted file mode 100644 index ece52df3687d7d1cd932d8e0fb2300122648bcf6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.06930348873138428 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199708_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199708_H_GLOBAL.out deleted file mode 100644 index 65f8ea5c6062ab020f6042c325a371fed2de22c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.053281112511952715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199708_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199708_M_GLOBAL.out deleted file mode 100644 index 308b9d9383856cdc63ea1281d6c8eea32923c97b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.049655139446258545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199709_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199709_D_GLOBAL.out deleted file mode 100644 index 9e2bd727ee79af9e38bb6e0204619cfb3433be2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.07612525224685669 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199709_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199709_H_GLOBAL.out deleted file mode 100644 index 391db8e449f5a8f72065f5f9ec87b92960015d84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.07578914960225423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199709_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199709_M_GLOBAL.out deleted file mode 100644 index a82ba20836a29454ce39aa5e889a3995f18b6608..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.0760156750679016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199710_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199710_D_GLOBAL.out deleted file mode 100644 index 86aff87228b7ca12690724c570455d162bcf52ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.08467460076014201 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199710_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199710_H_GLOBAL.out deleted file mode 100644 index a227209b0614563459ba05cc7f4d304b22daccb1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.0555827260017395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199710_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199710_M_GLOBAL.out deleted file mode 100644 index 2067fc5d599e442a2fa7a72aab26877ba558000d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.05423411925633748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199711_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199711_D_GLOBAL.out deleted file mode 100644 index d5761a8a423c05ece799e0045dfb905cc539f97f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.05077204704284668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199711_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199711_H_GLOBAL.out deleted file mode 100644 index 930f1728836793c629e0f8588ca3a7c682468054..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.04684005578358968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199711_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199711_M_GLOBAL.out deleted file mode 100644 index 6998b7b1c3dd1b4fd6a6f4980ccba594f1436d62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.05449308554331462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199712_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199712_D_GLOBAL.out deleted file mode 100644 index 84f030180463699e64ff5c19c98445ed556cf331..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.05797651211420695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199712_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199712_H_GLOBAL.out deleted file mode 100644 index 95950d6e7db50912921ca3ba942fd58ade9ccc62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.06692354679107666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199712_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199712_M_GLOBAL.out deleted file mode 100644 index 4df5d98184e8bc3d2d93c4231d5e919e8d811a16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.07631031274795533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199801_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199801_D_GLOBAL.out deleted file mode 100644 index fe54e56ef301c04c35f21035dfad72717682bc95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.05157222350438436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199801_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199801_H_GLOBAL.out deleted file mode 100644 index 70ae6e3a3073c36a69fe8082fcf445a3b54d6be5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.06672309637069702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199801_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199801_M_GLOBAL.out deleted file mode 100644 index ee19132535d48a385d3c70e9ef912a9a83e888ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.07969725529352824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199802_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199802_D_GLOBAL.out deleted file mode 100644 index 40372234dfa99d22c7106db685f5ebce096b19da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.08061376810073853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199802_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199802_H_GLOBAL.out deleted file mode 100644 index fe77f8cca34bf6427eae4a4a69dcc6cc681c1854..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.07158621549606323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199802_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199802_M_GLOBAL.out deleted file mode 100644 index a3076fb5cd5930865fd2bcb0a9f56b40e896c9b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.07453868786493938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199803_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199803_D_GLOBAL.out deleted file mode 100644 index 6a1f415a5c0e95c0a28c18c618dbb69b021cdc30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.07350920041402181 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199803_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199803_H_GLOBAL.out deleted file mode 100644 index dee298d40fceed4c647ecce470caba459e663b90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.05707854429880778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199803_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199803_M_GLOBAL.out deleted file mode 100644 index 467efbf6d4127f9d61ad5299901205f82b4697b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.0652360995610555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199804_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199804_D_GLOBAL.out deleted file mode 100644 index f7041c36287e1712d2aab88e936295cb2fd008d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.0788523236910502 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199804_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199804_H_GLOBAL.out deleted file mode 100644 index a951ec63ec1b0cae99e716f81d9bf7288cb41fc8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.05667196114857991 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199804_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199804_M_GLOBAL.out deleted file mode 100644 index 4557e1eede045abf247d2f61dde10e7d95e7d744..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.09191881020863851 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199805_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199805_D_GLOBAL.out deleted file mode 100644 index 0878c6298a8dad8d8be2da144aab1be0063f62bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.08384895324707031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199805_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199805_H_GLOBAL.out deleted file mode 100644 index 2ffa87615284674e8ecf540bfa528d5e2a95c423..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.06217069625854492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199805_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199805_M_GLOBAL.out deleted file mode 100644 index 6c323441ec0293b35f199f8470d6b930b4152348..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.0543623407681783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199806_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199806_D_GLOBAL.out deleted file mode 100644 index d9f2e5e74f0cdd14d7bd9429b8a0565f80934c7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.07569771607716878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199806_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199806_H_GLOBAL.out deleted file mode 100644 index 963d22170038be31d7793facf8772fc6ac6e149e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.05130118131637573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199806_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199806_M_GLOBAL.out deleted file mode 100644 index 6a3d018abd8999f7a68b7574889238f1b9e695e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.0675965428352356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199807_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199807_D_GLOBAL.out deleted file mode 100644 index 199c4e7ef3404bedfa7aa051a48d22881e7dca92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.05389583110809326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199807_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199807_H_GLOBAL.out deleted file mode 100644 index c9c3fa32d27574a1d74dc5d491b0f305f3019970..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.06897453864415487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199807_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199807_M_GLOBAL.out deleted file mode 100644 index b1e67ae441d383695c6d90498619e8ae0dde8036..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.05146039724349975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199808_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199808_D_GLOBAL.out deleted file mode 100644 index f434cac6a9058214dee4af62a42da77acf290198..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.06796769301096599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199808_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199808_H_GLOBAL.out deleted file mode 100644 index beebffd2cd87eb9c20c74eb6a299841962e3346a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.04529293775558472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199808_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199808_M_GLOBAL.out deleted file mode 100644 index c9a8e68a65c9528e6a5306f1d538a1c54add720a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.07276445627212524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199809_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199809_D_GLOBAL.out deleted file mode 100644 index 8b4ed0e48e84990dfefb7eec409feb52537174ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.07199327945709229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199809_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199809_H_GLOBAL.out deleted file mode 100644 index d7742c3f8ed9407fa8b6b20f7927fb0cec931e30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.06589196920394898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199809_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199809_M_GLOBAL.out deleted file mode 100644 index d75fbd4a9abe915d6ef59f0beb4b59c16d2bbb69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.054651347796122234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199810_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199810_D_GLOBAL.out deleted file mode 100644 index 40a07a5c3f82aa327c03aa743fd3db06b448e1f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.06972011725107828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199810_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199810_H_GLOBAL.out deleted file mode 100644 index e7f2e9645341fcb32a8f9c496b94d74806ab248d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.062257933616638186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199810_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199810_M_GLOBAL.out deleted file mode 100644 index f67eade1058aeb3c434ccf43fe7bd9922450de12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.078392227490743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199811_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199811_D_GLOBAL.out deleted file mode 100644 index bb303684e33efecafce929c42fd9cb7697ae9933..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.07282426357269287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199811_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199811_H_GLOBAL.out deleted file mode 100644 index 84ae8b2cec061ea2855268b46f8b1ed0aa88f4e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.07922521829605103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199811_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199811_M_GLOBAL.out deleted file mode 100644 index 24190075482e6b43953f4a473440d3e64fa04668..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.05530582666397095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199812_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199812_D_GLOBAL.out deleted file mode 100644 index bfce8b104e7f9895df4902ec368364aba7477e31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.08390353918075562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199812_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199812_H_GLOBAL.out deleted file mode 100644 index d8a5ec5adac44872f18e973c0cc0c3354a8b7252..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.0639294425646464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199812_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199812_M_GLOBAL.out deleted file mode 100644 index 4ea140912d22f23a51c76cb9a8b27ddc3a419c0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.0816493034362793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199901_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199901_D_GLOBAL.out deleted file mode 100644 index 501b7b52d1c8ff230d9f06827ba7d980fc4d55ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.0819410761197408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199901_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199901_H_GLOBAL.out deleted file mode 100644 index 62e02e8274b22ddb2e6441f58b7fd598df4d63c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.06891424655914306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199901_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199901_M_GLOBAL.out deleted file mode 100644 index 14151900c3f118b10cb4c905ac9d9ba721508cfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.06183799505233765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199902_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199902_D_GLOBAL.out deleted file mode 100644 index 646bd31063554bcbf658223236a0d811ae89a04d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.06141366958618164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199902_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199902_H_GLOBAL.out deleted file mode 100644 index c5ca8e85247e32a276a85a0fc3d89682d72adeb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.0821783979733785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199902_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199902_M_GLOBAL.out deleted file mode 100644 index a8db0efa3ee9a3f90954d950fb30f34f8f0081b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.07138894001642863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199903_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199903_D_GLOBAL.out deleted file mode 100644 index 228f4b49f98756172cf2750df94173a61ad7fc03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.08165784279505411 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199903_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199903_H_GLOBAL.out deleted file mode 100644 index b1ab6513b0bc44e7b5e8d987e4980a2a7815680b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.05331214269002279 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199903_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199903_M_GLOBAL.out deleted file mode 100644 index 1703e82871b04882cfde3181d34df3ac81875a0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.09045302867889404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199904_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199904_D_GLOBAL.out deleted file mode 100644 index e0f1e2dfc6fbbc0144947c9ce44eea2931cad872..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.07566043535868326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199904_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199904_H_GLOBAL.out deleted file mode 100644 index 9d8527724de0d10d8efe291caaaf0efe8190e66d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.056015169620513915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199904_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199904_M_GLOBAL.out deleted file mode 100644 index 9e6414a6fbfcc9a9f739cbf56e5927b28268d7b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.06289153099060059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199905_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199905_D_GLOBAL.out deleted file mode 100644 index 2bff947dc46248ce4f9932dbf2ff76509f45c786..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.08086150884628296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199905_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199905_H_GLOBAL.out deleted file mode 100644 index edbf99d7391141ef52ee8b3cbaa60c555aecfeea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.08394794464111328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199905_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199905_M_GLOBAL.out deleted file mode 100644 index 274d454f21b82fcc9994c61199d50b604543fc1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.07341509262720744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199906_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199906_D_GLOBAL.out deleted file mode 100644 index a831e7588ba93e8d92f02940d1fa35b414de2d4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.08149174451828003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199906_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199906_H_GLOBAL.out deleted file mode 100644 index 2bed626ea4f9cfdff387a43a15a6d98230bab441..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.07617668310801189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199906_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199906_M_GLOBAL.out deleted file mode 100644 index 42e1319cada8720e5ed02993556f181f71a1a5e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.055333733558654785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199907_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199907_D_GLOBAL.out deleted file mode 100644 index b9428b8d14697f085339a4f76a2c5374c802c7d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.05725816488265991 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199907_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199907_H_GLOBAL.out deleted file mode 100644 index 498b0250e7b5672ef1f7c6dadaae19446f22d676..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.059668338298797606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199907_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199907_M_GLOBAL.out deleted file mode 100644 index 04d113b49b8c63387bd0a024d64d651e5cec0ccb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.0560003916422526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199908_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199908_D_GLOBAL.out deleted file mode 100644 index 5f3107f543a7fc4d3e547546b798ece953cc5985..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.08927663167317708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199908_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199908_H_GLOBAL.out deleted file mode 100644 index 14c2517c9bbc159a4f30958818acef624a825965..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.04879159132639567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199908_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199908_M_GLOBAL.out deleted file mode 100644 index c2f7af26269ca225ed4b37b27a7185af613d7edc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.07969207763671875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199909_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199909_D_GLOBAL.out deleted file mode 100644 index 6b1f50123df149f4d156166b905e983d86467c55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.08010888497034709 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199909_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199909_H_GLOBAL.out deleted file mode 100644 index fb7a6a15aa783fcc4f0915588a5182f6eb6417e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.07476466496785482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199909_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199909_M_GLOBAL.out deleted file mode 100644 index 544990d94fc36b0222cd82699518191277a2b6f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.07435379425684611 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199910_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199910_D_GLOBAL.out deleted file mode 100644 index 237c259dc7cc6bee5918e897d8246c30bb14a9b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.07979571421941122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199910_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199910_H_GLOBAL.out deleted file mode 100644 index e0556deeda4538eba1d49ec8d65cbdac80070cc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.04984215497970581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199910_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199910_M_GLOBAL.out deleted file mode 100644 index baeeaaac7e349acb1a973c67175b329c9be53ddb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.07688045501708984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199911_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199911_D_GLOBAL.out deleted file mode 100644 index e64d08bad0c310b1c8f0552cbcd5d516cc441113..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.05497385263442993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199911_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199911_H_GLOBAL.out deleted file mode 100644 index f43f44e5177a14af7502d724eb1ae61a84061af5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.0772574226061503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199911_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199911_M_GLOBAL.out deleted file mode 100644 index 5913c47c6625e71ac882b1502b71837e4dcebde1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.07924342552820841 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199912_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199912_D_GLOBAL.out deleted file mode 100644 index 49aa6b7d0c39ad56c698ef68ec09070588814870..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.07350565195083618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199912_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199912_H_GLOBAL.out deleted file mode 100644 index 4423e3e0571cdb5bcb283893673624c24cd2e1e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.07448258797327677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_199912_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_199912_M_GLOBAL.out deleted file mode 100644 index 0fc2679ece6991e875452de5995b78b402f0c325..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_199912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.09253652095794677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200001_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200001_D_GLOBAL.out deleted file mode 100644 index e0447c05dd7aee1c234eea5c18427b5b314789f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.054790174961090087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200001_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200001_H_GLOBAL.out deleted file mode 100644 index 9e2b550b4f8ea2ca9faa9b9d64e105fd49d8f540..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.07920185724894206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200001_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200001_M_GLOBAL.out deleted file mode 100644 index 9148203df041bb2fb350fe50137283e8edc0da0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.053452165921529134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200002_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200002_D_GLOBAL.out deleted file mode 100644 index 8aedc5a0716a3d2386673dc6c3700b95592b54a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.07873459259668986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200002_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200002_H_GLOBAL.out deleted file mode 100644 index 4df55b4cbee564d4f426aa8f0e999016eaddf5d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.07260310252507528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200002_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200002_M_GLOBAL.out deleted file mode 100644 index 99a79099541aa59a38807ee2fbad3921fdfa919b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.05971682866414388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200003_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200003_D_GLOBAL.out deleted file mode 100644 index c42f0d4710d3834fd1e370e7d23c1af19fa23f74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.09233492612838745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200003_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200003_H_GLOBAL.out deleted file mode 100644 index be1f51a101e98a4d1508a22e60371c980c30de59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.07325154145558675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200003_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200003_M_GLOBAL.out deleted file mode 100644 index 89115d9c330f257277772d24cc38f6d1ef48bcd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.06601114670435587 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200004_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200004_D_GLOBAL.out deleted file mode 100644 index eed272a4798f252d928bfc44f5ae777bcabdadb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.054601021607716876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200004_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200004_H_GLOBAL.out deleted file mode 100644 index 4064f24f8381f5c51edb9082c9d47c85d440c222..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.05192955732345581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200004_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200004_M_GLOBAL.out deleted file mode 100644 index 8e501c0641ea7ba95202f51a4d6d25a1bf98fe07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.08843563000361125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200005_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200005_D_GLOBAL.out deleted file mode 100644 index 94008825df84c98997a8134c4afc281d1f29b5d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.0788988709449768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200005_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200005_H_GLOBAL.out deleted file mode 100644 index 714c5aeb5ed06c4020dddde3c3efbf263ccd7f70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.08195532957712809 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200005_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200005_M_GLOBAL.out deleted file mode 100644 index 1828f5635f19d1dac800c7d177bf27b59f41da0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.05936849514643351 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200006_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200006_D_GLOBAL.out deleted file mode 100644 index aee7f1d2139aff83e4f86ec750707c3c80eb248f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.08857035636901855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200006_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200006_H_GLOBAL.out deleted file mode 100644 index a3fa95be1a37208684054e0517c241edb43724df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.061492764949798585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200006_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200006_M_GLOBAL.out deleted file mode 100644 index b93251a939d0d30a2eda0797e8e34c46801ca064..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.08222470283508301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200007_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200007_D_GLOBAL.out deleted file mode 100644 index 6caa568c0590b86b5934d6321b8a70f62ca2e8bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.05746774276097615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200007_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200007_H_GLOBAL.out deleted file mode 100644 index e9156ed1b8d47dec988bcbf3abf267ea6ae18dc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.05323726733525594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200007_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200007_M_GLOBAL.out deleted file mode 100644 index 224560cb9ae670f6b30af38ae9b138739a5fe3e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.08187611103057861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200008_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200008_D_GLOBAL.out deleted file mode 100644 index 24a55e0dc9856e9fccea062eb589996570ff3acf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.083988090356191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200008_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200008_H_GLOBAL.out deleted file mode 100644 index a80a40beca3fe2d1787881617b384eee0c9ac0ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.05658741394678752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200008_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200008_M_GLOBAL.out deleted file mode 100644 index de8898a1f3e7c3b7f4bdbbb672003c4b533d613e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.0806171735127767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200009_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200009_D_GLOBAL.out deleted file mode 100644 index 87265905da6061f630dd5c2e878cbdd43883ecc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.08359793027242025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200009_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200009_H_GLOBAL.out deleted file mode 100644 index 70ce9c88e084ce537019af40cc43e982f0fd2364..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.062062148253122965 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200009_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200009_M_GLOBAL.out deleted file mode 100644 index 0670ffa9a822813ef7c39165dd41b7af8cd465d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.07428162495295207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200010_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200010_D_GLOBAL.out deleted file mode 100644 index e1c12591bac2900b7c60089a8b1410ad3d4c919d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.07446346680323283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200010_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200010_H_GLOBAL.out deleted file mode 100644 index 3c6b3e3e12e8bda2a7eb61819a704e2f7e792abc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.07261786063512167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200010_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200010_M_GLOBAL.out deleted file mode 100644 index b85c613106ef010f273f81d37ec9e45ff4f65cea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.08270748853683471 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200011_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200011_D_GLOBAL.out deleted file mode 100644 index 619fb77b2564ec3f43d8af4361d48a36e5bca858..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.06346147855122884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200011_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200011_H_GLOBAL.out deleted file mode 100644 index afe4cefdbea68d53e0f292f27d3f520cde6e6286..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.05720310608545939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200011_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200011_M_GLOBAL.out deleted file mode 100644 index 07a6b333ea6838d33cb610b4400acc67feb2bdb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.07283054987589518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200012_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200012_D_GLOBAL.out deleted file mode 100644 index 16f0e2599e14f6347ee2a2c62e14985a1037a058..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.060240801175435385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200012_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200012_H_GLOBAL.out deleted file mode 100644 index e2cfed3863dffe0d65121e2d1749fb7f33851ec2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.05659663677215576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200012_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200012_M_GLOBAL.out deleted file mode 100644 index 2205f6b1e6ae61bd573b1d7e706f930e2479f917..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.07033844391504923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200101_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200101_D_GLOBAL.out deleted file mode 100644 index ca2efbe878e5567220572ddf2bdc1867768896b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.06302266518274943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200101_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200101_H_GLOBAL.out deleted file mode 100644 index 885b63b9c5c86cdbbbe5d5ac13cb670daa0d6aed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.07281680107116699 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200101_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200101_M_GLOBAL.out deleted file mode 100644 index 796b4f8137648f7720337f55c185f0d941a8e233..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.07207581996917725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200102_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200102_D_GLOBAL.out deleted file mode 100644 index 1654f6d8899439e309f06113ff06ca40e6dd1188..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.08076663812001546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200102_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200102_H_GLOBAL.out deleted file mode 100644 index d18ebfefd6f5d8a51c755b919af0f3fad3cdf791..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.07733100255330404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200102_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200102_M_GLOBAL.out deleted file mode 100644 index cdb1da5b900a521d57fb34038fd569b77690b26b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.09060459931691488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200103_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200103_D_GLOBAL.out deleted file mode 100644 index eaa76b8d8a021e7beb1d59f1826fd9c5ae417eb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.05360677242279053 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200103_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200103_H_GLOBAL.out deleted file mode 100644 index de5a5ab1665e15fdd7de861d5ffb58df16c41017..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.08011525472005208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200103_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200103_M_GLOBAL.out deleted file mode 100644 index 6c9678b14373a278c1bb1918ccea262edf8b9c15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.061675707499186196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200104_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200104_D_GLOBAL.out deleted file mode 100644 index e8416c5e71f55b494af5391e6d3a48f3bfb593ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.053330238660176596 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200104_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200104_H_GLOBAL.out deleted file mode 100644 index eebe1ffc663eed7cc277af8f59c6a84d50949af3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.05397615432739258 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200104_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200104_M_GLOBAL.out deleted file mode 100644 index 89b379df12faf4de0e3854de7d29638846fc87f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.08110224803288778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200105_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200105_D_GLOBAL.out deleted file mode 100644 index e5465fc855dea007fcf738a640535231dfea8142..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.061412886778513594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200105_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200105_H_GLOBAL.out deleted file mode 100644 index 0310bc2e44ebde0cf2e95cad651e0c471ad32e03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.08234862883885702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200105_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200105_M_GLOBAL.out deleted file mode 100644 index 50eb91ce30ba11e1e9b96f3f20a893ee51f31396..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.07219038407007854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200106_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200106_D_GLOBAL.out deleted file mode 100644 index 05a9c1b3ad7116a22655b47ed0d7de049d32a594..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.06315276225407919 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200106_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200106_H_GLOBAL.out deleted file mode 100644 index 906355f33d2a05daef31a3173f455d8062906f50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.05950751304626465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200106_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200106_M_GLOBAL.out deleted file mode 100644 index 0b88ecc204b2eec9dfe3e880f38a3686d548eece..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.06339408159255981 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200107_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200107_D_GLOBAL.out deleted file mode 100644 index b359ae0ea8d5e9a7bfa5ab83dab3184150776b09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.06958706378936767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200107_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200107_H_GLOBAL.out deleted file mode 100644 index bc45f46dd23807d30189f09db0a8eb103b87a90f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.05824917952219645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200107_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200107_M_GLOBAL.out deleted file mode 100644 index e5eb12a05ce9276b845f1552a4b8620d7e5b5a96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.05869489113489787 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200108_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200108_D_GLOBAL.out deleted file mode 100644 index e68fc173f9a83eab780180d71bca4dd5744b4423..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.07406741380691528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200108_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200108_H_GLOBAL.out deleted file mode 100644 index 04c706c35f49cb915360140623187b1e0367930f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.06067578395207723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200108_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200108_M_GLOBAL.out deleted file mode 100644 index 2d36ef4461cab51405df2882f61b67c627a073e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.0533533255259196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200109_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200109_D_GLOBAL.out deleted file mode 100644 index 4b6b33f615f6b0e115f8d4107b1ceec080aec12a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.05793020725250244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200109_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200109_H_GLOBAL.out deleted file mode 100644 index 8ea0ec5c413c96b890ebaa9cbff0c1d7e29dcca3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.07639331022898356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200109_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200109_M_GLOBAL.out deleted file mode 100644 index 6aed8193934c64c36a618d1d7dc8c94a46533981..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.07659780581792196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200110_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200110_D_GLOBAL.out deleted file mode 100644 index a04d26d359d1b38c53b07c33d54892f28b9f94c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.05480412642161051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200110_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200110_H_GLOBAL.out deleted file mode 100644 index 053ebc9a78394df857a2fa06451f8cc452151665..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.07632557551066081 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200110_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200110_M_GLOBAL.out deleted file mode 100644 index 2193ee4c4d9fed675fa1b037fc6f56d383321844..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.07414016723632813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200111_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200111_D_GLOBAL.out deleted file mode 100644 index 9a9a7c301e04638c16cd05911d99ed6dde03b883..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.07476893266042074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200111_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200111_H_GLOBAL.out deleted file mode 100644 index 78dd6de93371900f96cf6422d4707fa6640e4d8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.07606259187062582 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200111_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200111_M_GLOBAL.out deleted file mode 100644 index ec3d44ac22f60ca6f77c4ffc3db69f0f63e9a1dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.06300965944925944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200112_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200112_D_GLOBAL.out deleted file mode 100644 index cfdf5796a2333c930360969cbcfc61094dd8ef3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.052122588952382407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200112_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200112_H_GLOBAL.out deleted file mode 100644 index 939d01fd2845e28f998d1acd566a1b53a577f5f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.05330119530359904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200112_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200112_M_GLOBAL.out deleted file mode 100644 index 79c9cd94d1f97cf38875c1239f2721417f4b27ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.08363863627115885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200201_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200201_D_GLOBAL.out deleted file mode 100644 index e2695df3e5e455b7e34bb63728e6050f361aef84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.0758603056271871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200201_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200201_H_GLOBAL.out deleted file mode 100644 index 719ca691cb8683e649312c75b8363f71320c92f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.07613023916880289 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200201_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200201_M_GLOBAL.out deleted file mode 100644 index b776ad09446f05e48a33de4bd9f0d5e82ffda2b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.0792839765548706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200202_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200202_D_GLOBAL.out deleted file mode 100644 index aac4e30b261b1df1a2044d5c5144e48bad0a7fc3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.05603311459223429 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200202_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200202_H_GLOBAL.out deleted file mode 100644 index 78562606e34927736e07c948c00a8b3d45d807ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.07918483813603719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200202_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200202_M_GLOBAL.out deleted file mode 100644 index d0ec666199bd959ef185466f3e48f8fd6d283d03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.06091817617416382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200203_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200203_D_GLOBAL.out deleted file mode 100644 index 421f550d041d86d08851380e35aa547454595bcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.09541709423065185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200203_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200203_H_GLOBAL.out deleted file mode 100644 index 00b327c8a22a315b3b63d8f417fcaf15ee869a47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.05643105904261271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200203_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200203_M_GLOBAL.out deleted file mode 100644 index 80fc00533e71fecce7ecd871fe977a6e4e3970c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.05996906757354736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200204_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200204_D_GLOBAL.out deleted file mode 100644 index 0e85d1f3c3a821c008aa9cee42743e27907805f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.07712437709172566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200204_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200204_H_GLOBAL.out deleted file mode 100644 index 80433ea4c96b40cd58601eac9b96cb743e45feaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.07330768505732219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200204_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200204_M_GLOBAL.out deleted file mode 100644 index 89a09b3d53883e03bbd24713e2312a6eededf691..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.07727789481480916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200205_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200205_D_GLOBAL.out deleted file mode 100644 index 38d9379d2c228dde200ed4ad300a2363e86c739b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.07951504786809285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200205_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200205_H_GLOBAL.out deleted file mode 100644 index 548218efdec5f579767e6d08bc895197a13022b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.07914433479309083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200205_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200205_M_GLOBAL.out deleted file mode 100644 index 89ca6f9b631060a4365ef59f65ff0c6d6ac89c4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.05876731872558594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200206_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200206_D_GLOBAL.out deleted file mode 100644 index c0077aa90875f388b5c7522abee0b549464ba093..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.08080893754959106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200206_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200206_H_GLOBAL.out deleted file mode 100644 index 35e4a035b12b5b8b65aab0a2544e9c3090ebf648..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.07305345137914022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200206_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200206_M_GLOBAL.out deleted file mode 100644 index d12fb14f8ff3293c0187a8ea73e079e68b000265..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.061722302436828615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200207_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200207_D_GLOBAL.out deleted file mode 100644 index ac6a9ec940ef58b94fb490de1dc40f71a8f9eb49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.05322597026824951 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200207_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200207_H_GLOBAL.out deleted file mode 100644 index 276c478eb2ada456d60d194af8dc7df7d6899c4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.04945501883824666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200207_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200207_M_GLOBAL.out deleted file mode 100644 index e3a56691b467c571df6fa8374946e11351baf9a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.0800041119257609 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200208_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200208_D_GLOBAL.out deleted file mode 100644 index 852a3518d39805c8a283530497cbee45dbb43a1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.07485786676406861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200208_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200208_H_GLOBAL.out deleted file mode 100644 index 632b2bb59b963f01d770964bfb9cd7f8ed55ecc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.07617491881052653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200208_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200208_M_GLOBAL.out deleted file mode 100644 index f6556decaf794cdd0ce09661b5e5fb581e9cf5d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.049136618773142494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200209_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200209_D_GLOBAL.out deleted file mode 100644 index 27deeb2b2d801f9c12cdea3ec109d16dd01868a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.06710844437281291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200209_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200209_H_GLOBAL.out deleted file mode 100644 index eb0319262b57df0533a388ef350352dd58609ecf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.07484589417775472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200209_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200209_M_GLOBAL.out deleted file mode 100644 index bd9bc788c3946a7665f2b4247f9db8471cfb64a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.07043782075246176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200210_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200210_D_GLOBAL.out deleted file mode 100644 index be392bfd1cbaf09882a33047a4bfceb9d20017c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.05896023114522298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200210_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200210_H_GLOBAL.out deleted file mode 100644 index 138491b0219fb6d1daf8c670c65ccafb352a629b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.0558132529258728 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200210_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200210_M_GLOBAL.out deleted file mode 100644 index 9b61580d59b062d1873b920b7668d92b626127c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.04972186088562012 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200211_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200211_D_GLOBAL.out deleted file mode 100644 index 9181d84322f6e47e639bd800efae82ccbbb4cdb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.08575437466303508 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200211_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200211_H_GLOBAL.out deleted file mode 100644 index 64e3807fbc61fa163cb59bff0ff75cfe181a8e7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.06431498130162557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200211_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200211_M_GLOBAL.out deleted file mode 100644 index 84afe69bf5a108282d67d5ac87c7420700c67c29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.06273960669835409 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200212_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200212_D_GLOBAL.out deleted file mode 100644 index 9ba289b2eaa517276749bfc62c510e0d1bdf5dbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.08200636307398478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200212_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200212_H_GLOBAL.out deleted file mode 100644 index 725afc38bd8c572bb49d93c415558fd1f3dc0b68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.07916915416717529 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200212_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200212_M_GLOBAL.out deleted file mode 100644 index 8345b2d198609810cd06547350a9f72d0aca1572..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.08532483577728271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200301_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200301_D_GLOBAL.out deleted file mode 100644 index 1379b0afe71bb2267fd88345fa76b9fd3a8f74e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.06059948603312174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200301_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200301_H_GLOBAL.out deleted file mode 100644 index 175a144532fff8a55d9f4d2955a872e237863c02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.055224748452504475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200301_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200301_M_GLOBAL.out deleted file mode 100644 index 3a1f705bb8d04da36419441ca170f5a6a96cd42e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.08312331040700277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200302_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200302_D_GLOBAL.out deleted file mode 100644 index 355dde6e09043399c6b8368b07b801648a622146..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.056138575077056885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200302_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200302_H_GLOBAL.out deleted file mode 100644 index 6c2af95a3a0cc761a0ceb68f029e388ba9cb002d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.06044193903605143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200302_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200302_M_GLOBAL.out deleted file mode 100644 index a83af62e3a13eddb31f32831a98a2534dcc0a1a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.0772997538248698 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200303_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200303_D_GLOBAL.out deleted file mode 100644 index 55866d9f0e0fe8e3881ffdc4bf62db32d962297c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.05575492382049561 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200303_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200303_H_GLOBAL.out deleted file mode 100644 index 59bac9204d0780d4cd9e47e5693096d09dfdaf83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.07814708153406778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200303_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200303_M_GLOBAL.out deleted file mode 100644 index dfcc6c05e4b2ab86cbc309db37c5355e906f7692..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.06537323792775472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200304_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200304_D_GLOBAL.out deleted file mode 100644 index 31938681e6ba422d142b2e12875d803170f20ac3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.05061163902282715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200304_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200304_H_GLOBAL.out deleted file mode 100644 index b0af1154fb66bea8f5ee29e904340b88ffc1245b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.0599415381749471 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200304_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200304_M_GLOBAL.out deleted file mode 100644 index 614270ca8b4ab457d8ce213e7905f3e11b67857a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.07886089483896891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200305_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200305_D_GLOBAL.out deleted file mode 100644 index 7a556e10f6cd8786ec4b377dce053ae62da5f518..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.07665015856424967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200305_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200305_H_GLOBAL.out deleted file mode 100644 index 22cc017ddb052ee297e7a574fa847a908d29f530..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.0737701416015625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200305_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200305_M_GLOBAL.out deleted file mode 100644 index f632a6467a13eaa4f7711e6b12a5320f07d266c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.04680118163426717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200306_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200306_D_GLOBAL.out deleted file mode 100644 index 52170ed6f64d6dd546318a6151b4c3388c6b2bfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.05371704896291097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200306_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200306_H_GLOBAL.out deleted file mode 100644 index 0a182ee3dc2f1d5f0c305a72d04e35c5af1cc872..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.06724241177241007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200306_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200306_M_GLOBAL.out deleted file mode 100644 index 37f2b84e384006cde6f763b3ad56c655a4943394..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.05964494148890177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200307_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200307_D_GLOBAL.out deleted file mode 100644 index 64e612dc123663d437df729786584d5b7555e402..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.045976146062215166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200307_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200307_H_GLOBAL.out deleted file mode 100644 index ab46a7fcd1c99bc182fc5b9cb6e3a0e61d810f4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.08984382152557373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200307_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200307_M_GLOBAL.out deleted file mode 100644 index 06f4968cb4dee039b2c2ef6bfda2a920f4b6240f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.0755332072575887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200308_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200308_D_GLOBAL.out deleted file mode 100644 index 276767cbac9b77692cf51dffb04bdc08de93512f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.09736318190892537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200308_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200308_H_GLOBAL.out deleted file mode 100644 index b1a79b1994f9927a96ddb8353f0e93f4d56df92e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.06724115212758382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200308_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200308_M_GLOBAL.out deleted file mode 100644 index e19ac68527d3badd3f3f319729a06f09f7091edf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.0697067658106486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200309_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200309_D_GLOBAL.out deleted file mode 100644 index f68661a90927d472b8c60a27d470e92369b9a82c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.07264378468195597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200309_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200309_H_GLOBAL.out deleted file mode 100644 index 664807cbbdbf8827247d185318f3d10e51b4fa17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.06962435642878215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200309_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200309_M_GLOBAL.out deleted file mode 100644 index 69cb504715609b6cb9b9f00ef586e14443d6083e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.05256674289703369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200310_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200310_D_GLOBAL.out deleted file mode 100644 index 2e696a3892130e2bc7002a802524835903f6d3a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.0717346707979838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200310_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200310_H_GLOBAL.out deleted file mode 100644 index caef04e5a47e823661263acd92e6ec06aab07d98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.050191307067871095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200310_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200310_M_GLOBAL.out deleted file mode 100644 index 9e5543ed3ab298507c1ab644cb80ed0b7258e4e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.058771955966949466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200311_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200311_D_GLOBAL.out deleted file mode 100644 index 5e0e82b0844d0c5d641d90e5ac9d7639f50350e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.05321780443191528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200311_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200311_H_GLOBAL.out deleted file mode 100644 index 472fca657685a4e495ea530878434bb53cbd3e30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.056126471360524496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200311_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200311_M_GLOBAL.out deleted file mode 100644 index 18b2675199de1534d390f28a53dc3dcf3030fae4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.060570414861043295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200312_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200312_D_GLOBAL.out deleted file mode 100644 index f8852087f3c5cb20f25f3f8935d9d57f74ae30ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.0510756770769755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200312_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200312_H_GLOBAL.out deleted file mode 100644 index 1d44ded4a4e82f779fe210ace6073b36068d2b89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.05945985317230225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200312_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200312_M_GLOBAL.out deleted file mode 100644 index a229daec51c3d25b298ebaf300ee434fe9269c82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.07527499596277873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200401_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200401_D_GLOBAL.out deleted file mode 100644 index 0518466a3a4365468070f224fc443ef26291b3ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.07957788308461507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200401_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200401_H_GLOBAL.out deleted file mode 100644 index 4b08bb31c2feb5cd7ca9a10f97c4ff7240f19bb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.048894437154134114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200401_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200401_M_GLOBAL.out deleted file mode 100644 index a03b898a18355cfb14bb613b59ce2af608f83ac5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.05839445988337199 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200402_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200402_D_GLOBAL.out deleted file mode 100644 index 5d3c0d625a85e1828ffa081301358f50e6b64441..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.06811135609944662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200402_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200402_H_GLOBAL.out deleted file mode 100644 index 774275b714191b9f80e23abfb19a51b9da9ce392..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.05292181571324666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200402_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200402_M_GLOBAL.out deleted file mode 100644 index c5b84454c4b928b192c7226d47dac3ba55a51a4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.08525823752085368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200403_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200403_D_GLOBAL.out deleted file mode 100644 index 1cdbae97561aae52995e9f2eebf06be36ad9bbc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.05037208398183187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200403_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200403_H_GLOBAL.out deleted file mode 100644 index e53457d26960205248d728c2b3be6899c14adafb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.05698298215866089 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200403_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200403_M_GLOBAL.out deleted file mode 100644 index decc38dfbc9a710d29a8bb097acc6f77cdbf69b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.07727053960164389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200404_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200404_D_GLOBAL.out deleted file mode 100644 index bfc3bfa8290b8e3544e28ce74bae8f211ffbc37a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.057633388042449954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200404_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200404_H_GLOBAL.out deleted file mode 100644 index 7c50b683b316d936c99814a2880bc3face73537c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.07808489799499511 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200404_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200404_M_GLOBAL.out deleted file mode 100644 index 3963c3adec54276db6ffa51bfa7c9279240f7a79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.07104616562525432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200405_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200405_D_GLOBAL.out deleted file mode 100644 index e5f5dc1b1b48f0554e51588def14b2dca4b5bf10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.07504801352818807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200405_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200405_H_GLOBAL.out deleted file mode 100644 index 596b355c0369f58dca83aefb5d4084460daa81e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.055565810203552245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200405_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200405_M_GLOBAL.out deleted file mode 100644 index ed3d73b94a6469ef147bad34df1d12c14c9a2ebd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.06577939589818318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200406_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200406_D_GLOBAL.out deleted file mode 100644 index f0324c41a08478effaeacff5999a54f22c1c191b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.053061660130818686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200406_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200406_H_GLOBAL.out deleted file mode 100644 index 391a7ec8ad11b6ffb33508348fc8d6de9b6c04b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.06959981123606364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200406_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200406_M_GLOBAL.out deleted file mode 100644 index e30473736e0f818c3f4aa63dcd0f39cbcf781969..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.07195384899775187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200407_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200407_D_GLOBAL.out deleted file mode 100644 index a26da890b4f0e0d67049367d3dbcce13a231930a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.05654065211613973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200407_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200407_H_GLOBAL.out deleted file mode 100644 index 8e839e1e2f0786d3b7921a0e38ab2591a32331ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.07470400730768839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200407_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200407_M_GLOBAL.out deleted file mode 100644 index 4062a7db5247b2897b46901132b88235451641e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.06287260850270589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200408_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200408_D_GLOBAL.out deleted file mode 100644 index f6251773f6ea13b2964548335368b1e6f1b59ca3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.05931255022684733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200408_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200408_H_GLOBAL.out deleted file mode 100644 index 7b8616ff04c16dfdec74373333e5febbd8299773..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.06445898612340291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200408_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200408_M_GLOBAL.out deleted file mode 100644 index 6990e23e438549d94f8272b95e28334a88481d2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.0744861125946045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200409_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200409_D_GLOBAL.out deleted file mode 100644 index 2072d42a49a207aee78d67c207a807025d303682..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.0518749197324117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200409_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200409_H_GLOBAL.out deleted file mode 100644 index e4d1b1e50b0eb4f95fe9d087bc932f444b2874a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.06563565731048585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200409_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200409_M_GLOBAL.out deleted file mode 100644 index fce24a231fb843b4a44fa0244cccc2c5436b79ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.06492573420206706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200410_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200410_D_GLOBAL.out deleted file mode 100644 index 7c381a5b5cc6ca653db0746bd1136ad91195ec5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.0747283140818278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200410_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200410_H_GLOBAL.out deleted file mode 100644 index 02e28bc83f98f65cf9fdba323ced7c094420d505..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.07526210546493531 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200410_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200410_M_GLOBAL.out deleted file mode 100644 index 7399636eb5ac6411ad59f3e3ddbddece00b45a3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.050150994459788004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200411_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200411_D_GLOBAL.out deleted file mode 100644 index f501eb1d68054f809dde2fc32204a75e404b2b47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.054530135790507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200411_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200411_H_GLOBAL.out deleted file mode 100644 index c5d50ee20ba0262b1dec4adf9c9dc177a79cc094..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.05896641810735067 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200411_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200411_M_GLOBAL.out deleted file mode 100644 index 0e0cc6cc35d0bb2dbcb26be707de262d64927802..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.053964789708455405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200412_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200412_D_GLOBAL.out deleted file mode 100644 index e661419d5df98ab45c034e3be9594a212a15f07a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.08230689764022828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200412_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200412_H_GLOBAL.out deleted file mode 100644 index be5d04fbaebc8d1d4ab62935d0ed172b3ba0f781..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.05833538373311361 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200412_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200412_M_GLOBAL.out deleted file mode 100644 index bc51ad73d526d8e740f4dee0f43c6370a3c8f634..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.08171940644582112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200501_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200501_D_GLOBAL.out deleted file mode 100644 index 67125438d0de856b404f9a25137b43e4723c0d7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.06195565859476725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200501_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200501_H_GLOBAL.out deleted file mode 100644 index e760c2264c46b9d03b9ac04c88326f42f6b198d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.06047762632369995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200501_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200501_M_GLOBAL.out deleted file mode 100644 index 3e83ce7a66c5fe91cb661c2a5ff360bcc343f3f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.0744213581085205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200502_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200502_D_GLOBAL.out deleted file mode 100644 index 97a61ed7ccbff016aa0cd004ecb60c99d8636fa4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.05892765919367472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200502_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200502_H_GLOBAL.out deleted file mode 100644 index c7b1de35110b20b10338c6f8bff336b5f62d357e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.06579623619715373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200502_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200502_M_GLOBAL.out deleted file mode 100644 index bfd0fd06660189e579922fe6f190aabacbfe088d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.04815974235534668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200503_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200503_D_GLOBAL.out deleted file mode 100644 index ab7ec61852c46ef53bc1e7c1ff4c86efa7b0a4ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.06319811344146728 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200503_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200503_H_GLOBAL.out deleted file mode 100644 index fcc7b4429cccbcfe03e7630270b4ff7893b083f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.08296281099319458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200503_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200503_M_GLOBAL.out deleted file mode 100644 index 0eaa106a37388f3efeeb74c44a3c65e78a1067e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.07879985570907592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200504_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200504_D_GLOBAL.out deleted file mode 100644 index 4e1a2536bd63b40816b6d2abdc17d36c03574aa5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.08477330207824707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200504_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200504_H_GLOBAL.out deleted file mode 100644 index e935518f1dd0f6561ac572f7560c3d411ba90976..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.06662969589233399 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200504_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200504_M_GLOBAL.out deleted file mode 100644 index c31745900ae4c27af0247fde53ed9028b4a2aeb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.06864849328994752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200505_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200505_D_GLOBAL.out deleted file mode 100644 index 997d9de9ff2714b02fbc0493489ad8cdb4c8e6fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.056233000755310056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200505_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200505_H_GLOBAL.out deleted file mode 100644 index 4e6c0f873e4c81382bb4197b9b60592cd4df434a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.0766019344329834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200505_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200505_M_GLOBAL.out deleted file mode 100644 index 341bd588d0e06dbaa86fd2e61f962410dfcad807..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.05309253931045532 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200506_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200506_D_GLOBAL.out deleted file mode 100644 index 553d8012ee10c62a65fcd3003463457c95ea5e44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.07961442867914835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200506_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200506_H_GLOBAL.out deleted file mode 100644 index 94a5ea2b398f80c9bacbc7b9ed65812000753d99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.06309516032536824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200506_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200506_M_GLOBAL.out deleted file mode 100644 index 7e6665225b22f59fd28b51ee76e97ddd66a8062e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.06721057891845703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200507_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200507_D_GLOBAL.out deleted file mode 100644 index 7768f66140586f0407ab5c36e72dc7a6f37f677d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.07850017547607421 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200507_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200507_H_GLOBAL.out deleted file mode 100644 index c1de1c8c44351402b2a08ea431d9c211c8e21d08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.05836120843887329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200507_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200507_M_GLOBAL.out deleted file mode 100644 index 386eda4db987c4c2bd9fed1a12797165ff3518be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.055826203028361006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200508_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200508_D_GLOBAL.out deleted file mode 100644 index 3627172a1a0674edd0d63f53621230fce4693d2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.06779593626658122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200508_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200508_H_GLOBAL.out deleted file mode 100644 index 2d3e2e0c3ce482008be307a3d7c3b95fd8715b06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.04335023959477743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200508_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200508_M_GLOBAL.out deleted file mode 100644 index c4cf9e0c941713e889c277f1d82aa5630efbb5ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.07606995105743408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200509_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200509_D_GLOBAL.out deleted file mode 100644 index ff50f45dff1b52cea1e87291c7b0736914a62c5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.05439212719599406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200509_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200509_H_GLOBAL.out deleted file mode 100644 index d78014dd345e9ff11a28301e5573c8fdbd814fa5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.04763474464416504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200509_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200509_M_GLOBAL.out deleted file mode 100644 index 86bbe76d7bb8b0085ca2a69fc2e36706a2261dc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.07954772313435872 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200510_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200510_D_GLOBAL.out deleted file mode 100644 index 9b52c9ecf207304945b4cb4c10bdd08e3522d6dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.08916591008504232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200510_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200510_H_GLOBAL.out deleted file mode 100644 index c22886dad5da0cf0f34380a59b9630923fb93d53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.047412172953287764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200510_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200510_M_GLOBAL.out deleted file mode 100644 index 500b6e515e929fcde95ef0918d6b27b2e26373c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.06338343222935995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200511_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200511_D_GLOBAL.out deleted file mode 100644 index 81fa01b9e97358137ce7c14eba54bb426903a8f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.043156703313191734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200511_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200511_H_GLOBAL.out deleted file mode 100644 index df2e5a3ba4e281907b2a434f4a61850ed110704d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.07780541578928629 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200511_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200511_M_GLOBAL.out deleted file mode 100644 index 8f9be4f3d13967d1eae64d0d8fe39bce3ab59a55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.08202786048253377 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200512_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200512_D_GLOBAL.out deleted file mode 100644 index 82e772596b337ab1aa10c3bee82a71d3beda646c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.07473949591318767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200512_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200512_H_GLOBAL.out deleted file mode 100644 index 4e536e6c2a494e1e1eaeecf0d6a4eec0ac52e0f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.04990116755167643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200512_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200512_M_GLOBAL.out deleted file mode 100644 index cef69041f4ce1aa53a5580d28fb78c980c278a6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.052952329317728676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200601_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200601_D_GLOBAL.out deleted file mode 100644 index 64d878b20e66ea7faffed0791e286a5118a57f48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.06507617235183716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200601_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200601_H_GLOBAL.out deleted file mode 100644 index 98abda228548afb3bf3cf11accb6c794efb4d274..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.05520131587982178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200601_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200601_M_GLOBAL.out deleted file mode 100644 index bec6a36d79d68a4527b60e84352f4b7f9528262b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.05014421939849854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200602_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200602_D_GLOBAL.out deleted file mode 100644 index aa594001ed165ab019826140da90a3774b24a6a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.06771808862686157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200602_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200602_H_GLOBAL.out deleted file mode 100644 index ae83db5e7e42f83a189792a1d5884b79a41b585b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.07000259160995484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200602_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200602_M_GLOBAL.out deleted file mode 100644 index 4d9c72f564e100869e45b8fc446824f8cf63df16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.08056642611821492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200603_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200603_D_GLOBAL.out deleted file mode 100644 index df78d4f19efb30b073be23927cb7a462e5f000db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.07779853741327922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200603_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200603_H_GLOBAL.out deleted file mode 100644 index d3aa13cf136de092eb09b56ed5b7295e7a600614..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.05139400164286296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200603_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200603_M_GLOBAL.out deleted file mode 100644 index 8b1277902c3b47bab6ec89d39a816414fc78a96a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.07883062362670898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200604_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200604_D_GLOBAL.out deleted file mode 100644 index 384b1c59b5e3234c7784218cb2569b8dc009391e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.05115634600321452 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200604_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200604_H_GLOBAL.out deleted file mode 100644 index 22e67a57b8481831606811000bce82c43e1c4f3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.059857157866160075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200604_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200604_M_GLOBAL.out deleted file mode 100644 index aeb60352fad4181c9df92ac7ea71cd18d6add55a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.07060527801513672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200605_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200605_D_GLOBAL.out deleted file mode 100644 index 3c9c13c5886a337415eeacae8e68e60087ad6658..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.04789106845855713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200605_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200605_H_GLOBAL.out deleted file mode 100644 index b9be4e65b4a68be16859bbfc45cfaed03baef70f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.04927672147750854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200605_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200605_M_GLOBAL.out deleted file mode 100644 index 7d704e29360c958ce9bc7b8ea9f25e09278e8ccf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.05219672123591105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200606_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200606_D_GLOBAL.out deleted file mode 100644 index eccd701b9984e5383c1a593fe70d15beeeed6477..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.05209482908248901 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200606_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200606_H_GLOBAL.out deleted file mode 100644 index bab097b72271cb99d8f6d6c1a95e86026aafd4ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.07103833357493082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200606_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200606_M_GLOBAL.out deleted file mode 100644 index fd30fc340aea5cca6e16b71f6b8b29ccb1b7ec6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.0790615955988566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200607_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200607_D_GLOBAL.out deleted file mode 100644 index 444d2c47537834abeb24902bfd99ba4ba1dbe532..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.07304571072260539 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200607_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200607_H_GLOBAL.out deleted file mode 100644 index 9d52230891047d1c3093cfb8ecf2869cc4878154..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.04686797062555949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200607_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200607_M_GLOBAL.out deleted file mode 100644 index d08d986154373e27b44ab50561feadaccdcd901f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.05175538460413615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200608_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200608_D_GLOBAL.out deleted file mode 100644 index 3a29aff81f444639cda1f7d53f14335eec0c6e87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.06630162795384725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200608_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200608_H_GLOBAL.out deleted file mode 100644 index d76e738db53f61c67bb93aaa61fdcbfd9dc1230c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.07669355471928914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200608_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200608_M_GLOBAL.out deleted file mode 100644 index 4034649e495cc4381722e1261ef81463d2d01e79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.055320453643798825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200609_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200609_D_GLOBAL.out deleted file mode 100644 index 16213f89183c4a0673e3a13284fc0ed709433a9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.07396984895070394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200609_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200609_H_GLOBAL.out deleted file mode 100644 index cda688abd270753e5a24a81b6494b8c6859becba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.05067487955093384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200609_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200609_M_GLOBAL.out deleted file mode 100644 index 3b506c138d2a18d90229838949eff64525cbd889..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.0529843012491862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200610_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200610_D_GLOBAL.out deleted file mode 100644 index 1ac4ac2eb833ce42329cd07c3ddd49f1c1e372d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.048867666721343996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200610_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200610_H_GLOBAL.out deleted file mode 100644 index 4c9c84377746a877c43d95858b5c236d030f6051..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.059703771273295084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200610_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200610_M_GLOBAL.out deleted file mode 100644 index 0f3535ffffb7470dc52f23c56574019a839d9575..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.05510353247324626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200611_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200611_D_GLOBAL.out deleted file mode 100644 index ea6a6c53b6e6bf10d433568d4b5c42a4e6fa9926..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.04871550401051839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200611_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200611_H_GLOBAL.out deleted file mode 100644 index 10fd1ae7e8bef28e4aea664709de677dfdfb4b8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.04916364749272664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200611_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200611_M_GLOBAL.out deleted file mode 100644 index b050fd2b38791b5dfef7bcd268b6d9d8ca65eb8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.0666005253791809 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200612_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200612_D_GLOBAL.out deleted file mode 100644 index 81bdffbf994576d8b273a1d3dc152b692b2c105b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.050076790650685626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200612_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200612_H_GLOBAL.out deleted file mode 100644 index ee76c49679b1b6df5c5677b14baaff8f8d5a91a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.04643321434656779 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200612_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200612_M_GLOBAL.out deleted file mode 100644 index a5a4217e3491cf38db4f2593accf97061cc6e380..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.048547669251759844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200701_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200701_D_GLOBAL.out deleted file mode 100644 index f36cf20c24b4adbce2e46f47baf6789aecc0b5d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.053523135185241696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200701_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200701_H_GLOBAL.out deleted file mode 100644 index 8f29546a7ea3fbaf66af43dd59120959e9015080..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.07330824931462605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200701_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200701_M_GLOBAL.out deleted file mode 100644 index 8f90ea73ff6354b94d9b2dee4360efbedab2b6fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.07244263490041097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200702_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200702_D_GLOBAL.out deleted file mode 100644 index cb8dc9424a545723aeac1b8485441c0289d45533..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.07639113267262777 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200702_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200702_H_GLOBAL.out deleted file mode 100644 index dfb10c69c6633cf43c4fa5cf34cb7f4b4c975935..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.07451793352762857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200702_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200702_M_GLOBAL.out deleted file mode 100644 index 0442f493ca6b2351cf55f424bc0858fb02e9b983..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.04785978396733602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200703_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200703_D_GLOBAL.out deleted file mode 100644 index 817615418972e7ff7083117194db707cf6dd4e84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.05813974142074585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200703_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200703_H_GLOBAL.out deleted file mode 100644 index 4cb02eaac496c8898598f3b1a24944386154fb1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.07060888210932413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200703_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200703_M_GLOBAL.out deleted file mode 100644 index d22bceaae02dd1d3435a0cc4f9e059754ab9a937..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.06899532477060953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200704_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200704_D_GLOBAL.out deleted file mode 100644 index 898ad3e9ca1d61f636a3f8ff8af9bd9545f831c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.06976491610209147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200704_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200704_H_GLOBAL.out deleted file mode 100644 index 5fba0d7e41c6fdd22cfa1400b452cbbe315ca11b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.08066112995147705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200704_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200704_M_GLOBAL.out deleted file mode 100644 index 96274a118515ca15f0f91f27c3ad408e20bca796..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.057650129000345864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200705_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200705_D_GLOBAL.out deleted file mode 100644 index 6c286ba61a82346f80beddfef9342ea2c98bbe13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.05592246452967326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200705_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200705_H_GLOBAL.out deleted file mode 100644 index ac3eff7deafd30594030d649c4f185676996e7de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.05613423188527425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200705_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200705_M_GLOBAL.out deleted file mode 100644 index 83db7f1d8719e0afa3ad3693c1576630062a9a6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.04919572671254476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200706_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200706_D_GLOBAL.out deleted file mode 100644 index 3a5015af1976ab4a40d70a90f287ceda71db6811..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.06531063715616862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200706_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200706_H_GLOBAL.out deleted file mode 100644 index 2ee9695f87089e52ae9b8c7ab78624e11f22bfee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.07036908070246378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200706_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200706_M_GLOBAL.out deleted file mode 100644 index 92cfb980f9a3461088726572280d0fa84eb5c153..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.06723690827687581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200707_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200707_D_GLOBAL.out deleted file mode 100644 index 9bb08e8d04fe4d289e6eb2829be74b88e8115ac7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.07786258061726888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200707_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200707_H_GLOBAL.out deleted file mode 100644 index 09fdfda5b6c7744d2b59e669304564b45e3440de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.06590028206507365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200707_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200707_M_GLOBAL.out deleted file mode 100644 index 5f78f3eb3e80d09ee7dbe20a5c858e6dffc9b519..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.057635712623596194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200708_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200708_D_GLOBAL.out deleted file mode 100644 index 49cea88436231f21d1fe3d5f0d76f28d4846ff47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.07826748689015707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200708_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200708_H_GLOBAL.out deleted file mode 100644 index c656d098d5dcde87b9a0d528f7b3cc0e02ac1f46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.05546333392461141 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200708_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200708_M_GLOBAL.out deleted file mode 100644 index b18e56c799744c608655aa08d5762f7db694de1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.06968571345011393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200709_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200709_D_GLOBAL.out deleted file mode 100644 index e0543aab5ad757fcbf756b3ba6044b4534a38d32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.05710955063501994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200709_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200709_H_GLOBAL.out deleted file mode 100644 index c9c9517719cfd6fd679e4d383aa1b44879b06d76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.06215687195460002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200709_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200709_M_GLOBAL.out deleted file mode 100644 index 4cebfc701c0f54fb5798d5c2bcba9f24e5216da4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.047365438938140866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200710_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200710_D_GLOBAL.out deleted file mode 100644 index aa29a0f64644f8732f8cd4c13b6a6b8c02698aed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.07031870285669962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200710_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200710_H_GLOBAL.out deleted file mode 100644 index 7e7c9d51b795aed814af96b599cc8fee8ed418cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.07121095657348633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200710_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200710_M_GLOBAL.out deleted file mode 100644 index e01fc4dc4f2ae48351d82c294bab97a462cef745..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.0505367120107015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200711_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200711_D_GLOBAL.out deleted file mode 100644 index 9492e219906a3ba14f8de0a960c09038f6ad6fe7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.07349658012390137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200711_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200711_H_GLOBAL.out deleted file mode 100644 index 67ae2bbb517b99bb91b04343139029f3fb9d1619..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.07102003494898478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200711_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200711_M_GLOBAL.out deleted file mode 100644 index bbed7566fe284b59864045aa8cef20ad3c478cba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.061711883544921874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200712_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200712_D_GLOBAL.out deleted file mode 100644 index 6e052d521301ae9b7ff5eee372ef4d873ab76292..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.06444336970647176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200712_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200712_H_GLOBAL.out deleted file mode 100644 index 87f69ce36c96fa41915e91c187468fd1104e571d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.0717646320660909 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200712_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200712_M_GLOBAL.out deleted file mode 100644 index e939d1db8d991d7bfba379704fed15cdf3c676c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.07423975070317586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200801_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200801_D_GLOBAL.out deleted file mode 100644 index 6e5619e18e612ac7e0523574a85c56c427baf096..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.05856469472249349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200801_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200801_H_GLOBAL.out deleted file mode 100644 index d9a11d52c6d945bb50d97e023ebf5b4d002be5b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.04728235006332397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200801_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200801_M_GLOBAL.out deleted file mode 100644 index ea2f86b190c7e36e611c84529dd469f863e847ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.049998589356740314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200802_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200802_D_GLOBAL.out deleted file mode 100644 index 6c89f078a7663d3b455e993c09c978a36609b740..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.052746367454528806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200802_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200802_H_GLOBAL.out deleted file mode 100644 index 2594570aa1ac416e1f69c37e655e117371ce4e2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.05598400036493937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200802_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200802_M_GLOBAL.out deleted file mode 100644 index 3cb73e6c425da741d25082f671cccb768a38309f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.07203460137049357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200803_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200803_D_GLOBAL.out deleted file mode 100644 index 805bf2f2b46cdea4cd31983ac0382ba22639b63a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.07068969011306762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200803_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200803_H_GLOBAL.out deleted file mode 100644 index 30837c5cb88c24aaa38c9a6a0219568a5f48a35a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.0706162174542745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200803_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200803_M_GLOBAL.out deleted file mode 100644 index 296e0ce5ff4581ff97a86fd3dd96b3b36c638665..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.049724256992340087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200804_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200804_D_GLOBAL.out deleted file mode 100644 index 13d21b8f9acb19cea6fdec0f6bbbb8344688f9b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.0875120759010315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200804_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200804_H_GLOBAL.out deleted file mode 100644 index d882dacefef0339013bde12e17c706fb8987d2ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.057258192698160806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200804_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200804_M_GLOBAL.out deleted file mode 100644 index a6175447e6bb37485c6a2a8055fae3b14cb7184b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.0755523165067037 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200805_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200805_D_GLOBAL.out deleted file mode 100644 index be8c7b5b44679e390f0018eadce84b73ea2d9610..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.0527686595916748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200805_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200805_H_GLOBAL.out deleted file mode 100644 index 32a9fdbca384ddebcbc9d767f8a9b162e25f3959..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.06210534969965617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200805_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200805_M_GLOBAL.out deleted file mode 100644 index 4b4b1b1f368c58997e051bda475abac8cfc1d6f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.0694676955540975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200806_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200806_D_GLOBAL.out deleted file mode 100644 index 9754cebc3eb928f921448745d02a0bc41f12fee3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.050996287663777666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200806_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200806_H_GLOBAL.out deleted file mode 100644 index 590c742135d19d0ee995354538fd67dd1592e22b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.049474672476450605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200806_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200806_M_GLOBAL.out deleted file mode 100644 index 479d283f4e0a9bfea4b60ac9967e6d28615fe88a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.0756110668182373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200807_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200807_D_GLOBAL.out deleted file mode 100644 index 8b675c4818d8f5f22500550a1238fc3a8c0d6781..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.0633047620455424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200807_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200807_H_GLOBAL.out deleted file mode 100644 index 33821f2637f7a4fa3bc979b024b08a03f2c9bc06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.04868299166361491 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200807_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200807_M_GLOBAL.out deleted file mode 100644 index d6bfe61a0f8d5575d7e993c0fd8d7f612bab0d27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.05290313959121704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200808_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200808_D_GLOBAL.out deleted file mode 100644 index 2f992e989ef728b6a4dc7de7a33ab9354887e2e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.06387532154719035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200808_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200808_H_GLOBAL.out deleted file mode 100644 index 76d8d7e480f0cd27bf710722aa6b1089ee0331c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.04722404479980469 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200808_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200808_M_GLOBAL.out deleted file mode 100644 index 099ef06c70be89a26bfbd90097c3876440729290..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.07851064602533976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200809_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200809_D_GLOBAL.out deleted file mode 100644 index 692e491f03774317418e844aaf900770cb7d2af3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.08152692317962647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200809_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200809_H_GLOBAL.out deleted file mode 100644 index 89cf3f6e17bbcd1794c5ceedd4fd3b57361445c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.053800074259440105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200809_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200809_M_GLOBAL.out deleted file mode 100644 index ed583b9f424f7112fc4361a210216fa532e72a56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.08568160931269328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200810_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200810_D_GLOBAL.out deleted file mode 100644 index 013441bd7401d47d83492bfd4bc5099c9cae7ad7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.05043161312739054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200810_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200810_H_GLOBAL.out deleted file mode 100644 index ac66bfe1bbfa43e1fd185b483cd2144101fc674f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.05222415526707967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200810_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200810_M_GLOBAL.out deleted file mode 100644 index 3cec5631b6b82502356e7f1b01c8ec6ce58ae300..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.07341582775115967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200811_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200811_D_GLOBAL.out deleted file mode 100644 index 69c4709e4d7c37233086b561c2ef903b83f95c9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.0534900426864624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200811_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200811_H_GLOBAL.out deleted file mode 100644 index 4b08426680794226683f0655de5e4904e999e2d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.07911661068598429 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200811_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200811_M_GLOBAL.out deleted file mode 100644 index 256eef4ecc5498bf4e3d673dcfbdf0813637dfa0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.05534255901972453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200812_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200812_D_GLOBAL.out deleted file mode 100644 index 3691111e34e458ec8b428e42102b4aa6306b35bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.049907318751017254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200812_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200812_H_GLOBAL.out deleted file mode 100644 index ae6d9f61a6c4a3fa6bdcd6d4f8346a39ce1b927d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.060081013043721515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200812_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200812_M_GLOBAL.out deleted file mode 100644 index f0683178334c9d286beacd240dbec51777e08315..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.04812250932057698 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200901_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200901_D_GLOBAL.out deleted file mode 100644 index 0142517c6cbe5a448a449cabc437db34b97d9bac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.07478432257970175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200901_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200901_H_GLOBAL.out deleted file mode 100644 index e12696e18b1140bb4b63053446418ef52fcbe651..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.050473884741465254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200901_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200901_M_GLOBAL.out deleted file mode 100644 index 687f4e20a9e6ed5c19df6f71db79dfa17a08ce8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.06145904461542765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200902_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200902_D_GLOBAL.out deleted file mode 100644 index 35906ba83a42649f5111cce6c6e30df885a7c482..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.08912636439005533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200902_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200902_H_GLOBAL.out deleted file mode 100644 index 4151ad5caed42d1c2eef101a00f5149e6c043c4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.06073587735493978 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200902_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200902_M_GLOBAL.out deleted file mode 100644 index e936844b23d0eae78aae227179cc2a6719da392e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.04552274545033773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200903_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200903_D_GLOBAL.out deleted file mode 100644 index f5f11dcb75dde9776f22499fefcc742ce568a321..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.06919837792714437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200903_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200903_H_GLOBAL.out deleted file mode 100644 index d90b750a4a2b41b3ea6e352cab63e2bd10b3749d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.04794231653213501 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200903_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200903_M_GLOBAL.out deleted file mode 100644 index 2a6cd5c5f1c89d49cf2cabb7bd4eddaffc159b7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.06901301940282185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200904_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200904_D_GLOBAL.out deleted file mode 100644 index 3b73e428c1a78867653dca23e182efadbe3e0da5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.05630624294281006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200904_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200904_H_GLOBAL.out deleted file mode 100644 index 266ce58d8c2ed029b691c1dc06b958c6fe990f89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.08056282997131348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200904_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200904_M_GLOBAL.out deleted file mode 100644 index 2aab2addba8868f0b187dad532be9b23ff9ad13f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.06006844043731689 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200905_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200905_D_GLOBAL.out deleted file mode 100644 index ed5ec78345af2aaa4ccef8aa77da976db10c045d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.07214225927988688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200905_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200905_H_GLOBAL.out deleted file mode 100644 index 015a0d70df24b801e7889cbfeee8bda11105e718..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.08803271055221558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200905_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200905_M_GLOBAL.out deleted file mode 100644 index 5f9e727d57af0dfcb8df8656aa2caf24c3467830..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.06288257042566935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200906_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200906_D_GLOBAL.out deleted file mode 100644 index f3a84c5d56c29b104cfaaa8c4ab8919c7c324aa5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.07001006205876668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200906_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200906_H_GLOBAL.out deleted file mode 100644 index 28f79518840518cec9aa1d7a0e8c2e83cb2ea19d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.05030131737391154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200906_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200906_M_GLOBAL.out deleted file mode 100644 index 02814b5b16bd1ae32c43a2e7737597b108aecbe0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.07018948793411255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200907_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200907_D_GLOBAL.out deleted file mode 100644 index 335c0531a3af3e8f1399c647a31d6a2e0a6251b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.052134875456492105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200907_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200907_H_GLOBAL.out deleted file mode 100644 index 247b3fa3b70ac71b1219a897bd3f1274b1c52a5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.060856306552886964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200907_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200907_M_GLOBAL.out deleted file mode 100644 index 565ea890b7b104d8b5d32d3166b81b1bc0dc01c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.056143903732299806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200908_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200908_D_GLOBAL.out deleted file mode 100644 index 0cdee4ac1dc95924bb8ebd34b1bc4da9e82f2bd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.06443653504053752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200908_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200908_H_GLOBAL.out deleted file mode 100644 index b76743f1419f7c1aabbccb7416899060b0929275..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.07413809696833293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200908_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200908_M_GLOBAL.out deleted file mode 100644 index 9b2bbef939d263cf2ed7343db643d28c14e7c199..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.06824272076288859 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200909_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200909_D_GLOBAL.out deleted file mode 100644 index 10efa1a92eb76113e35ba1da46bd77fb57ef5aac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.050164544582366945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200909_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200909_H_GLOBAL.out deleted file mode 100644 index fbdcd923dbdf48b568d78f2737ce8fcb57625521..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.06210148334503174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200909_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200909_M_GLOBAL.out deleted file mode 100644 index 7465bf36a66094aba8da2be49870fd30ffe60419..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.05622023344039917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200910_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200910_D_GLOBAL.out deleted file mode 100644 index fb263743f9072c5661cff1cf4de0f3e81352ad1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.0716073711713155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200910_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200910_H_GLOBAL.out deleted file mode 100644 index 3e5996e22c65388d5d85288ab1c975534115008d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.04680979251861572 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200910_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200910_M_GLOBAL.out deleted file mode 100644 index a8accb772490ed65cafb5ed8d0aa06c822ba51d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.07879374424616496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200911_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200911_D_GLOBAL.out deleted file mode 100644 index 2df8a76e6c835f58fd147f80f64e03eddcdde418..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.06614178021748861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200911_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200911_H_GLOBAL.out deleted file mode 100644 index 48ae84eff00e8fbbee3da57f6238989075449748..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.07646690209706625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200911_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200911_M_GLOBAL.out deleted file mode 100644 index aed04b6b8433a7d84d77c3b6659d23d46e8bd06f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.06958529949188233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200912_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200912_D_GLOBAL.out deleted file mode 100644 index 50608c662402bead5cb6616583fb8c4ccd79ea04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.06842774550120036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200912_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200912_H_GLOBAL.out deleted file mode 100644 index 4a9eedf144e290b9ab6314ce9e00056a4c36cfe4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.09028038978576661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_200912_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_200912_M_GLOBAL.out deleted file mode 100644 index 2f59620926de2a1b55b48f06c8c12517f2b93e27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_200912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.07937635580698649 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201001_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201001_D_GLOBAL.out deleted file mode 100644 index 6ae33133587e50930b6b08a987232f9949f465cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.07997020085652669 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201001_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201001_H_GLOBAL.out deleted file mode 100644 index 646fdfaf034255d6258fa6c494ba9ec3800a242a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.08571215470631917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201001_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201001_M_GLOBAL.out deleted file mode 100644 index 0e4f4452e866133bb91fa0a980404f97d770a266..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.08968018690745036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201002_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201002_D_GLOBAL.out deleted file mode 100644 index 6264a1854747a4738a602de85c2722570758818e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.06844995021820069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201002_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201002_H_GLOBAL.out deleted file mode 100644 index 9150963e7fb382b7c8d25469306740f4629d7d9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.07939238548278808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201002_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201002_M_GLOBAL.out deleted file mode 100644 index 8b36b3bc1308b99258c39a60c0f093c7f9a24dc5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.08762978315353394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201003_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201003_D_GLOBAL.out deleted file mode 100644 index 5615e5a3375b3beccde8bebe8cc549aba78ea843..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.08116197188695272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201003_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201003_H_GLOBAL.out deleted file mode 100644 index eccda44d95784d584c3bf25ef6765273b02d40d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.10145153999328613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201003_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201003_M_GLOBAL.out deleted file mode 100644 index f31d1b2abaccc014a68ce172379cf63b3c1481e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.09217665195465088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201004_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201004_D_GLOBAL.out deleted file mode 100644 index 26fe8228760d1fc30f72402aab0ab0f69967eeff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.07692986726760864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201004_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201004_H_GLOBAL.out deleted file mode 100644 index 43844d9a98e7dbd2fb2cec8d84ca46f16e908a0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.08778367837270101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201004_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201004_M_GLOBAL.out deleted file mode 100644 index 45a757d7a0cd0970ad7b32d060312afa2fa7c97f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.10498424768447875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201005_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201005_D_GLOBAL.out deleted file mode 100644 index 30fd3453c54ba911eb971a411ea9cee316f6cad6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.0812667449315389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201005_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201005_H_GLOBAL.out deleted file mode 100644 index 4b768d4a54b51dd804a6b1ad284ed6d807be89d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.07203778823216757 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201005_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201005_M_GLOBAL.out deleted file mode 100644 index 08f9b75633040798c19ecb0573ee08f5d7d727fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.08085184494654338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201006_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201006_D_GLOBAL.out deleted file mode 100644 index 3f82a3dc5832d13316ca6db3c964c0432f4226e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.07179384231567383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201006_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201006_H_GLOBAL.out deleted file mode 100644 index 294b43c47eb460deedc5606a554637f9a62650ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.0864246924718221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201006_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201006_M_GLOBAL.out deleted file mode 100644 index 0fb7155e9cabd1d89ee7dd28ddb0aef2b95e959e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.08189979394276937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201007_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201007_D_GLOBAL.out deleted file mode 100644 index 11bedb27deac21603ef1392eec087cfbd7f57d2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.0816605806350708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201007_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201007_H_GLOBAL.out deleted file mode 100644 index 79cfe6795799c10eea34daf9bda65445e7ec857f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.06702443758646646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201007_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201007_M_GLOBAL.out deleted file mode 100644 index 7f60d1f21f85ea58e8238fb0f6603edb49123952..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.09196947813034058 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201008_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201008_D_GLOBAL.out deleted file mode 100644 index 10c790d0822a8d5b4d088e19768d25929dca6582..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.0911210576693217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201008_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201008_H_GLOBAL.out deleted file mode 100644 index 047a09b76da56f523f756dbe77937922a3e9e9ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.07993620236714681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201008_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201008_M_GLOBAL.out deleted file mode 100644 index 9a596154b206dd23f474d0462c4237bec9e7d24f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.1009409507115682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201009_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201009_D_GLOBAL.out deleted file mode 100644 index 18f7ed7a0374b928c31c9bcbdac2565e84fc3124..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.09106391270955404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201009_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201009_H_GLOBAL.out deleted file mode 100644 index 42e12f1fa207772266236e1bbe358c7542683e91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.07928489844004313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201009_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201009_M_GLOBAL.out deleted file mode 100644 index 869b75e46f232a2aa375a520d5eaafd983d39801..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.07098828951517741 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201010_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201010_D_GLOBAL.out deleted file mode 100644 index 86a854dfa2ad4d13c9f5702a4ec64ca80a20a4b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.07855195204416911 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201010_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201010_H_GLOBAL.out deleted file mode 100644 index 82af78f4d3476699a151d2d455a3a3c733bdb0e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.08341299692789714 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201010_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201010_M_GLOBAL.out deleted file mode 100644 index dd315b61802daaacf00e3ce5db205721c702aad5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.08392567237218221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201011_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201011_D_GLOBAL.out deleted file mode 100644 index 72154ca295749557e7d17bf62fb67672f8458980..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.07756341695785522 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201011_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201011_H_GLOBAL.out deleted file mode 100644 index 1fd5440044f9b516f21da00586312e255830f3f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.0669061024983724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201011_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201011_M_GLOBAL.out deleted file mode 100644 index be642d57a6308b4129e4e916089a7d41883f6f44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.07249979575475057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201012_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201012_D_GLOBAL.out deleted file mode 100644 index 0c3e15dedd492961170d41fd344baee0562052ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.0759858767191569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201012_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201012_H_GLOBAL.out deleted file mode 100644 index 9a605b5b15180e75b39552a500b6d4e874912d24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.08189975023269654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201012_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201012_M_GLOBAL.out deleted file mode 100644 index bd598e00872715766b6d5dc7061c1b22f859d996..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.10021299521128336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201101_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201101_D_GLOBAL.out deleted file mode 100644 index f84b2b3dfe01926a434959e2537e2c55ab02b49c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.08364473183949789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201101_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201101_H_GLOBAL.out deleted file mode 100644 index b130d4250d51c13f8439db1feb9bc09e5e3da049..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.1027873396873474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201101_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201101_M_GLOBAL.out deleted file mode 100644 index 224ea22a7199b156926fb9b5e351d5c339451d25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.07728400627772013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201102_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201102_D_GLOBAL.out deleted file mode 100644 index 7c10348803ea8ba23edfa4f08b2a92decbee06bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.11339767376581827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201102_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201102_H_GLOBAL.out deleted file mode 100644 index 7ef7559943ef3ed7a3f5d8314213bf9d315af3eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.1001341740290324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201102_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201102_M_GLOBAL.out deleted file mode 100644 index 64f6a812e468004a40ea7a7de89fcf82ccd975e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.09640569686889648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201103_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201103_D_GLOBAL.out deleted file mode 100644 index a788b9ff9b0fd1b1a80af7e9c7daa970cf4ad66e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.07497476736704509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201103_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201103_H_GLOBAL.out deleted file mode 100644 index 5e2243f844933fe56585a941d9a164c189870729..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.07150650421778361 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201103_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201103_M_GLOBAL.out deleted file mode 100644 index b6f63584d36164e147ba61aed67b5cafa5e408fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.08516871134440104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201104_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201104_D_GLOBAL.out deleted file mode 100644 index f5eb513d71d283cc3b3b87768ad47cdd109b2157..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.08002634445826212 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201104_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201104_H_GLOBAL.out deleted file mode 100644 index b56e6f03f7361892da230093f9cb33f458f02542..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.08745776812235515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201104_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201104_M_GLOBAL.out deleted file mode 100644 index 4f0b36aaa6c9d8818574c6403722632ecac7de5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.09928649663925171 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201105_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201105_D_GLOBAL.out deleted file mode 100644 index 1d34b7ba69b5eef6453220b8698ea63682e97ef5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.07127258777618409 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201105_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201105_H_GLOBAL.out deleted file mode 100644 index c7384002d568dd4a258f7abc4752a66a4a6fc700..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.06621358791987102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201105_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201105_M_GLOBAL.out deleted file mode 100644 index 4fb91487c67edaee213df449e96c114b4a302f60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.08639829953511556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201106_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201106_D_GLOBAL.out deleted file mode 100644 index fd059ab4d5bad1c5be294483b874d061c28180b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.07782885233561197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201106_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201106_H_GLOBAL.out deleted file mode 100644 index a0d10273ea3280baa2d1b7675963310b07e39a01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.0817943255106608 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201106_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201106_M_GLOBAL.out deleted file mode 100644 index 8b2994ed5d488edf221128252e4605f8712a712b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.06617539326349894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201107_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201107_D_GLOBAL.out deleted file mode 100644 index 56423d8408e9cc0116344827e6df30f39e9509b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.06975805362065633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201107_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201107_H_GLOBAL.out deleted file mode 100644 index 80eb1bcbe5aef343e57d434f111f6d03551c3614..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.07399698098500569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201107_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201107_M_GLOBAL.out deleted file mode 100644 index a028fe336a6d067e55647904e0ade7e9acf98ed5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.07234554290771485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201108_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201108_D_GLOBAL.out deleted file mode 100644 index 888eba7e2460bdf6f373fe3187718c8d51fb6450..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.09087637662887574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201108_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201108_H_GLOBAL.out deleted file mode 100644 index 10153a0460dc9efed876ab6c85a75a0d27d23eae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.08049168586730956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201108_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201108_M_GLOBAL.out deleted file mode 100644 index 6e7034876390ba1a0477b98989f8a582fbab61ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.08855636119842529 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201109_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201109_D_GLOBAL.out deleted file mode 100644 index d8e5d20c5a79b0bffc6dcc17b5d6208fe4563028..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.08676495552062988 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201109_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201109_H_GLOBAL.out deleted file mode 100644 index f367e6c737a94c669000bc25a7893a84e28537ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.08218092123667399 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201109_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201109_M_GLOBAL.out deleted file mode 100644 index 8ad90d871b0511687c6d3ad936deaafb12bab483..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.07081226507822673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201110_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201110_D_GLOBAL.out deleted file mode 100644 index 3040a6d74ced7b5024478ba6cbc3afcb84086454..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.07719004948933919 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201110_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201110_H_GLOBAL.out deleted file mode 100644 index cf4e64f6963b5a918d0775c63bb669a98942cab6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.08180339733759562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201110_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201110_M_GLOBAL.out deleted file mode 100644 index 62d6985cc69d29995bf83453ba4aded928f0e90a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.06906503041585287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201111_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201111_D_GLOBAL.out deleted file mode 100644 index e9107e2aff89aa835e4fb23d1444b7cee3c7ed81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.0866581916809082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201111_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201111_H_GLOBAL.out deleted file mode 100644 index 7385785f1d63e71e81e9149df9c3145ae2941d7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.07019075949986776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201111_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201111_M_GLOBAL.out deleted file mode 100644 index 8fc219dd2ad4f5d0ff2f0fd305c4bc2a26631b68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.08006914059321085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201112_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201112_D_GLOBAL.out deleted file mode 100644 index 0f7a20c23933f5ed8ed58dc5a61530f69502f94f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.07981478373209636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201112_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201112_H_GLOBAL.out deleted file mode 100644 index 1b42b45b492b15be31db139c44d1baed18aa743a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.09314463138580323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201112_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201112_M_GLOBAL.out deleted file mode 100644 index 1f7acebe7457ef3da0bab27b6d82ee93c4da7a62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.07413264910380045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201201_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201201_D_GLOBAL.out deleted file mode 100644 index 62bcfdddb62e4c589da1a69af3167c996663131e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.07091413736343384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201201_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201201_H_GLOBAL.out deleted file mode 100644 index 9d30bf8938d836667593a5152b400c0c255f2d1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.0758802096048991 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201201_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201201_M_GLOBAL.out deleted file mode 100644 index 9635ed91c2e306ca68fcad31ec15345d920a3349..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.11418219407399495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201202_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201202_D_GLOBAL.out deleted file mode 100644 index bf050f172ef3a89064cf2a5d12c4db435a01eb9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.08203258911768595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201202_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201202_H_GLOBAL.out deleted file mode 100644 index 4f9df621a6cc8982da4f186c7e9226b39556521d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.07212800582249959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201202_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201202_M_GLOBAL.out deleted file mode 100644 index b2b57c29f935f59781415f616f124dc8bcc3d3f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.09084217548370362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201203_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201203_D_GLOBAL.out deleted file mode 100644 index 95da29500341dca2a33516b80e634869453b5042..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.07338774601618449 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201203_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201203_H_GLOBAL.out deleted file mode 100644 index d275d6f9ee08881c91fded5329d6bdbceef1f0cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.06948797305425009 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201203_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201203_M_GLOBAL.out deleted file mode 100644 index 753e89b0969ae681b71008b1c3ba3f163d7465b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.07174030542373658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201204_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201204_D_GLOBAL.out deleted file mode 100644 index 552c223619addf34e74e242cac7a6fb649d62b09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.09015894730885823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201204_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201204_H_GLOBAL.out deleted file mode 100644 index e24ac60f580ddc4973bfea24f3f405add8d6b4a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.08667889833450318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201204_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201204_M_GLOBAL.out deleted file mode 100644 index 821e16e7d5b22f721f3873cf0f0e63d6577a63e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.1000349203745524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201205_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201205_D_GLOBAL.out deleted file mode 100644 index c1a5afcef86279f8b57031defff974da103fbb54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.07820272445678711 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201205_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201205_H_GLOBAL.out deleted file mode 100644 index 26a15eb7cdf42aeafbbb1f3ceb5fd684964ebbbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.08330545028050741 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201205_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201205_M_GLOBAL.out deleted file mode 100644 index bb947b88bb165430f494a3d56a424cb3d78c2822..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.07787328561147054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201206_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201206_D_GLOBAL.out deleted file mode 100644 index cb68092df8dbe3dc897c5a4560cfe484dd8b0d0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.0916960636774699 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201206_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201206_H_GLOBAL.out deleted file mode 100644 index 7816ac7e5be6de5fce517830fe3f612587d0cee4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.06938767830530802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201206_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201206_M_GLOBAL.out deleted file mode 100644 index b0ef6bebc8f6a2d68eeb21c5b8451f420bfee96d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.08759793440500895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201207_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201207_D_GLOBAL.out deleted file mode 100644 index 63cce08551db41b202beddb2ae63a8720186dabc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.08711125453313191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201207_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201207_H_GLOBAL.out deleted file mode 100644 index db652efa6a8e7fa65f1b7703515cfac06ed44ce6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.07558140754699708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201207_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201207_M_GLOBAL.out deleted file mode 100644 index d5413be53c575f5a2c1df214c4b7b6898a700206..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.09932199716567994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201208_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201208_D_GLOBAL.out deleted file mode 100644 index 023c224b43eac6fa0494d7179951562e0d15c7b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.10091007947921753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201208_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201208_H_GLOBAL.out deleted file mode 100644 index 9a8b31d1a010bc499fb13b92fdfbeee0d4d29944..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.10103315512339274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201208_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201208_M_GLOBAL.out deleted file mode 100644 index e1f0eae08b7697990d11e81b1fbe98e8702985d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.07846677303314209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201209_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201209_D_GLOBAL.out deleted file mode 100644 index 1a1a4eb0257a50405a6d2525a92548df6d9c8fb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.1082746704419454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201209_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201209_H_GLOBAL.out deleted file mode 100644 index 3368e05519af926adc7c13b32bda1049ff3bc529..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.07126022179921468 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201209_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201209_M_GLOBAL.out deleted file mode 100644 index 296a79ecdb2de61f366ef401a6d4057d8e040a76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.0833915114402771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201210_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201210_D_GLOBAL.out deleted file mode 100644 index ac5940e0dca97f1eba5bc3098d0f2e4a14ade250..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.08358792463938396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201210_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201210_H_GLOBAL.out deleted file mode 100644 index 8e76861efb2ee28f2d30f7aed67034faacb620fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.06881450414657593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201210_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201210_M_GLOBAL.out deleted file mode 100644 index 3a5126bcd2e00a83672b9cb03bd13c1f8eb36a60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.09325766563415527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201211_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201211_D_GLOBAL.out deleted file mode 100644 index 5d47c3758733bb5d1d78f3315b5ddae76feec859..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.08970719575881958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201211_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201211_H_GLOBAL.out deleted file mode 100644 index d7dada238e427c0c17128de92423d946e701717c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.07187722524007162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201211_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201211_M_GLOBAL.out deleted file mode 100644 index b1772b13ec4fac2f4a5413f0548fb5f34221f044..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.08158369461695353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201212_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201212_D_GLOBAL.out deleted file mode 100644 index 7d789e4da3102ea20ecb1cf58205b09786b0290b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.09269289573033651 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201212_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201212_H_GLOBAL.out deleted file mode 100644 index 5e650a8d3d6fc40647604a5c2a7225e2a73eaf6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.09159811337788899 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201212_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201212_M_GLOBAL.out deleted file mode 100644 index 47c8aed3c668c3223e2b7992ad2e5258480c0d65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.08341038227081299 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201301_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201301_D_GLOBAL.out deleted file mode 100644 index b7da4dd8c123b6b5aae3864edb773b5983ff5402..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.08159010410308838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201301_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201301_H_GLOBAL.out deleted file mode 100644 index 84b053c98130d749b9ce9e1732711fd3164dd6bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.08934642076492309 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201301_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201301_M_GLOBAL.out deleted file mode 100644 index 4664b34fad2d1f77403ae03bc339e4ae02690ba5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.10096333821614584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201302_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201302_D_GLOBAL.out deleted file mode 100644 index a2d85341f54a99cb8e9ee261a786c905abc5c61b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.09284528096516927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201302_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201302_H_GLOBAL.out deleted file mode 100644 index 1e76e47a20f95807d147aa074a1da98d8698ee09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.08100990851720175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201302_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201302_M_GLOBAL.out deleted file mode 100644 index df96eeb76785747f1cb7566b48036b42a7c16ff2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.07052537600199381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201303_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201303_D_GLOBAL.out deleted file mode 100644 index 768cf25ad71432199bed3680f71192cecf8c3612..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.06785430510838826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201303_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201303_H_GLOBAL.out deleted file mode 100644 index c591e1d2d8377bfcddfb21e189ebf268e22e8a38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.07390139897664388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201303_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201303_M_GLOBAL.out deleted file mode 100644 index e2d770307f9fe3f7116d5ba94f3527e87432f6bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.07834563652674358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201304_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201304_D_GLOBAL.out deleted file mode 100644 index 87ad064c4a580fcff642705518ba7091f19882c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.08413161834081014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201304_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201304_H_GLOBAL.out deleted file mode 100644 index e1e63aef016ce7698148bf260041484916ce16c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.07685885826746623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201304_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201304_M_GLOBAL.out deleted file mode 100644 index 9ddeb5b255b7c105f01854cc377aec0548167d42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.08978812297185262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201305_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201305_D_GLOBAL.out deleted file mode 100644 index 3e5d4dfbc1b55987157a322eb45b94b7898ee8dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.08356988032658895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201305_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201305_H_GLOBAL.out deleted file mode 100644 index 00b3326a1bb4c5e90151afd0cb465b4a8d1ce23f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.08837138017018636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201305_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201305_M_GLOBAL.out deleted file mode 100644 index 77f16ad7f7e3b2b89abcacf866e23a7da6995ec1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.0714070995648702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201306_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201306_D_GLOBAL.out deleted file mode 100644 index e7303ae846aea98a767855a22966a86cc2cc0aae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.07581355174382527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201306_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201306_H_GLOBAL.out deleted file mode 100644 index c766781964500f783ebe8671a22a6243e01917f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.06635879278182984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201306_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201306_M_GLOBAL.out deleted file mode 100644 index 16e0cf9600dd717134b82a3883f3beb23ac340e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.08126378854115804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201307_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201307_D_GLOBAL.out deleted file mode 100644 index 6e951e148456dc18c42f7f41e681836319beccd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.08301560481389364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201307_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201307_H_GLOBAL.out deleted file mode 100644 index eacd4e84f99e7252552e2dab1c95474a9d809f58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.07282942533493042 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201307_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201307_M_GLOBAL.out deleted file mode 100644 index b79c1beaa7d57e1aaa2173af06c8ac2196e90431..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.10466352701187134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201308_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201308_D_GLOBAL.out deleted file mode 100644 index cf94bbf0b184b3a8040dda89bcd50571f6d612de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.08143240610758463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201308_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201308_H_GLOBAL.out deleted file mode 100644 index 258a316212b40ccff34a027c19aadef71ff5771a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.08171971638997395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201308_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201308_M_GLOBAL.out deleted file mode 100644 index 0a8fa49c21012ed6ab6909423008f5544564759c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.0767980416615804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201309_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201309_D_GLOBAL.out deleted file mode 100644 index d4573aff8c10c954ca3b09a68e9fd0c3ce353211..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.07726561625798543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201309_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201309_H_GLOBAL.out deleted file mode 100644 index 92fad7cf4dc87be9f9fcc17439f39a0ad8969e77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.08253762722015381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201309_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201309_M_GLOBAL.out deleted file mode 100644 index ad8c6537ef844f0bff237033801bea9d251af17e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.08647226492563884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201310_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201310_D_GLOBAL.out deleted file mode 100644 index 414d9fb21b5c8bc1d0aa652fc6f048c9eddc21a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.11438751618067423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201310_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201310_H_GLOBAL.out deleted file mode 100644 index 43e6c24faaf29af41f48464762b8e232b932dbf8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.07130644321441651 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201310_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201310_M_GLOBAL.out deleted file mode 100644 index 79619cb99d4f3eb141e9148098e7631e3a0ded22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.08123232126235962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201311_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201311_D_GLOBAL.out deleted file mode 100644 index 0d293edd5d8fd888a6f597752560f4b3d9c6fc0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.0744020422299703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201311_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201311_H_GLOBAL.out deleted file mode 100644 index 551b1d9cc13d406d34c2b60f7840af8001454244..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.06923196315765381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201311_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201311_M_GLOBAL.out deleted file mode 100644 index 55ed170ee5d638fbf2a2920f06a714e3bd83c7f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.10127228498458862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201312_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201312_D_GLOBAL.out deleted file mode 100644 index 9e23a39ffcba877f77bfb4ce7a40c7256a776df0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.08202203512191772 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201312_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201312_H_GLOBAL.out deleted file mode 100644 index c5895f519913d98dabca432ce4f63c09a5f9e88f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.07537151575088501 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201312_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201312_M_GLOBAL.out deleted file mode 100644 index 2b9ae11ea3bce8f48d3af9704da65192ceedea6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.06989342371622721 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201401_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201401_D_GLOBAL.out deleted file mode 100644 index 1d3510d6764da1416b6d50d6059c93d165de7b25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.10337731043497721 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201401_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201401_H_GLOBAL.out deleted file mode 100644 index 82b9cf556030b681ce04a66b44b938026ee30320..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.09083567460378011 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201401_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201401_M_GLOBAL.out deleted file mode 100644 index 2f15e5bf8eda671f3ab5bd150a2394bf9916d2d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.09522380034128824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201402_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201402_D_GLOBAL.out deleted file mode 100644 index 2ca89dfef9da427ab9291a5247023d9a50762518..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.07410095930099488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201402_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201402_H_GLOBAL.out deleted file mode 100644 index f516a440880798f2a09136aab4c7303d37dd0d30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.07689197858174641 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201402_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201402_M_GLOBAL.out deleted file mode 100644 index 46755b37531c4a8886f284fd5cef1522ada5caa7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.08148066997528076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201403_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201403_D_GLOBAL.out deleted file mode 100644 index c921b58e34114c654001ff85b72cc57fa8a39568..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.08253801266352336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201403_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201403_H_GLOBAL.out deleted file mode 100644 index cc5880453f945cab4a350b2a68bc45458d016ae8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.10665818055470784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201403_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201403_M_GLOBAL.out deleted file mode 100644 index f9383af98f1375c3796f6c833eed97f34fda9593..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.07391189336776734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201404_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201404_D_GLOBAL.out deleted file mode 100644 index 9d724b4483902bfb64d1637ae4026bcba688ecb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.08327339887619019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201404_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201404_H_GLOBAL.out deleted file mode 100644 index 2ac9f059855d0c4d94f7abfe58b91f3dbddb958b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.07100616296132406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201404_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201404_M_GLOBAL.out deleted file mode 100644 index 93b52c65f57b494d041eb6a919c41d4ae3c2eb5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.07828218142191569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201405_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201405_D_GLOBAL.out deleted file mode 100644 index c0b9a20bd7a529085b6a6164c67f0cb46505bd09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.09515620867411295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201405_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201405_H_GLOBAL.out deleted file mode 100644 index f8f4a305c94a195e3c829675ca4ee7e1a3a5d547..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.09144259293874105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201405_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201405_M_GLOBAL.out deleted file mode 100644 index 2c6c2e2ea99934e8b922f31ae76e7953fd9d74b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.0950429916381836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201406_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201406_D_GLOBAL.out deleted file mode 100644 index f6a20332a9219482d6ba73b3e9dc284ce046af01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.12160928646723429 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201406_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201406_H_GLOBAL.out deleted file mode 100644 index 06725f45552f18160509e72cecab1be4ed2e4449..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.07039589087168376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201406_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201406_M_GLOBAL.out deleted file mode 100644 index 8167e4ac5a607e3182578b6ef7aba50559bb8713..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.10525973637898763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201407_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201407_D_GLOBAL.out deleted file mode 100644 index 619a98cf8023eed485a059293ce4f90295e83e92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.08334208726882934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201407_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201407_H_GLOBAL.out deleted file mode 100644 index a21d44df91adaaf1161737f324a6c6620d21454b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.06671720345815023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201407_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201407_M_GLOBAL.out deleted file mode 100644 index a18e3be8fd656a22ec8eb290e809861a7fdf66c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.07825648387273153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201408_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201408_D_GLOBAL.out deleted file mode 100644 index 5e7f7430b44a74caded0ffc0d8f0aa99bad44e07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.0848228136698405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201408_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201408_H_GLOBAL.out deleted file mode 100644 index ee74e4653376cc24c410a443250036ab6feaa242..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.07290089130401611 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201408_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201408_M_GLOBAL.out deleted file mode 100644 index 980263a01a0edb057eafbf5e8ef6021d9ad63f56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.07979624271392823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201409_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201409_D_GLOBAL.out deleted file mode 100644 index b83619610410c524c46835bae927843518572cda..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.08123141924540202 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201409_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201409_H_GLOBAL.out deleted file mode 100644 index 95eff0f5e82c8e41388ad7870589b2aa77d1a11a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.0799830675125122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201409_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201409_M_GLOBAL.out deleted file mode 100644 index 187e3249913edda29cd8a2729c31cd7404eb9a03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.07339940468470256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201410_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201410_D_GLOBAL.out deleted file mode 100644 index 485d95be10ce78c4e53f3c2a57518c00ac573a1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.09067460695902506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201410_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201410_H_GLOBAL.out deleted file mode 100644 index 2ec415d599da3a70707c1ba81ddce19ae4129184..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.0755847175916036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201410_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201410_M_GLOBAL.out deleted file mode 100644 index 45589631e95e0b5c5d5cce7c4597e0cbbd6c57fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.08967941999435425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201411_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201411_D_GLOBAL.out deleted file mode 100644 index 44fccff4a2bcbcb078d590d08e7e53638d546921..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.08004539410273234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201411_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201411_H_GLOBAL.out deleted file mode 100644 index 61988a6c1099b821353e9613561a7adf62005240..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.08714927832285563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201411_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201411_M_GLOBAL.out deleted file mode 100644 index d1d67dd5fa9e87f237929a739a3a2620f63abbad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.10781452655792237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201412_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201412_D_GLOBAL.out deleted file mode 100644 index 2643be8bf0a98680c803e5174f51021bd0470d77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.09568401972452799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201412_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201412_H_GLOBAL.out deleted file mode 100644 index 4f831f032e8b7a5f4f7e066725952fbf70705cb4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.07538851499557495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201412_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201412_M_GLOBAL.out deleted file mode 100644 index bb4846f33f8e869ffd5ffe099cb7e67dcfa73ae9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.0855057954788208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201501_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201501_D_GLOBAL.out deleted file mode 100644 index c9db63d957c1bff8e6835ea2c10dcf97d8b69c11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.09883109331130982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201501_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201501_H_GLOBAL.out deleted file mode 100644 index 383184c937f323c6cad891d2f24be5c5023512e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.07794194618860881 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201501_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201501_M_GLOBAL.out deleted file mode 100644 index e567326ccf41533596cc6790e57d1e49fadebc63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.08783676226933797 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201502_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201502_D_GLOBAL.out deleted file mode 100644 index 387fa7a636b906b5d4968c11c34b0be90fe00455..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.0953163743019104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201502_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201502_H_GLOBAL.out deleted file mode 100644 index 8f5b424dbeb08be1fc345e215fec63c422f3b2c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.08791611989339193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201502_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201502_M_GLOBAL.out deleted file mode 100644 index 8674260f498cbb8743a2f0f265679d150dcee03e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.09636785586675008 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201503_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201503_D_GLOBAL.out deleted file mode 100644 index 40b5ed0242fb682239355976ed1ff091038b40e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.08575125535329182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201503_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201503_H_GLOBAL.out deleted file mode 100644 index 60d672749cecf94f7ad1a80bc86dd522fb1987c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.08676198323567709 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201503_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201503_M_GLOBAL.out deleted file mode 100644 index 51945bd0b13573a43c390bee2a7cfeb9e7952ab6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.10089393854141235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201504_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201504_D_GLOBAL.out deleted file mode 100644 index df14229e030ce93644434aabf7fc57a36d28de02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.08141765594482422 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201504_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201504_H_GLOBAL.out deleted file mode 100644 index 014d278c612e5ed16524b23f62766cc7efd2dc3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.09323122898737589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201504_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201504_M_GLOBAL.out deleted file mode 100644 index 65a8bb094d1860f2c8cbf5317658a0c989021fd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.08506113688151042 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201505_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201505_D_GLOBAL.out deleted file mode 100644 index 285460d2634ad31d889ae30565fd27e8c9da62a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.09306933879852294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201505_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201505_H_GLOBAL.out deleted file mode 100644 index 7959f54b600b856554dc6bb85484c0688b2a6f43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.08402133385340373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201505_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201505_M_GLOBAL.out deleted file mode 100644 index 8e19c60362f78b12468b7f3fd56b25ebf2c695b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.09451045195261637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201506_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201506_D_GLOBAL.out deleted file mode 100644 index 8720fa8d826c9e92b2f21e3b83a3630e33b0dbbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.08030937910079956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201506_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201506_H_GLOBAL.out deleted file mode 100644 index 73ffe1cfc6ab2bbf02021ca1140af946fb363670..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.08638269503911336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201506_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201506_M_GLOBAL.out deleted file mode 100644 index 06edcd4ac83e0ea279402e267cadc6194412e222..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.08019773562749227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201507_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201507_D_GLOBAL.out deleted file mode 100644 index 7f67900ae0a2af5d50c9c1b25ef01d1e401b8931..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.08599953254063925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201507_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201507_H_GLOBAL.out deleted file mode 100644 index 84305234c2f2fc933b4ed6ed224e2b126926c60b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.08537510633468628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201507_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201507_M_GLOBAL.out deleted file mode 100644 index 889643601e96acefc97663023345e173881a17b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.12760939598083496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201508_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201508_D_GLOBAL.out deleted file mode 100644 index 87e39a9672322f2b43a94efb2e93e32619e54130..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.08445944388707478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201508_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201508_H_GLOBAL.out deleted file mode 100644 index 1a91cc60d1d3c55d63d02ac5121eada653bcb99d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.09501217603683472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201508_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201508_M_GLOBAL.out deleted file mode 100644 index c4b386ac79d2749665f82427d6d84121299d9100..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.08392910559972128 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201509_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201509_D_GLOBAL.out deleted file mode 100644 index 112adc847f66aad21a37a6d51c415a94cabc183a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.09610091845194499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201509_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201509_H_GLOBAL.out deleted file mode 100644 index b0166e7393a63ca1aa79109084f55c747e355578..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.07798118591308593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201509_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201509_M_GLOBAL.out deleted file mode 100644 index 327aa39d310cd58fbd8b6e1f6101240d8e9df9e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.10030976533889771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201510_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201510_D_GLOBAL.out deleted file mode 100644 index 877c014aa198668175b860b3d3ee3c68b439dcb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.08045897086461386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201510_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201510_H_GLOBAL.out deleted file mode 100644 index 3c3c0528a9aa649ed75b4f390564f655e307fff0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.09196252425511678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201510_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201510_M_GLOBAL.out deleted file mode 100644 index 3def6229f6d130f2680fe0c447e7b38a27c2c974..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.09903048674265544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201511_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201511_D_GLOBAL.out deleted file mode 100644 index 19008ba9b577170cb631283db4be393beb0ea4f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.11415642897288004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201511_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201511_H_GLOBAL.out deleted file mode 100644 index 760adc8cf454c113077b582a0bdb028aa9578a26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.07842577298482259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201511_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201511_M_GLOBAL.out deleted file mode 100644 index 92c5fa9a811fc73a85d55e6c3203084b738682f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.11275531450907389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201512_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201512_D_GLOBAL.out deleted file mode 100644 index 4ab45cc51566ab45867140a18fa117de5cd360c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.09008521238962809 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201512_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201512_H_GLOBAL.out deleted file mode 100644 index 51888cf300917e743a3ba44b9c0ea44f5ddbb630..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.08534657955169678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201512_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201512_M_GLOBAL.out deleted file mode 100644 index e9dd7921af39214841f89f30d5350f63a052f68a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.09799731572469075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201601_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201601_D_GLOBAL.out deleted file mode 100644 index 6c20b3bb37856c3d67c687e772a32316529ac608..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.08799822727839152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201601_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201601_H_GLOBAL.out deleted file mode 100644 index 822445bb94ae4a39061c5e0fd74639b2e1fea77f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.08122976223627726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201601_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201601_M_GLOBAL.out deleted file mode 100644 index b74e0e22cf6d91346097473361fc0811608a5f8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.09277110497156779 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201602_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201602_D_GLOBAL.out deleted file mode 100644 index 2f06ad8cec53f1197d3b46521651caa3c7fedde1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.09458296298980713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201602_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201602_H_GLOBAL.out deleted file mode 100644 index d1a5cb1e04782bceae609c8b3aacdf8ad1fcd70e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.09826960166295369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201602_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201602_M_GLOBAL.out deleted file mode 100644 index 36dfae6de05f8ec5a141ac57269c7b0c8f578d0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.08787452777226766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201603_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201603_D_GLOBAL.out deleted file mode 100644 index 3c76ade32952af0a500df809fa7795c5b0aadade..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.08754002253214518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201603_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201603_H_GLOBAL.out deleted file mode 100644 index e87fee3312062abf1cce066e014ebf21f78be899..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.0786935289700826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201603_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201603_M_GLOBAL.out deleted file mode 100644 index c7d51cfa5df535c16e31da509a71c47fce451ed1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.07758925755818685 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201604_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201604_D_GLOBAL.out deleted file mode 100644 index c62e8bd554423c301698d50045b1a2f20390d3b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.09942177534103394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201604_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201604_H_GLOBAL.out deleted file mode 100644 index 06ee64236b01e1549eeb96372f61180191c3211d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.09450525442759196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201604_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201604_M_GLOBAL.out deleted file mode 100644 index 8f1090fc2e86001ad8642c4b64445d99fed79be3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.08137634992599488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201605_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201605_D_GLOBAL.out deleted file mode 100644 index 815c9e537972398b3507d8b5d4483231797baa49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.08280031283696493 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201605_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201605_H_GLOBAL.out deleted file mode 100644 index 89909c9245f6e707c207f87d500782e3760f49d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.08271081844965616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201605_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201605_M_GLOBAL.out deleted file mode 100644 index 4208631b6cb522b30e93817afd9f20c956c1b312..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.09203325510025025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201606_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201606_D_GLOBAL.out deleted file mode 100644 index d46469d1cafdedd1af48db73082d72bbfbea6f10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.10808433691660563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201606_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201606_H_GLOBAL.out deleted file mode 100644 index 8060680fd732af50d66dfa954096578105a7a6ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.09540871779123943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201606_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201606_M_GLOBAL.out deleted file mode 100644 index 5b95a3a284404c56550672f821b946ef5a663732..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.10191625356674194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201607_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201607_D_GLOBAL.out deleted file mode 100644 index 844a558a8ef59ad9fe3bb89dc2fb12c6032ad528..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.10451068480809529 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201607_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201607_H_GLOBAL.out deleted file mode 100644 index 6308f63ff4aadad1bc8289435963952b9ee5b6d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.1035695751508077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201607_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201607_M_GLOBAL.out deleted file mode 100644 index cb1e7405d6375b0507e151e7e77b8c5aca3cf322..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.08796607653299968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201608_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201608_D_GLOBAL.out deleted file mode 100644 index ff50fdad717840e8b4a8b73c14e04308fac9dd30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.10777264436086019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201608_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201608_H_GLOBAL.out deleted file mode 100644 index 8583d2a6d0ff4a2c77877ac4a2123964edeff702..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.08309865395228068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201608_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201608_M_GLOBAL.out deleted file mode 100644 index 8b5191bd9f8e2942bb5f9afb2905c995ecc7f0fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.08449858029683431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201609_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201609_D_GLOBAL.out deleted file mode 100644 index 9eb147c89c8d57b3db02765fa214a02db31ff79e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.08546917835871379 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201609_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201609_H_GLOBAL.out deleted file mode 100644 index ec39a40c18af21a9cab33fa5f24cd7059ebb2dce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.08108469645182291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201609_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201609_M_GLOBAL.out deleted file mode 100644 index a4ad172f65236df8655f05d22369f5d34dd08ca1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.08821450471878052 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201610_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201610_D_GLOBAL.out deleted file mode 100644 index bfb97bf8fc0c50e85a59057ea0d4727354ada872..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.09366958538691203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201610_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201610_H_GLOBAL.out deleted file mode 100644 index 3eb608e4206dc4bf3b884a401ce2791a7ea1e0a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.08970667918523152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201610_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201610_M_GLOBAL.out deleted file mode 100644 index 2a91d3bc98ce2dcf1f1b52ecf66cc594098c569c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.08083635965983073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201611_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201611_D_GLOBAL.out deleted file mode 100644 index 752b946cf404b6f032914d46c620e67475088974..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.08987425565719605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201611_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201611_H_GLOBAL.out deleted file mode 100644 index f9b07c6f5cf31aa38e23ceb06a7e9120f2d90ba4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.09008729855219523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201611_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201611_M_GLOBAL.out deleted file mode 100644 index 2d9304d0ce9a6ba2077ffa79fc35b37f081cc63f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.10834532578786214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201612_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201612_D_GLOBAL.out deleted file mode 100644 index b0082882f8cfc7b44c24b2e8b661be0acbc83485..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.08599261442820232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201612_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201612_H_GLOBAL.out deleted file mode 100644 index d9f1a8c299059e6a904aee53a1cad60203de16e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.08587746620178223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201612_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201612_M_GLOBAL.out deleted file mode 100644 index a424a798113c40fdd8be2b611d27f4f58be08538..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.07723599672317505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201701_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201701_D_GLOBAL.out deleted file mode 100644 index 5aba636618dce10213997b9f6b2d8e466f271a27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.0967852512995402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201701_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201701_H_GLOBAL.out deleted file mode 100644 index 98ea842060130f6c2d9d509fdbbd9e32231ede16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.07584067980448404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201701_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201701_M_GLOBAL.out deleted file mode 100644 index 46bb8851a645e276792bb21d219397f080bff06c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.08996121486028036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201702_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201702_D_GLOBAL.out deleted file mode 100644 index 87faeb090b939063d28449b74b13805cb0d44ef8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.08503928979237875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201702_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201702_H_GLOBAL.out deleted file mode 100644 index 99a76fa97ae60a81c7a0287fd9db435b363cde80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.08519628842671713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201702_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201702_M_GLOBAL.out deleted file mode 100644 index 57681155eff81a46b7f5a2423f72d6fd7711c157..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.08843499024709066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201703_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201703_D_GLOBAL.out deleted file mode 100644 index 80e930fe7178df59b077b89bf4557c7a85cfdc60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.10937379598617554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201703_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201703_H_GLOBAL.out deleted file mode 100644 index affd24f221aaacb08e8d08cc2da78a7f85a2bdf1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.07980326811472575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201703_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201703_M_GLOBAL.out deleted file mode 100644 index cb6f98e7b9e65025051cbec25f0b2ac0b7ac4211..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.11200177272160848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201704_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201704_D_GLOBAL.out deleted file mode 100644 index 0e5fd1a3ff03fbb003e939b9b212af3756eadb9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.08045015732447307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201704_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201704_H_GLOBAL.out deleted file mode 100644 index 6d7fb39b14650abc064828873be9ee007bebeadb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.07441603342692057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201704_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201704_M_GLOBAL.out deleted file mode 100644 index 73a51cb78bf7562d341c3de2c04a989fb46c8640..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.07494678894678751 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201705_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201705_D_GLOBAL.out deleted file mode 100644 index edbecd5893e6516577448daf70b38746978afa50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.11847695112228393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201705_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201705_H_GLOBAL.out deleted file mode 100644 index 85281707a2029958203ef056103fb34da334a20a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.08041606744130453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201705_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201705_M_GLOBAL.out deleted file mode 100644 index 3a33b9ff7c476b45084e9c503543b2b765b2f719..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.09327478806177775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201706_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201706_D_GLOBAL.out deleted file mode 100644 index 0034d61f38e4eb88acc957536699bedae14b5453..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.08508369127909342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201706_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201706_H_GLOBAL.out deleted file mode 100644 index 36081b8117f9eb5fb4a2e04467fefb2f8a3193ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.07762731711069742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201706_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201706_M_GLOBAL.out deleted file mode 100644 index 6912c6c0e8334b00c7b5f2b904498b771f864594..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.09963440497716268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201707_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201707_D_GLOBAL.out deleted file mode 100644 index 784f1e300fe6f13113fd87985ea9c8f918ef1ef4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.09940601587295532 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201707_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201707_H_GLOBAL.out deleted file mode 100644 index dd6334fbe251fb8497082a098ab67c204fa6832a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.08192804654439291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201707_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201707_M_GLOBAL.out deleted file mode 100644 index 3469b4becebeb7719827dea9655525aba82da30e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.0851070761680603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201708_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201708_D_GLOBAL.out deleted file mode 100644 index c690d57066a945e08df58ac9dcc4e69dfdc2f317..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.09835762977600097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201708_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201708_H_GLOBAL.out deleted file mode 100644 index 89152897fb6d8343bd22bd5938e24b059a2b609d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.0820031444231669 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201708_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201708_M_GLOBAL.out deleted file mode 100644 index c5edd94601cee946bc9afb4c6f1ffac1a460841e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.09059113661448161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201709_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201709_D_GLOBAL.out deleted file mode 100644 index ca22d6cd10d0b20789932130a74e1e79adee5dba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.08829129934310913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201709_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201709_H_GLOBAL.out deleted file mode 100644 index d97ef20ca3af6ed106e7cb26af052a1c1f5e055c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.10406076510747274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201709_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201709_M_GLOBAL.out deleted file mode 100644 index 0238694f90a53a74fe866fec9cc1cfa0e83fa7e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.105107053120931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201710_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201710_D_GLOBAL.out deleted file mode 100644 index 36ccb89317247739bcb62342a27e56991f820fc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.09415442943572998 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201710_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201710_H_GLOBAL.out deleted file mode 100644 index ef1b2b4988b6fc896b7b4c86d92ed0bd2a454616..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.0872783342997233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201710_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201710_M_GLOBAL.out deleted file mode 100644 index 5ec7c650d77bb0c338382617cc6e69b59ffd69ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.07863810459772745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201711_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201711_D_GLOBAL.out deleted file mode 100644 index f592c08d84b11c93bf5a820155d235e64d017dd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.09296322663625081 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201711_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201711_H_GLOBAL.out deleted file mode 100644 index 988e60697f07888fe84489b089d6af42263be011..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.09061232407887777 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201711_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201711_M_GLOBAL.out deleted file mode 100644 index 1a2e103472452393538b57c7b072f97c262b8049..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.08824090560277303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201712_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201712_D_GLOBAL.out deleted file mode 100644 index 8d2d47ea5bfd3378f527afc09cab489017982644..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.09143577019373576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201712_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201712_H_GLOBAL.out deleted file mode 100644 index f32f1e0aa4905f1f69f3f17bd94be1ebaf0372f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.09532952308654785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201712_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201712_M_GLOBAL.out deleted file mode 100644 index 45831453e25a8fe09fbdb506ea6c6503d70ddc9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.08501135508219401 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index 69ec6a53c6599f92f35527444a4982153992fcc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.07997339169184367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index 98d3daada8a1fcfd159776dcd2895f033707da1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.06771072149276733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index 015f736c922fa2c21177bc171e5fb00aa827330a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.07459808985392252 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index de9014cf637907cc29f54beaab9da324d547d3d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.08870409727096558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index 443bb1e7ec91c843956bc2f6e85006e7a9ea6519..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.09437301556269327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index f454d76b9a66b006604ccf8150e4c15d02d14353..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.11709954738616943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index bf30091b1ee1f933d314f4a81a36f5870b95366e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.08794819911321004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index 6d4b43337d27b09142b98e271bea3b08e382dcb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.08328847885131836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index 31cf07a713f9a9c9d8d1065f540b676680e5c888..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.07994624773661295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index 54dca47583b1cffb0b687fd2fc84f75b72eb4290..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.08312591711680094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index c3e322a62fe5b3c83b4cbcbc94e09687767dba26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.07583003441492717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index 2de5311a8731630587673d2fee1b42e5450693ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.1081954042116801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index b28a864df158746a8edcb36760fa8dafa012feed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.10683488845825195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index 45f40602c939b2092a7a1d90de287c93936127fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.0780351718266805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index b56f7b0d7a2c725a59152bc0e832641f12c1b94b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.0854424794514974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index 78d1275171c46adb8197410ea7d340eb4ec7af78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.07569562594095866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index f7b3b8a2ac12b8640a49d47cd7f01830e50c5d6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.07901316086451213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index 07bb3ea699e022421ea6963eb9df27f6f775b8bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.10703648726145426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202006_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202006_D_GLOBAL.out deleted file mode 100644 index df09b15ef06e5e2e0c6c62c1c0022cd682bf5a28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.08149894475936889 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202006_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202006_H_GLOBAL.out deleted file mode 100644 index 41a3b1207fab9bb1222123bb199739a1b5c1af17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.09464452266693116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202006_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202006_M_GLOBAL.out deleted file mode 100644 index b592581011633783d122b87fe23e0e6c19bde119..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.07794044415156047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202007_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202007_D_GLOBAL.out deleted file mode 100644 index 7016781008e806b0c8accd31352b6244e6bac571..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.09221417903900146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202007_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202007_H_GLOBAL.out deleted file mode 100644 index 27148f01494f3b5649f03c91e7345f1e12ffa282..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.10710444450378417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202007_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202007_M_GLOBAL.out deleted file mode 100644 index 40f1149cc37d7e00d2394e442890f9436114210f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.09373141129811605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202008_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202008_D_GLOBAL.out deleted file mode 100644 index eeb9a6aa803a540cbb7bf2f68b1124514a68299a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.07292263905207316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202008_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202008_H_GLOBAL.out deleted file mode 100644 index 23d008878fa4db35dbaf57e3d32c8b18e6f754c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.08041049639383951 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202008_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202008_M_GLOBAL.out deleted file mode 100644 index 47a3bbd81377186ddd64a06975698ed30aa4d3c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.0921867569287618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202009_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202009_D_GLOBAL.out deleted file mode 100644 index b1f37d9b2fa4ccc614229313a3633704e48d36e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.08857230345408122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202009_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202009_H_GLOBAL.out deleted file mode 100644 index 8aae486242fbb3456694da987cfafb76729df780..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.0840248187383016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202009_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202009_M_GLOBAL.out deleted file mode 100644 index d89e009eae145956a2993b2cbfe7e3b4c7f258be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.09887983798980712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202010_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202010_D_GLOBAL.out deleted file mode 100644 index e3968adb7e04743bb6ed500713d03c6cf6913469..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.10762298901875814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202010_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202010_H_GLOBAL.out deleted file mode 100644 index 8cceb889a86ab644b4a2910a6b439f4c5e1f45ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.08688668012619019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202010_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202010_M_GLOBAL.out deleted file mode 100644 index ab05642f7e2fa05540de1a0b23b7bdfb1277832a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.10522969563802083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202011_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202011_D_GLOBAL.out deleted file mode 100644 index 0dd902b15396c8ae2f8bdc0360decd92dddf62a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.08577983776728312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202011_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202011_H_GLOBAL.out deleted file mode 100644 index 9217bc6641d1cd15e3140505aa83faccba12a3fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.07687100172042846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202011_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202011_M_GLOBAL.out deleted file mode 100644 index 35e95e7f73cee7d0c0395c4178b681408eea6b7f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.08263710737228394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202012_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202012_D_GLOBAL.out deleted file mode 100644 index 3ed1b9a3316f03ccd3b29cc8650b1a88d1abee7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.08797196547190349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202012_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202012_H_GLOBAL.out deleted file mode 100644 index 0bef6f7ff8c67bd332a3dade0f6b8f8ee78172da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.11584629615147908 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202012_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202012_M_GLOBAL.out deleted file mode 100644 index b0a387ba0f4fdc59611b7ca3b647f48b50c99815..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.08341705004374186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202101_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202101_D_GLOBAL.out deleted file mode 100644 index 6f75bd1e1a1bba42414837a499f8ec3034b4e555..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.0589310884475708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202101_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202101_H_GLOBAL.out deleted file mode 100644 index 63e1c456f18315ddf6a388379c6873b9a60552da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.0324459711710612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202101_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202101_M_GLOBAL.out deleted file mode 100644 index b988a32eb9d792dd02e13e0b962933d60837684b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.051471968491872154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202102_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202102_D_GLOBAL.out deleted file mode 100644 index ecc9468af61b5976239777d450014dfd7d1d2f3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.045833500226338704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202102_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202102_H_GLOBAL.out deleted file mode 100644 index 9095f3a361175fdd716d0d9a08c55b59857109d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.033456977208455405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202102_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202102_M_GLOBAL.out deleted file mode 100644 index 55491b21a68643e98c1d83906feff45b48dfd42a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.022952512900034586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202103_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202103_D_GLOBAL.out deleted file mode 100644 index d9455bb732f69a1cc604d404ff3ac4e59cfd6254..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.03974138895670573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202103_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202103_H_GLOBAL.out deleted file mode 100644 index b8bcb0d12eeadba5820b05f1bdde5cd478f1c3d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.038889634609222415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202103_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202103_M_GLOBAL.out deleted file mode 100644 index 44ad47739cc3bdd7169ca317a5e172736e204d82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.02773463726043701 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202104_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202104_D_GLOBAL.out deleted file mode 100644 index 6d38fdcfcf1a6c45933fa3115c3eb937dcc7874b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.030864266554514568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202104_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202104_H_GLOBAL.out deleted file mode 100644 index ff220b4162902da8d83dfa885fe4f9a2df7be563..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.027381598949432373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202104_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202104_M_GLOBAL.out deleted file mode 100644 index e84d2ba775254f330363fe656e3fb36e217ce182..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.03938861687978109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202105_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202105_D_GLOBAL.out deleted file mode 100644 index e59cdfa97edf5a94489c88590da43db016bd9807..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.045758434136708576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202105_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202105_H_GLOBAL.out deleted file mode 100644 index 725cfef569ad4f370dce75e29cc9a9c16d05bd87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.026480523745218913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202105_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202105_M_GLOBAL.out deleted file mode 100644 index bc4ea0466c36d44f6cb86cf0bac8afc3f3801afb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.04179725646972656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202106_D_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202106_D_GLOBAL.out deleted file mode 100644 index 8dd1ba0269fab69467738e72dd079fca8227a8df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.048305920759836835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202106_H_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202106_H_GLOBAL.out deleted file mode 100644 index b5ee9f89ebd9c0c836e387c54c5f821a2e2aa4a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.04926571448644002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO/T2/0_202106_M_GLOBAL.out b/run/stage_logs/NAPMD_NO/T2/0_202106_M_GLOBAL.out deleted file mode 100644 index e51892c9df73fed7f591d20436238356b8f18ee6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO/T2/0_202106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.023506049315134683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1979.out b/run/stage_logs/NAPMD_NO2/S1/0_1979.out deleted file mode 100644 index c94688633a0456d0fa83d843e6b31e846de22726..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1979.out +++ /dev/null @@ -1,5 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1979/NO2_1979.csv -325 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1979/NO_1979.csv -325 -- PARSING RAW DATA -0.019159952799479168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1980.out b/run/stage_logs/NAPMD_NO2/S1/0_1980.out deleted file mode 100644 index 57a05de700ea8980b10f4276e521a991433ab946..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1980.out +++ /dev/null @@ -1,7 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1980/NO2_1980.csv -325 -- PARSING RAW DATA -347 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1980/NO_1980.csv -325 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.021473622322082518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1981.out b/run/stage_logs/NAPMD_NO2/S1/0_1981.out deleted file mode 100644 index cd3afa98d481ecb394df8f50ef3cc353f767af55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1981.out +++ /dev/null @@ -1,8 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1981/NO2_1981.csv -325 -- PARSING RAW DATA -347 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1981/NO_1981.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.030016644795735677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1982.out b/run/stage_logs/NAPMD_NO2/S1/0_1982.out deleted file mode 100644 index 51ec3cbc5b12ddfd726a1c8b25122232eff9f75b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1982.out +++ /dev/null @@ -1,11 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1982/NO2_1982.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -347 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1982/NO_1982.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.04129968881607056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1983.out b/run/stage_logs/NAPMD_NO2/S1/0_1983.out deleted file mode 100644 index faafc10d8ccab29e0c39dc66294a6f93c0786374..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1983.out +++ /dev/null @@ -1,15 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1983/NO2_1983.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -347 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1983/NO_1983.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.029571807384490965 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1984.out b/run/stage_logs/NAPMD_NO2/S1/0_1984.out deleted file mode 100644 index fcaeb48f5fda00d395fe35fba022be7c3cefee78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1984.out +++ /dev/null @@ -1,17 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1984/NO2_1984.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -347 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1984/NO_1984.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.09118338425954182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1985.out b/run/stage_logs/NAPMD_NO2/S1/0_1985.out deleted file mode 100644 index f0e042a1cbd3c4598cb22c1c02076d9953fb536f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1985.out +++ /dev/null @@ -1,15 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1985/NO2_1985.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1985/NO_1985.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.05357220967610677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1986.out b/run/stage_logs/NAPMD_NO2/S1/0_1986.out deleted file mode 100644 index ec97b392241c07832538e564c04145c0d259d375..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1986.out +++ /dev/null @@ -1,15 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1986/NO2_1986.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1986/NO_1986.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.05460049311319987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1987.out b/run/stage_logs/NAPMD_NO2/S1/0_1987.out deleted file mode 100644 index c1865e50e0b8fc48721ea0992a0da36c752d3677..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1987.out +++ /dev/null @@ -1,13 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1987/NO2_1987.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1987/NO_1987.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.04755449295043945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1988.out b/run/stage_logs/NAPMD_NO2/S1/0_1988.out deleted file mode 100644 index f3f5db2ce8b63d6235abf2435b62026306c573b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1988.out +++ /dev/null @@ -1,15 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1988/NO2_1988.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1988/NO_1988.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.09821818669637045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1989.out b/run/stage_logs/NAPMD_NO2/S1/0_1989.out deleted file mode 100644 index 375d939cae38fa2a1815f7437c0889ab7a83eac9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1989.out +++ /dev/null @@ -1,15 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1989/NO2_1989.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1989/NO_1989.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.05907773971557617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1990.out b/run/stage_logs/NAPMD_NO2/S1/0_1990.out deleted file mode 100644 index 4f8d116997a0ff689bb2e8548b8c39f9ac4d974f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1990.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1990/NO2_1990.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.03084786335627238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1991.out b/run/stage_logs/NAPMD_NO2/S1/0_1991.out deleted file mode 100644 index c85a8e51a5b9d60eb07fabe6995f1d9a710e462b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1991.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1991/NO2_1991.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.03737209637959798 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1992.out b/run/stage_logs/NAPMD_NO2/S1/0_1992.out deleted file mode 100644 index 93472403b053de8650e1082e90cd88738b6ac852..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1992.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1992/NO2_1992.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.02939664920171102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1993.out b/run/stage_logs/NAPMD_NO2/S1/0_1993.out deleted file mode 100644 index 51b6a4755e3cfefb8b9efc8250ed90ce296b52d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1993.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1993/NO2_1993.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.05741315285364787 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1994.out b/run/stage_logs/NAPMD_NO2/S1/0_1994.out deleted file mode 100644 index d54748dbb90afcbd7d536d1ecbd1582996d01a62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1994.out +++ /dev/null @@ -1,51 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1994/NO2_1994.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -40 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1994/NO_1994.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -40 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.38745541175206505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1995.out b/run/stage_logs/NAPMD_NO2/S1/0_1995.out deleted file mode 100644 index 8e76bfd47e331471e23c2c8b7659095246c1a03f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1995.out +++ /dev/null @@ -1,52 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1995/NO2_1995.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -40 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1995/NO_1995.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -40 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.2398030956586202 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1996.out b/run/stage_logs/NAPMD_NO2/S1/0_1996.out deleted file mode 100644 index 60bfd2aaaac423bd0b30bc13944d3af67b5b4eb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1996.out +++ /dev/null @@ -1,61 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1996/NO2_1996.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1996/NO_1996.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.44433502753575643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1997.out b/run/stage_logs/NAPMD_NO2/S1/0_1997.out deleted file mode 100644 index 952c4b8efb603e0224634b2341fbd3b05ef271cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1997.out +++ /dev/null @@ -1,63 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1997/NO2_1997.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1997/NO_1997.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.34020211299260456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1998.out b/run/stage_logs/NAPMD_NO2/S1/0_1998.out deleted file mode 100644 index f8b07e73852d0e1f304e45068ded895303a1ff2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1998.out +++ /dev/null @@ -1,65 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1998/NO2_1998.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -60 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1998/NO_1998.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -60 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.37727628151575726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_1999.out b/run/stage_logs/NAPMD_NO2/S1/0_1999.out deleted file mode 100644 index 5e02ac37623aeb96a275c04c970ddea972ade984..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_1999.out +++ /dev/null @@ -1,65 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1999/NO2_1999.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -60 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1999/NO_1999.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -60 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.5814791043599447 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2000.out b/run/stage_logs/NAPMD_NO2/S1/0_2000.out deleted file mode 100644 index 61a600a5848f95106010b153b2b74c050119da7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2000.out +++ /dev/null @@ -1,69 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2000/NO2_2000.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2000/NO_2000.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.462181544303894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2001.out b/run/stage_logs/NAPMD_NO2/S1/0_2001.out deleted file mode 100644 index 827cc82d14459a340f7f874d0f3f913f998ca34d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2001.out +++ /dev/null @@ -1,69 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2001/NO2_2001.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2001/NO_2001.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.5589113156000773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2002.out b/run/stage_logs/NAPMD_NO2/S1/0_2002.out deleted file mode 100644 index 3e07153882ece8939c8007c6686bf1d6f07def4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2002.out +++ /dev/null @@ -1,86 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2002/NO2_2002.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -343 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2002/NO_2002.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.761008640130361 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2003.out b/run/stage_logs/NAPMD_NO2/S1/0_2003.out deleted file mode 100644 index 0c0fdd80d2fe7f5183f8eb06b4927c9df736daea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2003.out +++ /dev/null @@ -1,83 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2003/NO2_2003.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2003/NO_2003.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.6483190854390463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2004.out b/run/stage_logs/NAPMD_NO2/S1/0_2004.out deleted file mode 100644 index 4929d9ba429f6f2af5ed7026983b79fa99cb5d7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2004.out +++ /dev/null @@ -1,85 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2004/NO2_2004.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2004/NO_2004.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.5294598738352457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2005.out b/run/stage_logs/NAPMD_NO2/S1/0_2005.out deleted file mode 100644 index c5df3fddb6cd16efee9b91e575c56fe0503f7f4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2005.out +++ /dev/null @@ -1,79 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2005/NO2_2005.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -8 -- PARSING RAW DATA -9 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2005/NO_2005.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -8 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.6439015666643778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2006.out b/run/stage_logs/NAPMD_NO2/S1/0_2006.out deleted file mode 100644 index befb5bb95e75808308703127e572818dbd9f55c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2006.out +++ /dev/null @@ -1,76 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2006/NO2_2006.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2006/NO_2006.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.6507359107335409 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2007.out b/run/stage_logs/NAPMD_NO2/S1/0_2007.out deleted file mode 100644 index bb9bd5d491286283c2e80558b82f39f5ca9edee1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2007.out +++ /dev/null @@ -1,77 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2007/NO2_2007.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2007/NO_2007.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.4977761705716451 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2008.out b/run/stage_logs/NAPMD_NO2/S1/0_2008.out deleted file mode 100644 index 529777fa5ada450022dbfaa245d8033414b8b011..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2008.out +++ /dev/null @@ -1,77 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2008/NO2_2008.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2008/NO_2008.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.5925602912902832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2009.out b/run/stage_logs/NAPMD_NO2/S1/0_2009.out deleted file mode 100644 index 0bafa665838d5dc90c83d7b5f7dbfffdbea9a1e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2009.out +++ /dev/null @@ -1,77 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2009/NO2_2009.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2009/NO_2009.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.5896606365839641 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2010.out b/run/stage_logs/NAPMD_NO2/S1/0_2010.out deleted file mode 100644 index 12c41d13a4115db6a63b5dcc89410b29a56716e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2010.out +++ /dev/null @@ -1,117 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2010/NO2_2010.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -68 -- PARSING RAW DATA -76 -- PARSING RAW DATA -77 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2010/NO_2010.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -68 -- PARSING RAW DATA -76 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.7353124578793844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2011.out b/run/stage_logs/NAPMD_NO2/S1/0_2011.out deleted file mode 100644 index 4f85892544fd8837118ef8682d4ce75388216cf9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2011.out +++ /dev/null @@ -1,121 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2011/NO2_2011.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -76 -- PARSING RAW DATA -77 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2011/NO_2011.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -76 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.9855537851651509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2012.out b/run/stage_logs/NAPMD_NO2/S1/0_2012.out deleted file mode 100644 index c4d4e64b93dd0a57e169e0a33e4f9cfbe6c56011..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2012.out +++ /dev/null @@ -1,132 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2012/NO2_2012.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -336 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -76 -- PARSING RAW DATA -77 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2012/NO_2012.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -76 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.7595462401707967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2013.out b/run/stage_logs/NAPMD_NO2/S1/0_2013.out deleted file mode 100644 index 0e5e2695d03a66f8b432ad525216523b87ef5178..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2013.out +++ /dev/null @@ -1,122 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2013/NO2_2013.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -336 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2013/NO_2013.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.7657663424809774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2014.out b/run/stage_logs/NAPMD_NO2/S1/0_2014.out deleted file mode 100644 index 1f55e02efc41e4e08c3985ebfc3ddc26fdca67cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2014.out +++ /dev/null @@ -1,132 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2014/NO2_2014.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2014/NO_2014.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -34 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.7964032649993896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2015.out b/run/stage_logs/NAPMD_NO2/S1/0_2015.out deleted file mode 100644 index 045446efd12b5fe18e6e12b4133fe04b2deec65f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2015.out +++ /dev/null @@ -1,140 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2015/NO2_2015.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -337 -- PARSING RAW DATA -338 -- PARSING RAW DATA -339 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -98 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2015/NO_2015.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -34 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -1.1445242722829183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2016.out b/run/stage_logs/NAPMD_NO2/S1/0_2016.out deleted file mode 100644 index 6c74084a5fc9368559bf03a30e019f4712ae68e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2016.out +++ /dev/null @@ -1,63 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2016/NO2_2016.csv -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2016/NO_2016.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -34 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.6620540539423625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2017.out b/run/stage_logs/NAPMD_NO2/S1/0_2017.out deleted file mode 100644 index d8b2cb5885246c20e5311131fca035198f20ecb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2017.out +++ /dev/null @@ -1,65 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2017/NO2_2017.csv -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2017/NO_2017.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -103 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -34 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -529 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.5910796999931336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2018.out b/run/stage_logs/NAPMD_NO2/S1/0_2018.out deleted file mode 100644 index 1cf2e3bf620741f3836426e5310a144ccaf27026..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2018.out +++ /dev/null @@ -1,3 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2018/NO2_2018.csv -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2018/NO_2018.csv -0.33284190893173216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2019.out b/run/stage_logs/NAPMD_NO2/S1/0_2019.out deleted file mode 100644 index f64f2b242c551ca83b99268643a765465b6fed55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2019.out +++ /dev/null @@ -1,3 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/NO2_2019.csv -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/NO_2019.csv -0.4204927007357279 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2020.out b/run/stage_logs/NAPMD_NO2/S1/0_2020.out deleted file mode 100644 index 900d29a6f70128111b2ade16bdd2c34df0eab7e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2020.out +++ /dev/null @@ -1,150 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/NO2_2020.csv -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -103 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -24 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -28 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -35 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -366 -- PARSING RAW DATA -368 -- PARSING RAW DATA -369 -- PARSING RAW DATA -37 -- PARSING RAW DATA -370 -- PARSING RAW DATA -372 -- PARSING RAW DATA -373 -- PARSING RAW DATA -374 -- PARSING RAW DATA -375 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -530 -- PARSING RAW DATA -534 -- PARSING RAW DATA -540 -- PARSING RAW DATA -547 -- PARSING RAW DATA -551 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -73 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -98 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/NO_2020.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -24 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -28 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -34 -- PARSING RAW DATA -35 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -366 -- PARSING RAW DATA -368 -- PARSING RAW DATA -369 -- PARSING RAW DATA -37 -- PARSING RAW DATA -370 -- PARSING RAW DATA -372 -- PARSING RAW DATA -373 -- PARSING RAW DATA -374 -- PARSING RAW DATA -375 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -534 -- PARSING RAW DATA -540 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.9895131111145019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S1/0_2021.out b/run/stage_logs/NAPMD_NO2/S1/0_2021.out deleted file mode 100644 index 09becba3d20ee8ee0037640df632019ab5a20682..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S1/0_2021.out +++ /dev/null @@ -1,19 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2021/NO2_2021.csv -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2021/NO_2021.csv -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -0.05473335186640422 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_100_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_100_CL(IMC).out deleted file mode 100644 index 923d2aeeefcec107b21a4fee58e4efe40d3f7892..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_100_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -100_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-31 13:00:00 1060313160 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1060313160_1060838700.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/100_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06380975246429443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_101_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_101_CL(IMC).out deleted file mode 100644 index ad8e0f0854608fab87a782bfce9c9205d85755b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_101_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -101_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-31 13:00:00 1060313160 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1060313160_1060838700.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/101_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06466430028279622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_102_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_102_CL(IMC).out deleted file mode 100644 index a1b13baba7a49a9608737e13fce68cddf0709d45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_102_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -102_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-31 13:00:00 1060313160 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1060313160_1060838700.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/102_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05744696458180745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_103_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_103_CL(IMC).out deleted file mode 100644 index a91338e6b0a2c5a595420eeaf2eeece18994570e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_103_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -103_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013902048269907633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_104_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_104_CL(IMC).out deleted file mode 100644 index 869202080bdef8d60dc8ddfc95ca83c518c09cc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_104_CL(IMC).out +++ /dev/null @@ -1,24 +0,0 @@ -104_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-01-31 13:00:00 1059786120 1059830700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/104_CL(IMC)_1059786120_1059830700.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06142865816752116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_105_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_105_CL(IMC).out deleted file mode 100644 index 46fba79c9cd74d98be2ac96ca71601882d388a3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_105_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -105_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 16:00:00 2010-12-23 00:00:00 1056631200 1057144320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1056631200_1057144320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1056631200_1057144320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1056631200_1057144320.npz -'StationConcatenate' object has no attribute 'existing_data' -2011-02-05 14:00:00 2011-12-31 13:00:00 1057208520 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1057208520_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1057208520_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1057208520_1057682220.npz -2011-12-31 13:00:00 2012-12-31 13:00:00 1057682220 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1057682220_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1057682220_1058209260.npz -2012-12-31 13:00:00 2013-01-16 03:00:00 1058209260 1058231700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1058209260_1058231700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1058209260_1058231700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1058209260_1058231700.npz -2014-02-06 06:00:00 2014-12-31 13:00:00 1058787720 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1058787720_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1058787720_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1058787720_1059260460.npz -2014-12-31 13:00:00 2015-11-03 23:00:00 1059260460 1059703140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1059260460_1059703140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1059260460_1059703140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/105_CL(IMC)_1059260460_1059703140.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.047334404786427815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_107_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_107_CL(IMC).out deleted file mode 100644 index 19be49162dfad408c0fb4a33a9c7a9be4c1afbd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_107_CL(IMC).out +++ /dev/null @@ -1,25 +0,0 @@ -107_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2010-01-04 00:00:00 2010-12-31 13:00:00 1056636000 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1056636000_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1056636000_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1056636000_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-01-10 19:00:00 1057156680 1057171380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1057156680_1057171380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1057156680_1057171380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1057156680_1057171380.npz -2012-05-11 03:00:00 2012-12-31 13:00:00 1057871700 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1057871700_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1057871700_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1057871700_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-31 13:00:00 1060313160 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/107_CL(IMC)_1060313160_1060838700.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.059662504990895586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_108_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_108_CL(IMC).out deleted file mode 100644 index 3077a5d12a16536d4fa9ba6bbef97439437aecde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_108_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -108_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-31 13:00:00 1060313160 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1060313160_1060838700.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/108_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.059176592032114665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_109_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_109_CL(IMC).out deleted file mode 100644 index 5f75aebc6b6b99b391a66638fc8310936a494d9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_109_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -109_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1057156680_1057682220.npz -2011-12-31 13:00:00 2012-12-31 13:00:00 1057682220 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1057682220_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1057682220_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-31 13:00:00 1060313160 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1060313160_1060838700.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/109_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.07136499881744385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_110_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_110_CL(IMC).out deleted file mode 100644 index a23380651d4d1fc4a79c545f563a3fa8ac6d8798..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_110_CL(IMC).out +++ /dev/null @@ -1,2632 +0,0 @@ -110_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2010-01-04 01:00:00 2010-01-21 01:00:00 1056636060 1056660540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-01-21 01:00:00 2010-01-21 03:00:00 1056660540 1056660660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-21 03:00:00 2010-01-22 00:00:00 1056660660 1056661920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-22 00:00:00 2010-01-22 04:00:00 1056661920 1056662160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-22 04:00:00 2010-01-23 01:00:00 1056662160 1056663420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-23 01:00:00 2010-01-23 05:00:00 1056663420 1056663660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-23 05:00:00 2010-01-23 07:00:00 1056663660 1056663780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-23 07:00:00 2010-01-23 08:00:00 1056663780 1056663840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-23 08:00:00 2010-01-23 22:00:00 1056663840 1056664680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-23 22:00:00 2010-01-24 05:00:00 1056664680 1056665100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-24 05:00:00 2010-01-24 07:00:00 1056665100 1056665220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-24 07:00:00 2010-01-24 09:00:00 1056665220 1056665340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-24 09:00:00 2010-01-25 00:00:00 1056665340 1056666240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-25 00:00:00 2010-01-25 05:00:00 1056666240 1056666540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-25 05:00:00 2010-01-25 06:00:00 1056666540 1056666600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-25 06:00:00 2010-01-25 08:00:00 1056666600 1056666720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-25 08:00:00 2010-01-26 00:00:00 1056666720 1056667680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-26 00:00:00 2010-01-26 09:00:00 1056667680 1056668220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-26 09:00:00 2010-01-27 00:00:00 1056668220 1056669120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-27 00:00:00 2010-01-27 05:00:00 1056669120 1056669420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-27 05:00:00 2010-01-28 01:00:00 1056669420 1056670620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-28 01:00:00 2010-01-28 05:00:00 1056670620 1056670860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-28 05:00:00 2010-01-28 10:00:00 1056670860 1056671160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-28 10:00:00 2010-01-28 11:00:00 1056671160 1056671220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-28 11:00:00 2010-01-29 00:00:00 1056671220 1056672000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-29 00:00:00 2010-01-29 01:00:00 1056672000 1056672060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-29 01:00:00 2010-01-29 23:00:00 1056672060 1056673380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-29 23:00:00 2010-01-30 04:00:00 1056673380 1056673680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-30 04:00:00 2010-01-30 21:00:00 1056673680 1056674700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-30 21:00:00 2010-01-31 00:00:00 1056674700 1056674880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-31 00:00:00 2010-01-31 01:00:00 1056674880 1056674940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-31 01:00:00 2010-01-31 04:00:00 1056674940 1056675120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-31 04:00:00 2010-01-31 05:00:00 1056675120 1056675180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-31 05:00:00 2010-01-31 12:00:00 1056675180 1056675600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-31 12:00:00 2010-01-31 13:00:00 1056675600 1056675660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-31 13:00:00 2010-01-31 17:00:00 1056675660 1056675900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-31 17:00:00 2010-01-31 18:00:00 1056675900 1056675960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-31 18:00:00 2010-01-31 19:00:00 1056675960 1056676020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-01-31 19:00:00 2010-01-31 21:00:00 1056676020 1056676140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-01-31 21:00:00 2010-02-01 01:00:00 1056676140 1056676380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-01 01:00:00 2010-02-01 04:00:00 1056676380 1056676560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-01 04:00:00 2010-02-01 06:00:00 1056676560 1056676680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-01 06:00:00 2010-02-01 07:00:00 1056676680 1056676740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-01 07:00:00 2010-02-01 10:00:00 1056676740 1056676920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-01 10:00:00 2010-02-01 11:00:00 1056676920 1056676980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-01 11:00:00 2010-02-01 15:00:00 1056676980 1056677220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-01 15:00:00 2010-02-01 16:00:00 1056677220 1056677280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-01 16:00:00 2010-02-01 17:00:00 1056677280 1056677340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-01 17:00:00 2010-02-01 20:00:00 1056677340 1056677520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-01 20:00:00 2010-02-01 22:00:00 1056677520 1056677640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-01 22:00:00 2010-02-02 01:00:00 1056677640 1056677820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-02 01:00:00 2010-02-02 02:00:00 1056677820 1056677880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-02 02:00:00 2010-02-02 03:00:00 1056677880 1056677940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-02 03:00:00 2010-02-02 08:00:00 1056677940 1056678240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-02 08:00:00 2010-02-02 19:00:00 1056678240 1056678900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-02 19:00:00 2010-02-02 21:00:00 1056678900 1056679020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-02 21:00:00 2010-02-02 22:00:00 1056679020 1056679080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-02 22:00:00 2010-02-03 03:00:00 1056679080 1056679380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-03 03:00:00 2010-02-03 05:00:00 1056679380 1056679500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-03 05:00:00 2010-02-03 06:00:00 1056679500 1056679560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-03 06:00:00 2010-02-03 07:00:00 1056679560 1056679620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-03 07:00:00 2010-02-03 11:00:00 1056679620 1056679860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-03 11:00:00 2010-02-03 22:00:00 1056679860 1056680520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-03 22:00:00 2010-02-04 08:00:00 1056680520 1056681120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-04 08:00:00 2010-02-04 09:00:00 1056681120 1056681180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-04 09:00:00 2010-02-04 10:00:00 1056681180 1056681240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-04 10:00:00 2010-02-04 14:00:00 1056681240 1056681480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-04 14:00:00 2010-02-04 15:00:00 1056681480 1056681540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-04 15:00:00 2010-02-04 20:00:00 1056681540 1056681840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-04 20:00:00 2010-02-05 08:00:00 1056681840 1056682560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-05 08:00:00 2010-02-05 13:00:00 1056682560 1056682860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-05 13:00:00 2010-02-05 14:00:00 1056682860 1056682920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-05 14:00:00 2010-02-05 15:00:00 1056682920 1056682980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-05 15:00:00 2010-02-05 16:00:00 1056682980 1056683040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-05 16:00:00 2010-02-05 20:00:00 1056683040 1056683280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-05 20:00:00 2010-02-05 21:00:00 1056683280 1056683340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-05 21:00:00 2010-02-06 00:00:00 1056683340 1056683520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-06 00:00:00 2010-02-06 09:00:00 1056683520 1056684060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-06 09:00:00 2010-02-06 14:00:00 1056684060 1056684360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-06 14:00:00 2010-02-06 18:00:00 1056684360 1056684600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-06 18:00:00 2010-02-07 00:00:00 1056684600 1056684960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-07 00:00:00 2010-02-07 01:00:00 1056684960 1056685020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-07 01:00:00 2010-02-07 02:00:00 1056685020 1056685080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-07 02:00:00 2010-02-07 03:00:00 1056685080 1056685140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-07 04:00:00 2010-02-07 05:00:00 1056685200 1056685260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-07 05:00:00 2010-02-07 06:00:00 1056685260 1056685320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-07 06:00:00 2010-02-07 09:00:00 1056685320 1056685500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-07 09:00:00 2010-02-07 10:00:00 1056685500 1056685560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-07 10:00:00 2010-02-07 18:00:00 1056685560 1056686040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-07 18:00:00 2010-02-07 19:00:00 1056686040 1056686100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-07 19:00:00 2010-02-07 23:00:00 1056686100 1056686340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-07 23:00:00 2010-02-08 05:00:00 1056686340 1056686700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-08 05:00:00 2010-02-08 06:00:00 1056686700 1056686760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-08 06:00:00 2010-02-08 07:00:00 1056686760 1056686820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-08 07:00:00 2010-02-08 09:00:00 1056686820 1056686940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-08 09:00:00 2010-02-09 01:00:00 1056686940 1056687900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-09 01:00:00 2010-02-09 03:00:00 1056687900 1056688020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-09 03:00:00 2010-02-09 06:00:00 1056688020 1056688200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-09 06:00:00 2010-02-09 08:00:00 1056688200 1056688320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-09 08:00:00 2010-02-09 22:00:00 1056688320 1056689160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-09 22:00:00 2010-02-09 23:00:00 1056689160 1056689220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-09 23:00:00 2010-02-10 22:00:00 1056689220 1056690600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-10 22:00:00 2010-02-11 00:00:00 1056690600 1056690720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-11 00:00:00 2010-02-11 02:00:00 1056690720 1056690840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-11 02:00:00 2010-02-11 03:00:00 1056690840 1056690900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-11 03:00:00 2010-02-12 03:00:00 1056690900 1056692340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-12 03:00:00 2010-02-12 05:00:00 1056692340 1056692460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-12 05:00:00 2010-02-12 19:00:00 1056692460 1056693300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-12 19:00:00 2010-02-12 20:00:00 1056693300 1056693360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-12 20:00:00 2010-02-13 01:00:00 1056693360 1056693660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-13 01:00:00 2010-02-13 02:00:00 1056693660 1056693720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-13 02:00:00 2010-02-13 03:00:00 1056693720 1056693780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-13 03:00:00 2010-02-13 04:00:00 1056693780 1056693840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-13 04:00:00 2010-02-13 05:00:00 1056693840 1056693900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-13 05:00:00 2010-02-13 06:00:00 1056693900 1056693960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-13 06:00:00 2010-02-13 21:00:00 1056693960 1056694860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-13 21:00:00 2010-02-13 23:00:00 1056694860 1056694980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-13 23:00:00 2010-02-14 00:00:00 1056694980 1056695040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-14 00:00:00 2010-02-14 01:00:00 1056695040 1056695100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-14 01:00:00 2010-02-14 02:00:00 1056695100 1056695160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-14 02:00:00 2010-02-14 09:00:00 1056695160 1056695580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-14 09:00:00 2010-02-14 10:00:00 1056695580 1056695640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-14 10:00:00 2010-02-14 11:00:00 1056695640 1056695700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-14 11:00:00 2010-02-15 01:00:00 1056695700 1056696540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-15 01:00:00 2010-02-15 08:00:00 1056696540 1056696960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-15 08:00:00 2010-02-15 18:00:00 1056696960 1056697560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-15 18:00:00 2010-02-15 22:00:00 1056697560 1056697800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-15 22:00:00 2010-02-16 04:00:00 1056697800 1056698160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-16 04:00:00 2010-02-16 06:00:00 1056698160 1056698280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-16 06:00:00 2010-02-16 14:00:00 1056698280 1056698760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-16 14:00:00 2010-02-16 17:00:00 1056698760 1056698940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-16 17:00:00 2010-02-16 20:00:00 1056698940 1056699120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-16 20:00:00 2010-02-16 23:00:00 1056699120 1056699300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-16 23:00:00 2010-02-17 00:00:00 1056699300 1056699360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-17 00:00:00 2010-02-17 04:00:00 1056699360 1056699600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-17 04:00:00 2010-02-17 10:00:00 1056699600 1056699960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-17 10:00:00 2010-02-17 16:00:00 1056699960 1056700320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-17 16:00:00 2010-02-17 17:00:00 1056700320 1056700380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-17 17:00:00 2010-02-17 18:00:00 1056700380 1056700440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-17 18:00:00 2010-02-17 20:00:00 1056700440 1056700560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-17 20:00:00 2010-02-17 22:00:00 1056700560 1056700680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-17 22:00:00 2010-02-18 01:00:00 1056700680 1056700860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-18 01:00:00 2010-02-18 05:00:00 1056700860 1056701100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-18 05:00:00 2010-02-19 01:00:00 1056701100 1056702300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-19 01:00:00 2010-02-19 03:00:00 1056702300 1056702420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-19 03:00:00 2010-02-19 04:00:00 1056702420 1056702480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-19 04:00:00 2010-02-19 05:00:00 1056702480 1056702540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-19 05:00:00 2010-02-20 00:00:00 1056702540 1056703680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-20 00:00:00 2010-02-20 01:00:00 1056703680 1056703740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-20 01:00:00 2010-02-20 02:00:00 1056703740 1056703800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-20 02:00:00 2010-02-20 03:00:00 1056703800 1056703860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-20 03:00:00 2010-02-20 04:00:00 1056703860 1056703920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-20 04:00:00 2010-02-20 05:00:00 1056703920 1056703980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-20 05:00:00 2010-02-20 06:00:00 1056703980 1056704040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-20 06:00:00 2010-02-20 07:00:00 1056704040 1056704100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-20 07:00:00 2010-02-20 08:00:00 1056704100 1056704160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-20 08:00:00 2010-02-20 11:00:00 1056704160 1056704340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-20 11:00:00 2010-02-21 00:00:00 1056704340 1056705120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-21 00:00:00 2010-02-21 01:00:00 1056705120 1056705180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-21 01:00:00 2010-02-21 04:00:00 1056705180 1056705360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-21 04:00:00 2010-02-21 07:00:00 1056705360 1056705540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-21 07:00:00 2010-02-21 10:00:00 1056705540 1056705720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-21 10:00:00 2010-02-21 13:00:00 1056705720 1056705900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-21 13:00:00 2010-02-22 01:00:00 1056705900 1056706620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-22 01:00:00 2010-02-22 03:00:00 1056706620 1056706740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-22 03:00:00 2010-02-22 04:00:00 1056706740 1056706800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-22 04:00:00 2010-02-22 05:00:00 1056706800 1056706860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-22 05:00:00 2010-02-22 06:00:00 1056706860 1056706920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-22 06:00:00 2010-02-22 09:00:00 1056706920 1056707100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-22 09:00:00 2010-02-24 13:00:00 1056707100 1056710220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-24 13:00:00 2010-02-24 14:00:00 1056710220 1056710280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-24 14:00:00 2010-02-24 22:00:00 1056710280 1056710760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-24 22:00:00 2010-02-24 23:00:00 1056710760 1056710820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-24 23:00:00 2010-02-26 00:00:00 1056710820 1056712320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-26 00:00:00 2010-02-26 02:00:00 1056712320 1056712440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-26 02:00:00 2010-02-26 03:00:00 1056712440 1056712500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-26 03:00:00 2010-02-26 04:00:00 1056712500 1056712560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-26 04:00:00 2010-02-26 06:00:00 1056712560 1056712680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-26 06:00:00 2010-02-26 07:00:00 1056712680 1056712740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-26 07:00:00 2010-02-27 00:00:00 1056712740 1056713760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-27 00:00:00 2010-02-27 01:00:00 1056713760 1056713820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-27 01:00:00 2010-02-27 05:00:00 1056713820 1056714060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-27 05:00:00 2010-02-27 07:00:00 1056714060 1056714180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-27 07:00:00 2010-02-27 12:00:00 1056714180 1056714480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-27 12:00:00 2010-02-27 13:00:00 1056714480 1056714540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-27 13:00:00 2010-02-27 18:00:00 1056714540 1056714840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-27 18:00:00 2010-02-27 20:00:00 1056714840 1056714960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-27 22:00:00 2010-02-27 23:00:00 1056715080 1056715140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-27 23:00:00 2010-02-28 01:00:00 1056715140 1056715260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-28 01:00:00 2010-02-28 03:00:00 1056715260 1056715380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-28 03:00:00 2010-02-28 05:00:00 1056715380 1056715500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-28 05:00:00 2010-02-28 06:00:00 1056715500 1056715560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-28 06:00:00 2010-02-28 09:00:00 1056715560 1056715740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-02-28 09:00:00 2010-02-28 12:00:00 1056715740 1056715920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-02-28 12:00:00 2010-02-28 15:00:00 1056715920 1056716100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-02-28 15:00:00 2010-03-01 00:00:00 1056716100 1056716640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-01 00:00:00 2010-03-01 03:00:00 1056716640 1056716820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-01 03:00:00 2010-03-01 13:00:00 1056716820 1056717420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-01 13:00:00 2010-03-01 14:00:00 1056717420 1056717480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-01 14:00:00 2010-03-02 00:00:00 1056717480 1056718080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-02 00:00:00 2010-03-02 01:00:00 1056718080 1056718140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-02 01:00:00 2010-03-02 02:00:00 1056718140 1056718200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-02 03:00:00 2010-03-02 12:00:00 1056718260 1056718800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-02 12:00:00 2010-03-03 02:00:00 1056718800 1056719640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-03 02:00:00 2010-03-03 05:00:00 1056719640 1056719820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-03 05:00:00 2010-03-03 06:00:00 1056719820 1056719880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-03 06:00:00 2010-03-03 12:00:00 1056719880 1056720240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-03 12:00:00 2010-03-03 13:00:00 1056720240 1056720300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-03 13:00:00 2010-03-03 14:00:00 1056720300 1056720360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-03 14:00:00 2010-03-03 17:00:00 1056720360 1056720540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-03 17:00:00 2010-03-05 00:00:00 1056720540 1056722400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-05 00:00:00 2010-03-05 01:00:00 1056722400 1056722460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-05 01:00:00 2010-03-05 02:00:00 1056722460 1056722520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-05 02:00:00 2010-03-05 03:00:00 1056722520 1056722580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-05 03:00:00 2010-03-06 18:00:00 1056722580 1056724920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-06 18:00:00 2010-03-06 21:00:00 1056724920 1056725100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-06 21:00:00 2010-03-06 23:00:00 1056725100 1056725220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-06 23:00:00 2010-03-08 16:00:00 1056725220 1056727680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-08 16:00:00 2010-03-08 20:00:00 1056727680 1056727920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-08 20:00:00 2010-03-10 06:00:00 1056727920 1056729960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-10 06:00:00 2010-03-10 07:00:00 1056729960 1056730020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-10 07:00:00 2010-03-14 00:00:00 1056730020 1056735360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-14 00:00:00 2010-03-14 01:00:00 1056735360 1056735420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-14 01:00:00 2010-03-14 17:00:00 1056735420 1056736380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-14 17:00:00 2010-03-14 19:00:00 1056736380 1056736500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-14 19:00:00 2010-03-14 20:00:00 1056736500 1056736560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-14 20:00:00 2010-03-15 01:00:00 1056736560 1056736860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-15 01:00:00 2010-03-15 04:00:00 1056736860 1056737040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-15 04:00:00 2010-03-15 05:00:00 1056737040 1056737100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-15 05:00:00 2010-03-15 09:00:00 1056737100 1056737340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-15 09:00:00 2010-03-15 10:00:00 1056737340 1056737400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-15 10:00:00 2010-03-16 01:00:00 1056737400 1056738300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-16 01:00:00 2010-03-16 02:00:00 1056738300 1056738360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-16 02:00:00 2010-03-16 03:00:00 1056738360 1056738420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-16 03:00:00 2010-03-16 04:00:00 1056738420 1056738480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-16 04:00:00 2010-03-16 05:00:00 1056738480 1056738540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-16 05:00:00 2010-03-16 06:00:00 1056738540 1056738600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-16 06:00:00 2010-03-17 01:00:00 1056738600 1056739740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-17 01:00:00 2010-03-17 02:00:00 1056739740 1056739800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-17 02:00:00 2010-03-18 03:00:00 1056739800 1056741300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-18 03:00:00 2010-03-18 04:00:00 1056741300 1056741360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-18 04:00:00 2010-03-18 05:00:00 1056741360 1056741420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-18 05:00:00 2010-03-18 06:00:00 1056741420 1056741480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-18 06:00:00 2010-03-18 22:00:00 1056741480 1056742440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-18 22:00:00 2010-03-19 00:00:00 1056742440 1056742560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-19 00:00:00 2010-03-19 01:00:00 1056742560 1056742620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-19 01:00:00 2010-03-19 03:00:00 1056742620 1056742740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-19 03:00:00 2010-03-19 06:00:00 1056742740 1056742920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-19 06:00:00 2010-03-19 07:00:00 1056742920 1056742980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-19 07:00:00 2010-03-19 23:00:00 1056742980 1056743940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-19 23:00:00 2010-03-20 03:00:00 1056743940 1056744180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-20 03:00:00 2010-03-20 21:00:00 1056744180 1056745260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-20 21:00:00 2010-03-20 22:00:00 1056745260 1056745320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-20 22:00:00 2010-03-21 00:00:00 1056745320 1056745440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-21 00:00:00 2010-03-21 03:00:00 1056745440 1056745620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-21 03:00:00 2010-03-21 04:00:00 1056745620 1056745680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-21 04:00:00 2010-03-21 06:00:00 1056745680 1056745800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-21 06:00:00 2010-03-21 14:00:00 1056745800 1056746280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-21 14:00:00 2010-03-21 16:00:00 1056746280 1056746400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-21 16:00:00 2010-03-21 17:00:00 1056746400 1056746460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-21 17:00:00 2010-03-21 20:00:00 1056746460 1056746640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-21 20:00:00 2010-03-23 23:00:00 1056746640 1056749700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-23 23:00:00 2010-03-24 00:00:00 1056749700 1056749760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-24 00:00:00 2010-03-24 06:00:00 1056749760 1056750120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-24 06:00:00 2010-03-24 07:00:00 1056750120 1056750180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-24 07:00:00 2010-03-25 00:00:00 1056750180 1056751200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-25 00:00:00 2010-03-25 01:00:00 1056751200 1056751260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-25 01:00:00 2010-03-25 02:00:00 1056751260 1056751320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-25 02:00:00 2010-03-25 04:00:00 1056751320 1056751440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-25 04:00:00 2010-03-25 06:00:00 1056751440 1056751560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-25 06:00:00 2010-03-25 07:00:00 1056751560 1056751620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-25 07:00:00 2010-03-25 18:00:00 1056751620 1056752280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-25 18:00:00 2010-03-25 19:00:00 1056752280 1056752340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-25 19:00:00 2010-03-26 01:00:00 1056752340 1056752700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-26 01:00:00 2010-03-26 02:00:00 1056752700 1056752760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-26 02:00:00 2010-03-26 15:00:00 1056752760 1056753540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-26 15:00:00 2010-03-26 21:00:00 1056753540 1056753900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-26 21:00:00 2010-03-26 23:00:00 1056753900 1056754020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-26 23:00:00 2010-03-27 03:00:00 1056754020 1056754260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-27 03:00:00 2010-03-27 04:00:00 1056754260 1056754320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-27 04:00:00 2010-03-27 05:00:00 1056754320 1056754380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-27 05:00:00 2010-03-27 23:00:00 1056754380 1056755460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-27 23:00:00 2010-03-28 01:00:00 1056755460 1056755580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-28 01:00:00 2010-03-28 02:00:00 1056755580 1056755640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-28 02:00:00 2010-03-28 04:00:00 1056755640 1056755760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-28 04:00:00 2010-03-28 11:00:00 1056755760 1056756180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-28 11:00:00 2010-03-28 12:00:00 1056756180 1056756240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-28 12:00:00 2010-03-29 03:00:00 1056756240 1056757140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-29 03:00:00 2010-03-29 05:00:00 1056757140 1056757260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-29 05:00:00 2010-03-29 12:00:00 1056757260 1056757680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-29 12:00:00 2010-03-29 22:00:00 1056757680 1056758280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-29 22:00:00 2010-03-30 00:00:00 1056758280 1056758400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-30 00:00:00 2010-03-30 01:00:00 1056758400 1056758460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-03-30 01:00:00 2010-03-30 20:00:00 1056758460 1056759600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-03-30 20:00:00 2010-03-30 22:00:00 1056759600 1056759720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-03-30 22:00:00 2010-04-01 05:00:00 1056759720 1056761580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-01 05:00:00 2010-04-01 06:00:00 1056761580 1056761640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-01 06:00:00 2010-04-02 03:00:00 1056761640 1056762900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-02 03:00:00 2010-04-02 04:00:00 1056762900 1056762960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-02 04:00:00 2010-04-02 08:00:00 1056762960 1056763200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-02 08:00:00 2010-04-02 09:00:00 1056763200 1056763260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-02 09:00:00 2010-04-03 01:00:00 1056763260 1056764220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-03 01:00:00 2010-04-03 03:00:00 1056764220 1056764340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-03 03:00:00 2010-04-04 03:00:00 1056764340 1056765780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-04 03:00:00 2010-04-04 04:00:00 1056765780 1056765840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-04 04:00:00 2010-04-05 01:00:00 1056765840 1056767100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-05 01:00:00 2010-04-05 02:00:00 1056767100 1056767160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-05 02:00:00 2010-04-06 00:00:00 1056767160 1056768480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-06 00:00:00 2010-04-06 03:00:00 1056768480 1056768660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-06 03:00:00 2010-04-06 20:00:00 1056768660 1056769680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-06 20:00:00 2010-04-06 21:00:00 1056769680 1056769740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-04-06 21:00:00 2010-04-07 02:00:00 1056769740 1056770040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-07 02:00:00 2010-04-07 04:00:00 1056770040 1056770160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-07 04:00:00 2010-04-08 18:00:00 1056770160 1056772440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-08 19:00:00 2010-04-08 21:00:00 1056772500 1056772620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-04-08 21:00:00 2010-04-09 00:00:00 1056772620 1056772800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-09 00:00:00 2010-04-09 01:00:00 1056772800 1056772860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-09 01:00:00 2010-04-09 03:00:00 1056772860 1056772980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-09 03:00:00 2010-04-09 04:00:00 1056772980 1056773040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-09 04:00:00 2010-04-11 01:00:00 1056773040 1056775740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-11 01:00:00 2010-04-11 02:00:00 1056775740 1056775800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-11 02:00:00 2010-04-15 01:00:00 1056775800 1056781500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-15 01:00:00 2010-04-15 03:00:00 1056781500 1056781620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-15 03:00:00 2010-04-15 06:00:00 1056781620 1056781800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-15 06:00:00 2010-04-15 07:00:00 1056781800 1056781860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-15 07:00:00 2010-04-16 23:00:00 1056781860 1056784260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-16 23:00:00 2010-04-17 01:00:00 1056784260 1056784380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-17 01:00:00 2010-04-17 04:00:00 1056784380 1056784560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-17 04:00:00 2010-04-17 05:00:00 1056784560 1056784620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-17 05:00:00 2010-04-17 06:00:00 1056784620 1056784680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-17 06:00:00 2010-04-17 07:00:00 1056784680 1056784740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-17 07:00:00 2010-04-17 19:00:00 1056784740 1056785460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-17 19:00:00 2010-04-17 22:00:00 1056785460 1056785640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-04-17 22:00:00 2010-04-18 00:00:00 1056785640 1056785760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-18 00:00:00 2010-04-18 01:00:00 1056785760 1056785820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-18 01:00:00 2010-04-18 19:00:00 1056785820 1056786900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-18 19:00:00 2010-04-18 21:00:00 1056786900 1056787020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-04-18 21:00:00 2010-04-18 23:00:00 1056787020 1056787140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-18 23:00:00 2010-04-19 00:00:00 1056787140 1056787200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-19 00:00:00 2010-04-20 10:00:00 1056787200 1056789240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-20 10:00:00 2010-04-21 06:00:00 1056789240 1056790440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-04-21 06:00:00 2010-04-21 14:00:00 1056790440 1056790920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-21 14:00:00 2010-04-21 16:00:00 1056790920 1056791040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-04-21 16:00:00 2010-04-21 17:00:00 1056791040 1056791100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-21 17:00:00 2010-04-21 18:00:00 1056791100 1056791160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-04-21 18:00:00 2010-04-21 19:00:00 1056791160 1056791220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-21 19:00:00 2010-04-21 22:00:00 1056791220 1056791400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-04-21 22:00:00 2010-04-22 02:00:00 1056791400 1056791640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-22 02:00:00 2010-04-22 04:00:00 1056791640 1056791760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-22 04:00:00 2010-04-22 05:00:00 1056791760 1056791820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-22 05:00:00 2010-04-22 06:00:00 1056791820 1056791880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-22 06:00:00 2010-04-22 20:00:00 1056791880 1056792720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-22 20:00:00 2010-04-22 22:00:00 1056792720 1056792840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-04-22 22:00:00 2010-04-23 01:00:00 1056792840 1056793020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-23 01:00:00 2010-04-23 03:00:00 1056793020 1056793140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-23 03:00:00 2010-04-23 14:00:00 1056793140 1056793800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-23 14:00:00 2010-04-23 21:00:00 1056793800 1056794220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-04-23 21:00:00 2010-04-23 23:00:00 1056794220 1056794340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-23 23:00:00 2010-04-24 01:00:00 1056794340 1056794460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-24 01:00:00 2010-04-24 16:00:00 1056794460 1056795360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-24 16:00:00 2010-04-24 21:00:00 1056795360 1056795660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-04-24 21:00:00 2010-04-30 01:00:00 1056795660 1056803100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-04-30 01:00:00 2010-04-30 02:00:00 1056803100 1056803160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-04-30 02:00:00 2010-05-01 02:00:00 1056803160 1056804600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-01 02:00:00 2010-05-01 04:00:00 1056804600 1056804720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-05-01 04:00:00 2010-05-02 00:00:00 1056804720 1056805920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-02 00:00:00 2010-05-02 02:00:00 1056805920 1056806040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-05-02 02:00:00 2010-05-04 16:00:00 1056806040 1056809760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-04 16:00:00 2010-05-04 22:00:00 1056809760 1056810120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-05-04 22:00:00 2010-05-05 16:00:00 1056810120 1056811200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-05 16:00:00 2010-05-05 21:00:00 1056811200 1056811500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-05-05 21:00:00 2010-05-08 03:00:00 1056811500 1056814740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-08 03:00:00 2010-05-08 04:00:00 1056814740 1056814800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-05-08 04:00:00 2010-05-09 02:00:00 1056814800 1056816120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-09 02:00:00 2010-05-09 04:00:00 1056816120 1056816240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-05-09 04:00:00 2010-05-10 00:00:00 1056816240 1056817440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-10 00:00:00 2010-05-10 04:00:00 1056817440 1056817680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-05-10 04:00:00 2010-05-11 13:00:00 1056817680 1056819660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-11 13:00:00 2010-05-11 21:00:00 1056819660 1056820140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-05-11 21:00:00 2010-05-20 02:00:00 1056820140 1056831960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-20 02:00:00 2010-05-20 04:00:00 1056831960 1056832080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-05-20 04:00:00 2010-05-21 16:00:00 1056832080 1056834240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-21 16:00:00 2010-05-21 22:00:00 1056834240 1056834600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-05-21 22:00:00 2010-05-23 02:00:00 1056834600 1056836280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-23 02:00:00 2010-05-23 03:00:00 1056836280 1056836340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-05-23 03:00:00 2010-05-24 00:00:00 1056836340 1056837600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-24 00:00:00 2010-05-24 04:00:00 1056837600 1056837840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-05-24 04:00:00 2010-05-25 17:00:00 1056837840 1056840060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-25 17:00:00 2010-05-25 21:00:00 1056840060 1056840300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-05-25 21:00:00 2010-05-27 18:00:00 1056840300 1056843000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-27 18:00:00 2010-05-27 21:00:00 1056843000 1056843180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-05-27 21:00:00 2010-05-28 03:00:00 1056843180 1056843540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-05-28 03:00:00 2010-05-28 05:00:00 1056843540 1056843660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-05-28 05:00:00 2010-06-03 19:00:00 1056843660 1056853140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-03 19:00:00 2010-06-03 21:00:00 1056853140 1056853260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-06-03 21:00:00 2010-06-08 03:00:00 1056853260 1056859380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-08 03:00:00 2010-06-08 04:00:00 1056859380 1056859440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-06-08 04:00:00 2010-06-14 00:00:00 1056859440 1056867840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-14 00:00:00 2010-06-14 06:00:00 1056867840 1056868200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-06-14 06:00:00 2010-06-15 00:00:00 1056868200 1056869280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-15 00:00:00 2010-06-15 03:00:00 1056869280 1056869460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-06-15 03:00:00 2010-06-15 04:00:00 1056869460 1056869520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-15 04:00:00 2010-06-15 06:00:00 1056869520 1056869640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-06-15 06:00:00 2010-06-16 00:00:00 1056869640 1056870720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-16 00:00:00 2010-06-16 02:00:00 1056870720 1056870840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-06-16 02:00:00 2010-06-20 03:00:00 1056870840 1056876660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-20 03:00:00 2010-06-20 06:00:00 1056876660 1056876840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-06-20 06:00:00 2010-06-21 01:00:00 1056876840 1056877980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-21 01:00:00 2010-06-21 05:00:00 1056877980 1056878220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-06-21 05:00:00 2010-06-23 03:00:00 1056878220 1056880980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-23 03:00:00 2010-06-23 04:00:00 1056880980 1056881040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-06-23 04:00:00 2010-06-24 00:00:00 1056881040 1056882240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-24 00:00:00 2010-06-24 03:00:00 1056882240 1056882420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-06-24 03:00:00 2010-06-24 19:00:00 1056882420 1056883380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-24 19:00:00 2010-06-24 22:00:00 1056883380 1056883560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-06-24 22:00:00 2010-06-25 01:00:00 1056883560 1056883740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-25 01:00:00 2010-06-25 03:00:00 1056883740 1056883860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-06-25 03:00:00 2010-06-25 04:00:00 1056883860 1056883920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-25 04:00:00 2010-06-25 05:00:00 1056883920 1056883980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-06-25 05:00:00 2010-06-25 18:00:00 1056883980 1056884760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-25 18:00:00 2010-06-25 22:00:00 1056884760 1056885000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-06-25 22:00:00 2010-06-26 19:00:00 1056885000 1056886260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-06-26 19:00:00 2010-06-26 21:00:00 1056886260 1056886380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-06-26 21:00:00 2010-07-03 02:00:00 1056886380 1056895320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-03 02:00:00 2010-07-03 03:00:00 1056895320 1056895380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-07-03 03:00:00 2010-07-04 04:00:00 1056895380 1056896880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-04 04:00:00 2010-07-04 05:00:00 1056896880 1056896940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-07-04 05:00:00 2010-07-05 01:00:00 1056896940 1056898140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-05 01:00:00 2010-07-05 06:00:00 1056898140 1056898440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-07-05 06:00:00 2010-07-10 02:00:00 1056898440 1056905400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-10 02:00:00 2010-07-10 07:00:00 1056905400 1056905700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-07-10 07:00:00 2010-07-11 05:00:00 1056905700 1056907020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-11 05:00:00 2010-07-11 06:00:00 1056907020 1056907080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-07-11 06:00:00 2010-07-11 17:00:00 1056907080 1056907740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-11 17:00:00 2010-07-11 22:00:00 1056907740 1056908040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-07-11 22:00:00 2010-07-12 15:00:00 1056908040 1056909060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-12 15:00:00 2010-07-12 22:00:00 1056909060 1056909480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-07-12 22:00:00 2010-07-13 04:00:00 1056909480 1056909840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-13 04:00:00 2010-07-13 05:00:00 1056909840 1056909900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-07-13 05:00:00 2010-07-13 17:00:00 1056909900 1056910620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-13 17:00:00 2010-07-13 20:00:00 1056910620 1056910800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-07-13 20:00:00 2010-07-17 03:00:00 1056910800 1056915540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-17 03:00:00 2010-07-17 06:00:00 1056915540 1056915720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-07-17 06:00:00 2010-07-24 01:00:00 1056915720 1056925500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-24 01:00:00 2010-07-24 02:00:00 1056925500 1056925560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-07-24 02:00:00 2010-07-24 04:00:00 1056925560 1056925680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-24 04:00:00 2010-07-24 07:00:00 1056925680 1056925860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-07-24 07:00:00 2010-07-27 00:00:00 1056925860 1056929760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-27 00:00:00 2010-07-27 03:00:00 1056929760 1056929940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-07-27 03:00:00 2010-07-28 02:00:00 1056929940 1056931320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-28 02:00:00 2010-07-28 03:00:00 1056931320 1056931380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-07-28 03:00:00 2010-07-28 15:00:00 1056931380 1056932100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-28 15:00:00 2010-07-28 17:00:00 1056932100 1056932220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-07-28 17:00:00 2010-07-28 18:00:00 1056932220 1056932280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-28 18:00:00 2010-07-28 19:00:00 1056932280 1056932340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-07-28 19:00:00 2010-07-30 20:00:00 1056932340 1056935280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-07-30 20:00:00 2010-07-30 21:00:00 1056935280 1056935340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-07-30 21:00:00 2010-08-06 06:00:00 1056935340 1056944520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-08-06 06:00:00 2010-08-06 07:00:00 1056944520 1056944580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-08-06 07:00:00 2010-08-07 01:00:00 1056944580 1056945660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-08-07 01:00:00 2010-08-07 04:00:00 1056945660 1056945840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-08-07 04:00:00 2010-08-08 03:00:00 1056945840 1056947220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-08-08 03:00:00 2010-08-08 06:00:00 1056947220 1056947400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-08-08 06:00:00 2010-08-09 01:00:00 1056947400 1056948540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-08-09 01:00:00 2010-08-09 05:00:00 1056948540 1056948780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-08-09 05:00:00 2010-08-09 11:00:00 1056948780 1056949140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-08-09 11:00:00 2010-08-09 13:00:00 1056949140 1056949260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-08-09 13:00:00 2010-08-09 17:00:00 1056949260 1056949500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-08-09 17:00:00 2010-08-09 19:00:00 1056949500 1056949620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-08-09 19:00:00 2010-08-10 10:00:00 1056949620 1056950520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-08-10 10:00:00 2010-08-10 18:00:00 1056950520 1056951000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-08-10 18:00:00 2010-08-10 22:00:00 1056951000 1056951240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-08-10 22:00:00 2010-08-11 03:00:00 1056951240 1056951540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-08-11 03:00:00 2010-08-20 20:00:00 1056951540 1056965520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-08-20 20:00:00 2010-08-20 22:00:00 1056965520 1056965640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-08-20 22:00:00 2010-08-23 14:00:00 1056965640 1056969480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-08-23 14:00:00 2010-08-23 18:00:00 1056969480 1056969720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-08-23 18:00:00 2010-09-05 09:00:00 1056969720 1056987900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-05 09:00:00 2010-09-05 22:00:00 1056987900 1056988680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-09-05 22:00:00 2010-09-06 20:00:00 1056988680 1056990000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-06 20:00:00 2010-09-06 21:00:00 1056990000 1056990060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-09-06 21:00:00 2010-09-10 01:00:00 1056990060 1056994620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-10 01:00:00 2010-09-10 02:00:00 1056994620 1056994680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-09-10 02:00:00 2010-09-10 19:00:00 1056994680 1056995700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-10 19:00:00 2010-09-10 21:00:00 1056995700 1056995820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-09-10 21:00:00 2010-09-11 23:00:00 1056995820 1056997380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-11 23:00:00 2010-09-12 01:00:00 1056997380 1056997500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-09-12 01:00:00 2010-09-12 03:00:00 1056997500 1056997620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-12 03:00:00 2010-09-12 04:00:00 1056997620 1056997680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-09-12 04:00:00 2010-09-13 17:00:00 1056997680 1056999900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-13 17:00:00 2010-09-13 18:00:00 1056999900 1056999960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-09-13 18:00:00 2010-09-15 14:00:00 1056999960 1057002600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-15 14:00:00 2010-09-15 15:00:00 1057002600 1057002660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-09-15 15:00:00 2010-09-16 14:00:00 1057002660 1057004040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-16 14:00:00 2010-09-16 15:00:00 1057004040 1057004100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-09-16 15:00:00 2010-09-17 14:00:00 1057004100 1057005480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-17 14:00:00 2010-09-17 15:00:00 1057005480 1057005540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-09-17 15:00:00 2010-09-18 14:00:00 1057005540 1057006920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-18 14:00:00 2010-09-18 15:00:00 1057006920 1057006980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-09-18 15:00:00 2010-09-21 23:00:00 1057006980 1057011780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-21 23:00:00 2010-09-22 00:00:00 1057011780 1057011840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-09-22 00:00:00 2010-09-23 00:00:00 1057011840 1057013280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-23 00:00:00 2010-09-23 03:00:00 1057013280 1057013460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-09-23 03:00:00 2010-09-23 05:00:00 1057013460 1057013580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-23 05:00:00 2010-09-23 06:00:00 1057013580 1057013640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-09-23 06:00:00 2010-09-23 23:00:00 1057013640 1057014660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-23 23:00:00 2010-09-24 00:00:00 1057014660 1057014720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-09-24 00:00:00 2010-09-25 19:00:00 1057014720 1057017300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-25 19:00:00 2010-09-25 20:00:00 1057017300 1057017360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-09-25 20:00:00 2010-09-26 19:00:00 1057017360 1057018740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-26 19:00:00 2010-09-26 20:00:00 1057018740 1057018800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-09-26 20:00:00 2010-09-28 19:00:00 1057018800 1057021620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-28 19:00:00 2010-09-28 21:00:00 1057021620 1057021740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-09-28 21:00:00 2010-09-29 02:00:00 1057021740 1057022040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-09-29 02:00:00 2010-09-29 03:00:00 1057022040 1057022100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -2010-09-29 03:00:00 2010-10-03 19:00:00 1057022100 1057028820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-03 19:00:00 2010-10-03 20:00:00 1057028820 1057028880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-03 20:00:00 2010-10-04 16:00:00 1057028880 1057030080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-04 16:00:00 2010-10-04 22:00:00 1057030080 1057030440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-04 22:00:00 2010-10-05 16:00:00 1057030440 1057031520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-05 16:00:00 2010-10-05 21:00:00 1057031520 1057031820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-05 21:00:00 2010-10-07 19:00:00 1057031820 1057034580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-07 19:00:00 2010-10-07 23:00:00 1057034580 1057034820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-07 23:00:00 2010-10-08 00:00:00 1057034820 1057034880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-08 00:00:00 2010-10-08 01:00:00 1057034880 1057034940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-08 01:00:00 2010-10-08 02:00:00 1057034940 1057035000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-08 02:00:00 2010-10-08 04:00:00 1057035000 1057035120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-08 04:00:00 2010-10-08 07:00:00 1057035120 1057035300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-08 07:00:00 2010-10-09 01:00:00 1057035300 1057036380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-09 01:00:00 2010-10-09 03:00:00 1057036380 1057036500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-09 03:00:00 2010-10-09 05:00:00 1057036500 1057036620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-09 05:00:00 2010-10-09 07:00:00 1057036620 1057036740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-09 07:00:00 2010-10-10 04:00:00 1057036740 1057038000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-10 04:00:00 2010-10-10 06:00:00 1057038000 1057038120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-10 06:00:00 2010-10-10 07:00:00 1057038120 1057038180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-10 07:00:00 2010-10-10 08:00:00 1057038180 1057038240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-10 08:00:00 2010-10-12 00:00:00 1057038240 1057040640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-12 00:00:00 2010-10-15 19:00:00 1057040640 1057046100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-15 19:00:00 2010-10-15 21:00:00 1057046100 1057046220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-15 21:00:00 2010-10-24 14:00:00 1057046220 1057058760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-24 15:00:00 2010-10-24 22:00:00 1057058820 1057059240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-24 22:00:00 2010-10-25 19:00:00 1057059240 1057060500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-10-25 19:00:00 2010-10-25 20:00:00 1057060500 1057060560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-10-25 20:00:00 2010-11-09 18:00:00 1057060560 1057082040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-11-09 18:00:00 2010-11-09 20:00:00 1057082040 1057082160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-11-09 20:00:00 2010-11-14 19:00:00 1057082160 1057089300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-11-14 19:00:00 2010-11-14 20:00:00 1057089300 1057089360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-11-14 20:00:00 2010-11-18 18:00:00 1057089360 1057095000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-11-18 18:00:00 2010-11-18 21:00:00 1057095000 1057095180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-11-18 21:00:00 2010-11-27 02:00:00 1057095180 1057107000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-11-27 02:00:00 2010-11-27 03:00:00 1057107000 1057107060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-11-27 04:00:00 2010-12-01 03:00:00 1057107120 1057112820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-01 03:00:00 2010-12-02 07:00:00 1057112820 1057114500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-02 07:00:00 2010-12-02 08:00:00 1057114500 1057114560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-02 08:00:00 2010-12-02 09:00:00 1057114560 1057114620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-02 09:00:00 2010-12-02 11:00:00 1057114620 1057114740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-02 11:00:00 2010-12-03 00:00:00 1057114740 1057115520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-03 00:00:00 2010-12-04 12:00:00 1057115520 1057117680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-04 12:00:00 2010-12-04 13:00:00 1057117680 1057117740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-04 13:00:00 2010-12-04 21:00:00 1057117740 1057118220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-04 21:00:00 2010-12-05 02:00:00 1057118220 1057118520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-05 02:00:00 2010-12-05 03:00:00 1057118520 1057118580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-05 03:00:00 2010-12-05 07:00:00 1057118580 1057118820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-05 07:00:00 2010-12-05 09:00:00 1057118820 1057118940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-05 09:00:00 2010-12-05 23:00:00 1057118940 1057119780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-05 23:00:00 2010-12-06 01:00:00 1057119780 1057119900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-06 01:00:00 2010-12-06 03:00:00 1057119900 1057120020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-06 03:00:00 2010-12-06 11:00:00 1057120020 1057120500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-06 11:00:00 2010-12-06 21:00:00 1057120500 1057121100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-06 21:00:00 2010-12-07 07:00:00 1057121100 1057121700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-07 07:00:00 2010-12-07 08:00:00 1057121700 1057121760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-07 08:00:00 2010-12-07 14:00:00 1057121760 1057122120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-07 14:00:00 2010-12-07 21:00:00 1057122120 1057122540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-07 21:00:00 2010-12-08 14:00:00 1057122540 1057123560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-08 14:00:00 2010-12-08 16:00:00 1057123560 1057123680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-08 16:00:00 2010-12-08 17:00:00 1057123680 1057123740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-08 17:00:00 2010-12-08 20:00:00 1057123740 1057123920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-08 20:00:00 2010-12-09 15:00:00 1057123920 1057125060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-09 15:00:00 2010-12-09 16:00:00 1057125060 1057125120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-09 16:00:00 2010-12-09 17:00:00 1057125120 1057125180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-09 17:00:00 2010-12-09 18:00:00 1057125180 1057125240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-09 18:00:00 2010-12-09 19:00:00 1057125240 1057125300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-09 19:00:00 2010-12-09 20:00:00 1057125300 1057125360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-09 20:00:00 2010-12-10 20:00:00 1057125360 1057126800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-10 20:00:00 2010-12-10 21:00:00 1057126800 1057126860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-10 21:00:00 2010-12-11 02:00:00 1057126860 1057127160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-11 02:00:00 2010-12-11 03:00:00 1057127160 1057127220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-11 03:00:00 2010-12-11 07:00:00 1057127220 1057127460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-11 07:00:00 2010-12-13 00:00:00 1057127460 1057129920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-13 00:00:00 2010-12-13 09:00:00 1057129920 1057130460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-13 09:00:00 2010-12-13 21:00:00 1057130460 1057131180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-13 21:00:00 2010-12-14 08:00:00 1057131180 1057131840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-14 08:00:00 2010-12-14 23:00:00 1057131840 1057132740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-14 23:00:00 2010-12-15 08:00:00 1057132740 1057133280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-15 08:00:00 2010-12-16 01:00:00 1057133280 1057134300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-16 01:00:00 2010-12-16 03:00:00 1057134300 1057134420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-16 03:00:00 2010-12-16 07:00:00 1057134420 1057134660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-16 07:00:00 2010-12-16 08:00:00 1057134660 1057134720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-16 08:00:00 2010-12-17 01:00:00 1057134720 1057135740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-17 01:00:00 2010-12-17 11:00:00 1057135740 1057136340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-17 11:00:00 2010-12-17 21:00:00 1057136340 1057136940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-17 21:00:00 2010-12-18 14:00:00 1057136940 1057137960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-18 14:00:00 2010-12-18 15:00:00 1057137960 1057138020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-18 15:00:00 2010-12-19 05:00:00 1057138020 1057138860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-19 05:00:00 2010-12-19 23:00:00 1057138860 1057139940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-19 23:00:00 2010-12-22 14:00:00 1057139940 1057143720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-22 14:00:00 2010-12-22 15:00:00 1057143720 1057143780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-22 15:00:00 2010-12-23 18:00:00 1057143780 1057145400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-23 18:00:00 2010-12-23 19:00:00 1057145400 1057145460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-23 19:00:00 2010-12-24 10:00:00 1057145460 1057146360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-24 10:00:00 2010-12-28 21:00:00 1057146360 1057152780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-28 21:00:00 2010-12-29 20:00:00 1057152780 1057154160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-29 20:00:00 2010-12-29 21:00:00 1057154160 1057154220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz'] -2010-12-29 21:00:00 2010-12-31 13:00:00 1057154220 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1056636060_1057156620.npz -2010-12-31 13:00:00 2011-01-05 13:00:00 1057156620 1057163820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-05 13:00:00 2011-01-05 22:00:00 1057163820 1057164360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-01-05 22:00:00 2011-01-06 02:00:00 1057164360 1057164600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-06 02:00:00 2011-01-06 06:00:00 1057164600 1057164840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-01-06 06:00:00 2011-01-06 07:00:00 1057164840 1057164900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-06 07:00:00 2011-01-07 02:00:00 1057164900 1057166040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-01-07 02:00:00 2011-01-09 10:00:00 1057166040 1057169400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-09 10:00:00 2011-01-10 02:00:00 1057169400 1057170360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-01-10 02:00:00 2011-01-10 05:00:00 1057170360 1057170540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-10 05:00:00 2011-01-11 23:00:00 1057170540 1057173060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-01-11 23:00:00 2011-01-18 01:00:00 1057173060 1057181820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-18 01:00:00 2011-01-18 02:00:00 1057181820 1057181880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-01-18 02:00:00 2011-01-18 03:00:00 1057181880 1057181940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-18 03:00:00 2011-01-18 04:00:00 1057181940 1057182000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-01-18 04:00:00 2011-01-19 13:00:00 1057182000 1057183980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-19 13:00:00 2011-01-19 22:00:00 1057183980 1057184520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-01-19 22:00:00 2011-01-20 19:00:00 1057184520 1057185780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-20 19:00:00 2011-01-20 20:00:00 1057185780 1057185840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-01-20 20:00:00 2011-01-25 20:00:00 1057185840 1057193040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-25 20:00:00 2011-01-25 21:00:00 1057193040 1057193100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz'] -2011-01-25 21:00:00 2011-01-27 00:00:00 1057193100 1057194720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-27 00:00:00 2011-01-27 01:00:00 1057194720 1057194780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz'] -2011-01-27 01:00:00 2011-01-30 02:00:00 1057194780 1057199160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-30 02:00:00 2011-01-30 03:00:00 1057199160 1057199220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-01-30 03:00:00 2011-01-31 13:00:00 1057199220 1057201260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-01-31 13:00:00 2011-02-01 00:00:00 1057201260 1057201920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-02-01 00:00:00 2011-02-01 06:00:00 1057201920 1057202280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-02-01 06:00:00 2011-02-01 07:00:00 1057202280 1057202340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-02-01 07:00:00 2011-02-01 10:00:00 1057202340 1057202520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-02-01 10:00:00 2011-02-01 22:00:00 1057202520 1057203240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-02-01 22:00:00 2011-02-02 11:00:00 1057203240 1057204020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-02-02 11:00:00 2011-02-02 22:00:00 1057204020 1057204680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-02-02 22:00:00 2011-02-03 12:00:00 1057204680 1057205520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-02-03 12:00:00 2011-02-03 21:00:00 1057205520 1057206060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-02-03 21:00:00 2011-02-04 11:00:00 1057206060 1057206900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-02-04 11:00:00 2011-02-04 12:00:00 1057206900 1057206960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-02-04 12:00:00 2011-02-04 14:00:00 1057206960 1057207080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-02-04 14:00:00 2011-02-04 22:00:00 1057207080 1057207560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-02-04 22:00:00 2011-02-05 11:00:00 1057207560 1057208340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-02-05 11:00:00 2011-02-06 00:00:00 1057208340 1057209120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-02-06 00:00:00 2011-02-06 10:00:00 1057209120 1057209720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-02-06 10:00:00 2011-04-12 03:00:00 1057209720 1057302900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-04-12 03:00:00 2011-04-18 14:00:00 1057302900 1057312200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-04-18 15:00:00 2011-04-18 23:00:00 1057312260 1057312740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-04-18 23:00:00 2011-04-19 10:00:00 1057312740 1057313400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-04-19 10:00:00 2011-04-19 21:00:00 1057313400 1057314060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-04-19 21:00:00 2011-04-21 18:00:00 1057314060 1057316760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-04-21 18:00:00 2011-04-21 20:00:00 1057316760 1057316880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-04-21 20:00:00 2011-04-22 08:00:00 1057316880 1057317600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-04-22 08:00:00 2011-04-23 00:00:00 1057317600 1057318560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-04-23 00:00:00 2011-04-23 03:00:00 1057318560 1057318740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-04-23 03:00:00 2011-04-23 04:00:00 1057318740 1057318800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-04-23 04:00:00 2011-04-23 05:00:00 1057318800 1057318860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-04-23 05:00:00 2011-04-24 00:00:00 1057318860 1057320000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-04-24 00:00:00 2011-04-26 10:00:00 1057320000 1057323480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-04-26 10:00:00 2011-04-26 14:00:00 1057323480 1057323720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-04-26 15:00:00 2011-04-26 17:00:00 1057323780 1057323900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-04-26 17:00:00 2011-04-26 21:00:00 1057323900 1057324140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-04-26 21:00:00 2011-04-27 08:00:00 1057324140 1057324800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-04-27 08:00:00 2011-04-27 23:00:00 1057324800 1057325700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-04-27 23:00:00 2011-04-28 14:00:00 1057325700 1057326600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-04-28 15:00:00 2011-04-28 22:00:00 1057326660 1057327080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-04-28 22:00:00 2011-05-03 09:00:00 1057327080 1057333500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-03 09:00:00 2011-05-04 01:00:00 1057333500 1057334460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-04 01:00:00 2011-05-04 10:00:00 1057334460 1057335000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-04 10:00:00 2011-05-04 22:00:00 1057335000 1057335720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-04 22:00:00 2011-05-09 14:00:00 1057335720 1057342440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-09 15:00:00 2011-05-09 17:00:00 1057342500 1057342620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-09 17:00:00 2011-05-09 20:00:00 1057342620 1057342800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-09 20:00:00 2011-05-09 22:00:00 1057342800 1057342920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-09 22:00:00 2011-05-10 11:00:00 1057342920 1057343700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-10 11:00:00 2011-05-10 23:00:00 1057343700 1057344420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-10 23:00:00 2011-05-19 08:00:00 1057344420 1057356480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-19 08:00:00 2011-05-19 17:00:00 1057356480 1057357020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-19 17:00:00 2011-05-19 18:00:00 1057357020 1057357080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-19 18:00:00 2011-05-20 00:00:00 1057357080 1057357440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-20 00:00:00 2011-05-20 18:00:00 1057357440 1057358520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-20 18:00:00 2011-05-20 21:00:00 1057358520 1057358700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-20 21:00:00 2011-05-21 20:00:00 1057358700 1057360080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-21 20:00:00 2011-05-21 22:00:00 1057360080 1057360200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-21 22:00:00 2011-05-22 14:00:00 1057360200 1057361160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-22 15:00:00 2011-05-22 22:00:00 1057361220 1057361640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-22 22:00:00 2011-05-23 05:00:00 1057361640 1057362060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-23 05:00:00 2011-05-24 01:00:00 1057362060 1057363260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-24 01:00:00 2011-05-29 20:00:00 1057363260 1057371600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-29 20:00:00 2011-05-29 23:00:00 1057371600 1057371780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-29 23:00:00 2011-05-30 14:00:00 1057371780 1057372680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-30 15:00:00 2011-05-30 22:00:00 1057372740 1057373160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-30 22:00:00 2011-05-31 15:00:00 1057373160 1057374180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-05-31 15:00:00 2011-05-31 22:00:00 1057374180 1057374600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-05-31 22:00:00 2011-06-01 16:00:00 1057374600 1057375680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-06-01 16:00:00 2011-06-01 21:00:00 1057375680 1057375980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-06-01 21:00:00 2011-06-02 19:00:00 1057375980 1057377300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-06-02 19:00:00 2011-06-02 22:00:00 1057377300 1057377480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-06-02 22:00:00 2011-06-03 06:00:00 1057377480 1057377960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-06-03 06:00:00 2011-06-03 07:00:00 1057377960 1057378020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-06-03 07:00:00 2011-06-03 20:00:00 1057378020 1057378800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-06-03 20:00:00 2011-06-03 22:00:00 1057378800 1057378920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-06-03 22:00:00 2011-06-05 19:00:00 1057378920 1057381620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-06-05 20:00:00 2011-06-05 22:00:00 1057381680 1057381800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-06-05 22:00:00 2011-06-12 16:00:00 1057381800 1057391520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-06-12 16:00:00 2011-06-12 17:00:00 1057391520 1057391580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-06-12 17:00:00 2011-06-14 20:00:00 1057391580 1057394640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-06-14 20:00:00 2011-06-14 22:00:00 1057394640 1057394760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-06-14 22:00:00 2011-06-24 01:00:00 1057394760 1057407900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-06-24 01:00:00 2011-06-24 02:00:00 1057407900 1057407960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz'] -2011-06-24 02:00:00 2011-07-13 23:00:00 1057407960 1057436580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-07-13 23:00:00 2011-07-14 00:00:00 1057436580 1057436640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-07-14 00:00:00 2011-07-17 18:00:00 1057436640 1057442040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-07-17 18:00:00 2011-07-17 19:00:00 1057442040 1057442100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-07-17 19:00:00 2011-07-17 20:00:00 1057442100 1057442160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-07-17 20:00:00 2011-07-17 21:00:00 1057442160 1057442220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-07-17 22:00:00 2011-08-22 20:00:00 1057442280 1057494000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-08-22 20:00:00 2011-08-23 00:00:00 1057494000 1057494240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-08-23 00:00:00 2011-08-23 01:00:00 1057494240 1057494300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-08-23 01:00:00 2011-08-23 02:00:00 1057494300 1057494360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-08-23 02:00:00 2011-08-23 08:00:00 1057494360 1057494720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-08-23 08:00:00 2011-08-24 01:00:00 1057494720 1057495740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-08-24 01:00:00 2011-08-25 20:00:00 1057495740 1057498320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-08-25 20:00:00 2011-08-25 21:00:00 1057498320 1057498380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-08-25 21:00:00 2011-08-27 06:00:00 1057498380 1057500360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-08-27 06:00:00 2011-08-27 11:00:00 1057500360 1057500660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-08-27 11:00:00 2011-08-27 12:00:00 1057500660 1057500720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-08-27 12:00:00 2011-08-28 00:00:00 1057500720 1057501440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-08-28 00:00:00 2011-08-28 14:00:00 1057501440 1057502280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-08-28 14:00:00 2011-08-28 22:00:00 1057502280 1057502760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-08-28 22:00:00 2011-08-30 11:00:00 1057502760 1057504980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-08-30 11:00:00 2011-08-30 22:00:00 1057504980 1057505640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-08-30 22:00:00 2011-08-31 16:00:00 1057505640 1057506720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-08-31 16:00:00 2011-08-31 20:00:00 1057506720 1057506960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-08-31 20:00:00 2011-09-06 19:00:00 1057506960 1057515540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-06 19:00:00 2011-09-06 21:00:00 1057515540 1057515660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-06 21:00:00 2011-09-07 16:00:00 1057515660 1057516800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-07 16:00:00 2011-09-07 21:00:00 1057516800 1057517100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-07 21:00:00 2011-09-09 01:00:00 1057517100 1057518780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-09 01:00:00 2011-09-09 02:00:00 1057518780 1057518840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-09 02:00:00 2011-09-09 05:00:00 1057518840 1057519020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-09 05:00:00 2011-09-09 06:00:00 1057519020 1057519080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-09 06:00:00 2011-09-09 11:00:00 1057519080 1057519380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-09 11:00:00 2011-09-09 22:00:00 1057519380 1057520040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-09 22:00:00 2011-09-13 03:00:00 1057520040 1057524660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-13 03:00:00 2011-09-13 05:00:00 1057524660 1057524780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-13 05:00:00 2011-09-14 19:00:00 1057524780 1057527060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-14 19:00:00 2011-09-14 20:00:00 1057527060 1057527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-14 20:00:00 2011-09-19 14:00:00 1057527120 1057533960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-19 14:00:00 2011-09-19 18:00:00 1057533960 1057534200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-19 21:00:00 2011-09-20 19:00:00 1057534380 1057535700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-20 19:00:00 2011-09-20 21:00:00 1057535700 1057535820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-20 21:00:00 2011-09-23 19:00:00 1057535820 1057540020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-23 19:00:00 2011-09-23 21:00:00 1057540020 1057540140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-23 21:00:00 2011-09-25 19:00:00 1057540140 1057542900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-25 19:00:00 2011-09-25 21:00:00 1057542900 1057543020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-25 21:00:00 2011-09-26 00:00:00 1057543020 1057543200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-26 00:00:00 2011-09-26 01:00:00 1057543200 1057543260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-26 01:00:00 2011-09-29 19:00:00 1057543260 1057548660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-09-29 19:00:00 2011-09-29 21:00:00 1057548660 1057548780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-09-29 21:00:00 2011-10-03 19:00:00 1057548780 1057554420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-10-03 19:00:00 2011-10-03 20:00:00 1057554420 1057554480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-10-03 20:00:00 2011-10-05 23:00:00 1057554480 1057557540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057557540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz -2011-10-06 04:00:00 2011-12-31 13:00:00 1057557840 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057156620_1057682220.npz'] -2011-12-31 13:00:00 2012-03-21 01:00:00 1057682220 1057798140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-21 02:00:00 2012-03-21 09:00:00 1057798200 1057798620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-21 09:00:00 2012-03-22 23:00:00 1057798620 1057800900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-22 23:00:00 2012-03-23 05:00:00 1057800900 1057801260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-23 05:00:00 2012-03-23 06:00:00 1057801260 1057801320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-23 06:00:00 2012-03-23 08:00:00 1057801320 1057801440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-23 08:00:00 2012-03-23 21:00:00 1057801440 1057802220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-23 21:00:00 2012-03-24 03:00:00 1057802220 1057802580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-24 03:00:00 2012-03-24 06:00:00 1057802580 1057802760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-24 06:00:00 2012-03-24 08:00:00 1057802760 1057802880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-24 08:00:00 2012-03-24 21:00:00 1057802880 1057803660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-24 21:00:00 2012-03-25 02:00:00 1057803660 1057803960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-25 02:00:00 2012-03-25 06:00:00 1057803960 1057804200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-25 06:00:00 2012-03-25 09:00:00 1057804200 1057804380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-25 09:00:00 2012-03-25 21:00:00 1057804380 1057805100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-25 21:00:00 2012-03-26 01:00:00 1057805100 1057805340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-26 01:00:00 2012-03-26 06:00:00 1057805340 1057805640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-26 06:00:00 2012-03-26 09:00:00 1057805640 1057805820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-26 09:00:00 2012-03-26 21:00:00 1057805820 1057806540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-26 21:00:00 2012-03-27 01:00:00 1057806540 1057806780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-27 01:00:00 2012-03-27 05:00:00 1057806780 1057807020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-27 05:00:00 2012-03-27 10:00:00 1057807020 1057807320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-27 10:00:00 2012-03-27 21:00:00 1057807320 1057807980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-27 21:00:00 2012-03-28 02:00:00 1057807980 1057808280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-28 02:00:00 2012-03-28 06:00:00 1057808280 1057808520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-28 06:00:00 2012-03-28 09:00:00 1057808520 1057808700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-28 09:00:00 2012-03-28 21:00:00 1057808700 1057809420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-28 21:00:00 2012-03-29 02:00:00 1057809420 1057809720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-29 02:00:00 2012-03-29 05:00:00 1057809720 1057809900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-29 05:00:00 2012-03-29 09:00:00 1057809900 1057810140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-29 09:00:00 2012-03-29 21:00:00 1057810140 1057810860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-29 21:00:00 2012-03-30 02:00:00 1057810860 1057811160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-30 02:00:00 2012-03-30 05:00:00 1057811160 1057811340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-30 05:00:00 2012-03-30 09:00:00 1057811340 1057811580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-30 09:00:00 2012-03-31 00:00:00 1057811580 1057812480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-31 00:00:00 2012-03-31 03:00:00 1057812480 1057812660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-31 03:00:00 2012-03-31 06:00:00 1057812660 1057812840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-31 06:00:00 2012-03-31 10:00:00 1057812840 1057813080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-31 10:00:00 2012-03-31 21:00:00 1057813080 1057813740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-03-31 21:00:00 2012-03-31 23:00:00 1057813740 1057813860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-03-31 23:00:00 2012-04-01 00:00:00 1057813860 1057813920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-01 00:00:00 2012-04-01 03:00:00 1057813920 1057814100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-01 03:00:00 2012-04-01 06:00:00 1057814100 1057814280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-01 06:00:00 2012-04-01 13:00:00 1057814280 1057814700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-01 13:00:00 2012-04-01 20:00:00 1057814700 1057815120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-01 20:00:00 2012-04-02 04:00:00 1057815120 1057815600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-02 04:00:00 2012-04-02 06:00:00 1057815600 1057815720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-02 06:00:00 2012-04-02 15:00:00 1057815720 1057816260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-02 15:00:00 2012-04-03 01:00:00 1057816260 1057816860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-03 01:00:00 2012-04-03 04:00:00 1057816860 1057817040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-03 04:00:00 2012-04-03 06:00:00 1057817040 1057817160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-03 06:00:00 2012-04-03 17:00:00 1057817160 1057817820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-03 17:00:00 2012-04-04 00:00:00 1057817820 1057818240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-04 00:00:00 2012-04-04 04:00:00 1057818240 1057818480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-04 04:00:00 2012-04-04 05:00:00 1057818480 1057818540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-04 05:00:00 2012-04-04 18:00:00 1057818540 1057819320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-04 18:00:00 2012-04-04 21:00:00 1057819320 1057819500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-04 21:00:00 2012-04-04 22:00:00 1057819500 1057819560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-04 22:00:00 2012-04-05 00:00:00 1057819560 1057819680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-05 00:00:00 2012-04-05 21:00:00 1057819680 1057820940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-05 21:00:00 2012-04-06 01:00:00 1057820940 1057821180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-06 01:00:00 2012-04-06 14:00:00 1057821180 1057821960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-06 14:00:00 2012-04-06 15:00:00 1057821960 1057822020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-06 15:00:00 2012-04-06 17:00:00 1057822020 1057822140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-06 17:00:00 2012-04-07 02:00:00 1057822140 1057822680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-07 02:00:00 2012-04-07 15:00:00 1057822680 1057823460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-07 15:00:00 2012-04-08 00:00:00 1057823460 1057824000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-08 00:00:00 2012-04-08 10:00:00 1057824000 1057824600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-08 10:00:00 2012-04-08 23:00:00 1057824600 1057825380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-08 23:00:00 2012-04-09 14:00:00 1057825380 1057826280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-09 14:00:00 2012-04-10 02:00:00 1057826280 1057827000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-10 02:00:00 2012-04-10 21:00:00 1057827000 1057828140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-10 21:00:00 2012-04-11 00:00:00 1057828140 1057828320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-11 00:00:00 2012-04-11 17:00:00 1057828320 1057829340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-11 17:00:00 2012-04-11 20:00:00 1057829340 1057829520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-11 20:00:00 2012-04-11 21:00:00 1057829520 1057829580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-11 21:00:00 2012-04-12 01:00:00 1057829580 1057829820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-12 01:00:00 2012-04-12 02:00:00 1057829820 1057829880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-12 02:00:00 2012-04-12 03:00:00 1057829880 1057829940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-12 03:00:00 2012-04-12 14:00:00 1057829940 1057830600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-12 14:00:00 2012-04-12 23:00:00 1057830600 1057831140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-12 23:00:00 2012-04-13 06:00:00 1057831140 1057831560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-13 06:00:00 2012-04-13 07:00:00 1057831560 1057831620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-13 07:00:00 2012-04-13 10:00:00 1057831620 1057831800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-13 10:00:00 2012-04-13 21:00:00 1057831800 1057832460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-13 21:00:00 2012-04-14 00:00:00 1057832460 1057832640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-14 00:00:00 2012-04-14 01:00:00 1057832640 1057832700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-14 01:00:00 2012-04-14 03:00:00 1057832700 1057832820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-14 03:00:00 2012-04-14 05:00:00 1057832820 1057832940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-14 05:00:00 2012-04-14 10:00:00 1057832940 1057833240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-14 10:00:00 2012-04-15 00:00:00 1057833240 1057834080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-15 00:00:00 2012-04-15 01:00:00 1057834080 1057834140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-15 01:00:00 2012-04-15 03:00:00 1057834140 1057834260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-15 03:00:00 2012-04-15 05:00:00 1057834260 1057834380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-15 05:00:00 2012-04-16 01:00:00 1057834380 1057835580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-16 01:00:00 2012-04-16 07:00:00 1057835580 1057835940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-16 07:00:00 2012-04-17 00:00:00 1057835940 1057836960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-17 00:00:00 2012-04-17 04:00:00 1057836960 1057837200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-17 04:00:00 2012-04-17 05:00:00 1057837200 1057837260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-17 05:00:00 2012-04-17 07:00:00 1057837260 1057837380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-17 07:00:00 2012-04-18 01:00:00 1057837380 1057838460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-18 01:00:00 2012-04-18 03:00:00 1057838460 1057838580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-18 03:00:00 2012-04-18 06:00:00 1057838580 1057838760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-18 06:00:00 2012-04-18 09:00:00 1057838760 1057838940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-18 09:00:00 2012-04-19 01:00:00 1057838940 1057839900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-19 01:00:00 2012-04-19 04:00:00 1057839900 1057840080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-19 04:00:00 2012-04-19 06:00:00 1057840080 1057840200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-19 06:00:00 2012-04-19 10:00:00 1057840200 1057840440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-19 10:00:00 2012-04-20 00:00:00 1057840440 1057841280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-20 00:00:00 2012-04-20 03:00:00 1057841280 1057841460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-20 03:00:00 2012-04-20 05:00:00 1057841460 1057841580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-20 05:00:00 2012-04-20 07:00:00 1057841580 1057841700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-20 07:00:00 2012-04-21 01:00:00 1057841700 1057842780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-21 01:00:00 2012-04-21 05:00:00 1057842780 1057843020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-21 05:00:00 2012-04-21 06:00:00 1057843020 1057843080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-21 06:00:00 2012-04-21 10:00:00 1057843080 1057843320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-21 10:00:00 2012-04-22 00:00:00 1057843320 1057844160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-22 00:00:00 2012-04-22 08:00:00 1057844160 1057844640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-22 08:00:00 2012-04-23 01:00:00 1057844640 1057845660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-23 01:00:00 2012-04-23 08:00:00 1057845660 1057846080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-23 08:00:00 2012-04-23 23:00:00 1057846080 1057846980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-23 23:00:00 2012-04-24 08:00:00 1057846980 1057847520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-24 08:00:00 2012-04-25 00:00:00 1057847520 1057848480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-25 00:00:00 2012-04-25 21:00:00 1057848480 1057849740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-25 21:00:00 2012-04-26 08:00:00 1057849740 1057850400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-26 08:00:00 2012-04-26 16:00:00 1057850400 1057850880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-26 16:00:00 2012-04-26 17:00:00 1057850880 1057850940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-26 17:00:00 2012-04-26 20:00:00 1057850940 1057851120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-26 20:00:00 2012-04-26 23:00:00 1057851120 1057851300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-26 23:00:00 2012-04-27 09:00:00 1057851300 1057851900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-27 09:00:00 2012-04-29 00:00:00 1057851900 1057854240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-29 00:00:00 2012-04-29 02:00:00 1057854240 1057854360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-29 02:00:00 2012-04-30 00:00:00 1057854360 1057855680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-04-30 00:00:00 2012-04-30 01:00:00 1057855680 1057855740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-04-30 01:00:00 2012-07-26 22:00:00 1057855740 1057982280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-07-26 22:00:00 2012-07-28 05:00:00 1057982280 1057984140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-07-28 05:00:00 2012-07-28 06:00:00 1057984140 1057984200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-07-28 06:00:00 2012-07-29 07:00:00 1057984200 1057985700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-07-29 07:00:00 2012-07-29 08:00:00 1057985700 1057985760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-07-29 08:00:00 2012-07-30 06:00:00 1057985760 1057987080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-07-30 06:00:00 2012-07-30 07:00:00 1057987080 1057987140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-07-30 07:00:00 2012-08-12 22:00:00 1057987140 1058006760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-12 22:00:00 2012-08-13 00:00:00 1058006760 1058006880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-13 00:00:00 2012-08-14 22:00:00 1058006880 1058009640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-14 22:00:00 2012-08-14 23:00:00 1058009640 1058009700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-14 23:00:00 2012-08-15 22:00:00 1058009700 1058011080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-15 22:00:00 2012-08-15 23:00:00 1058011080 1058011140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-15 23:00:00 2012-08-16 15:00:00 1058011140 1058012100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-16 15:00:00 2012-08-16 23:00:00 1058012100 1058012580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-16 23:00:00 2012-08-18 22:00:00 1058012580 1058015400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-18 22:00:00 2012-08-19 01:00:00 1058015400 1058015580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-19 01:00:00 2012-08-19 22:00:00 1058015580 1058016840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-19 22:00:00 2012-08-20 01:00:00 1058016840 1058017020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-20 01:00:00 2012-08-21 17:00:00 1058017020 1058019420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-21 17:00:00 2012-08-21 21:00:00 1058019420 1058019660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-21 21:00:00 2012-08-22 14:00:00 1058019660 1058020680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-22 14:00:00 2012-08-22 21:00:00 1058020680 1058021100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-22 21:00:00 2012-08-23 10:00:00 1058021100 1058021880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-23 10:00:00 2012-08-23 22:00:00 1058021880 1058022600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-23 22:00:00 2012-08-24 11:00:00 1058022600 1058023380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-24 11:00:00 2012-08-25 00:00:00 1058023380 1058024160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-25 00:00:00 2012-08-25 22:00:00 1058024160 1058025480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-25 22:00:00 2012-08-25 23:00:00 1058025480 1058025540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-25 23:00:00 2012-08-27 22:00:00 1058025540 1058028360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-27 22:00:00 2012-08-28 01:00:00 1058028360 1058028540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-28 01:00:00 2012-08-28 22:00:00 1058028540 1058029800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-28 22:00:00 2012-08-29 00:00:00 1058029800 1058029920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-29 00:00:00 2012-08-29 18:00:00 1058029920 1058031000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-29 18:00:00 2012-08-29 21:00:00 1058031000 1058031180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-29 21:00:00 2012-08-30 20:00:00 1058031180 1058032560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-30 20:00:00 2012-08-30 21:00:00 1058032560 1058032620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-08-30 21:00:00 2012-08-31 22:00:00 1058032620 1058034120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-08-31 22:00:00 2012-09-01 00:00:00 1058034120 1058034240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-01 00:00:00 2012-09-01 06:00:00 1058034240 1058034600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-01 06:00:00 2012-09-01 08:00:00 1058034600 1058034720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-01 08:00:00 2012-09-01 21:00:00 1058034720 1058035500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-01 21:00:00 2012-09-02 02:00:00 1058035500 1058035800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-02 02:00:00 2012-09-02 06:00:00 1058035800 1058036040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-02 06:00:00 2012-09-02 08:00:00 1058036040 1058036160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-02 08:00:00 2012-09-03 06:00:00 1058036160 1058037480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-03 06:00:00 2012-09-03 07:00:00 1058037480 1058037540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-03 07:00:00 2012-09-03 22:00:00 1058037540 1058038440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-03 22:00:00 2012-09-03 23:00:00 1058038440 1058038500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-03 23:00:00 2012-09-04 00:00:00 1058038500 1058038560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-04 00:00:00 2012-09-04 01:00:00 1058038560 1058038620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-04 01:00:00 2012-09-04 17:00:00 1058038620 1058039580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-04 17:00:00 2012-09-04 21:00:00 1058039580 1058039820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-04 21:00:00 2012-09-04 22:00:00 1058039820 1058039880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-04 22:00:00 2012-09-04 23:00:00 1058039880 1058039940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-04 23:00:00 2012-09-08 07:00:00 1058039940 1058044740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-08 07:00:00 2012-09-08 08:00:00 1058044740 1058044800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-08 08:00:00 2012-09-08 22:00:00 1058044800 1058045640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-08 22:00:00 2012-09-09 01:00:00 1058045640 1058045820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-09 01:00:00 2012-09-10 17:00:00 1058045820 1058048220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-10 17:00:00 2012-09-10 21:00:00 1058048220 1058048460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-10 21:00:00 2012-09-10 22:00:00 1058048460 1058048520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-10 22:00:00 2012-09-10 23:00:00 1058048520 1058048580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-10 23:00:00 2012-09-11 01:00:00 1058048580 1058048700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-11 01:00:00 2012-09-11 02:00:00 1058048700 1058048760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-11 02:00:00 2012-09-11 23:00:00 1058048760 1058050020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-11 23:00:00 2012-09-12 01:00:00 1058050020 1058050140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-12 01:00:00 2012-09-12 18:00:00 1058050140 1058051160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-12 18:00:00 2012-09-12 21:00:00 1058051160 1058051340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-12 21:00:00 2012-09-13 23:00:00 1058051340 1058052900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-13 23:00:00 2012-09-14 00:00:00 1058052900 1058052960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-14 00:00:00 2012-09-14 22:00:00 1058052960 1058054280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-14 22:00:00 2012-09-15 01:00:00 1058054280 1058054460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-15 01:00:00 2012-09-15 21:00:00 1058054460 1058055660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-15 21:00:00 2012-09-15 23:00:00 1058055660 1058055780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-15 23:00:00 2012-09-16 00:00:00 1058055780 1058055840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-16 00:00:00 2012-09-16 01:00:00 1058055840 1058055900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-16 01:00:00 2012-09-16 23:00:00 1058055900 1058057220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-16 23:00:00 2012-09-17 01:00:00 1058057220 1058057340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-17 01:00:00 2012-09-18 13:00:00 1058057340 1058059500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-18 13:00:00 2012-09-18 22:00:00 1058059500 1058060040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-18 22:00:00 2012-09-19 15:00:00 1058060040 1058061060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-19 15:00:00 2012-09-19 21:00:00 1058061060 1058061420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-19 21:00:00 2012-09-20 00:00:00 1058061420 1058061600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-20 00:00:00 2012-09-20 01:00:00 1058061600 1058061660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-20 01:00:00 2012-09-20 16:00:00 1058061660 1058062560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-20 16:00:00 2012-09-20 20:00:00 1058062560 1058062800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-20 20:00:00 2012-09-21 14:00:00 1058062800 1058063880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-21 14:00:00 2012-09-21 21:00:00 1058063880 1058064300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-21 21:00:00 2012-09-21 23:00:00 1058064300 1058064420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-21 23:00:00 2012-09-22 00:00:00 1058064420 1058064480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-22 00:00:00 2012-09-22 19:00:00 1058064480 1058065620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-22 19:00:00 2012-09-22 21:00:00 1058065620 1058065740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-22 21:00:00 2012-09-23 17:00:00 1058065740 1058066940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-23 17:00:00 2012-09-23 22:00:00 1058066940 1058067240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-23 22:00:00 2012-09-24 04:00:00 1058067240 1058067600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-24 04:00:00 2012-09-24 05:00:00 1058067600 1058067660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-24 05:00:00 2012-09-24 07:00:00 1058067660 1058067780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-24 07:00:00 2012-09-24 23:00:00 1058067780 1058068740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-24 23:00:00 2012-09-27 19:00:00 1058068740 1058072820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-27 19:00:00 2012-09-27 20:00:00 1058072820 1058072880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-27 20:00:00 2012-09-30 16:00:00 1058072880 1058076960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-09-30 16:00:00 2012-09-30 23:00:00 1058076960 1058077380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-09-30 23:00:00 2012-10-04 18:00:00 1058077380 1058082840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-04 18:00:00 2012-10-04 21:00:00 1058082840 1058083020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-04 21:00:00 2012-10-05 15:00:00 1058083020 1058084100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-05 15:00:00 2012-10-05 21:00:00 1058084100 1058084460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-05 21:00:00 2012-10-06 15:00:00 1058084460 1058085540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-06 15:00:00 2012-10-06 21:00:00 1058085540 1058085900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-06 21:00:00 2012-10-11 02:00:00 1058085900 1058091960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-11 02:00:00 2012-10-11 17:00:00 1058091960 1058092860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-11 21:00:00 2012-10-17 15:00:00 1058093100 1058101380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-17 15:00:00 2012-10-17 21:00:00 1058101380 1058101740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-17 21:00:00 2012-10-18 17:00:00 1058101740 1058102940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-18 17:00:00 2012-10-18 20:00:00 1058102940 1058103120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-18 20:00:00 2012-10-19 15:00:00 1058103120 1058104260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-19 15:00:00 2012-10-19 21:00:00 1058104260 1058104620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-19 21:00:00 2012-10-20 14:00:00 1058104620 1058105640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-20 14:00:00 2012-10-21 05:00:00 1058105640 1058106540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-21 05:00:00 2012-10-22 02:00:00 1058106540 1058107800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-22 02:00:00 2012-10-22 03:00:00 1058107800 1058107860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-22 03:00:00 2012-10-22 04:00:00 1058107860 1058107920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-22 04:00:00 2012-10-22 05:00:00 1058107920 1058107980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-22 05:00:00 2012-10-25 18:00:00 1058107980 1058113080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-25 18:00:00 2012-10-25 20:00:00 1058113080 1058113200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-25 20:00:00 2012-10-26 14:00:00 1058113200 1058114280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-26 14:00:00 2012-10-26 21:00:00 1058114280 1058114700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-26 21:00:00 2012-10-27 09:00:00 1058114700 1058115420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-27 09:00:00 2012-10-27 16:00:00 1058115420 1058115840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-27 16:00:00 2012-10-30 17:00:00 1058115840 1058120220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-30 17:00:00 2012-10-30 20:00:00 1058120220 1058120400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-30 20:00:00 2012-10-31 15:00:00 1058120400 1058121540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-10-31 15:00:00 2012-10-31 21:00:00 1058121540 1058121900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-10-31 21:00:00 2012-11-01 00:00:00 1058121900 1058122080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-01 00:00:00 2012-11-01 06:00:00 1058122080 1058122440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-01 06:00:00 2012-11-01 11:00:00 1058122440 1058122740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-01 11:00:00 2012-11-01 21:00:00 1058122740 1058123340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-01 21:00:00 2012-11-01 22:00:00 1058123340 1058123400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-01 22:00:00 2012-11-02 03:00:00 1058123400 1058123700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-02 03:00:00 2012-11-02 04:00:00 1058123700 1058123760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-02 04:00:00 2012-11-02 06:00:00 1058123760 1058123880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-02 06:00:00 2012-11-02 22:00:00 1058123880 1058124840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-02 22:00:00 2012-11-03 05:00:00 1058124840 1058125260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-03 05:00:00 2012-11-03 07:00:00 1058125260 1058125380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-03 07:00:00 2012-11-03 08:00:00 1058125380 1058125440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-03 08:00:00 2012-11-03 11:00:00 1058125440 1058125620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-03 11:00:00 2012-11-03 12:00:00 1058125620 1058125680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-03 12:00:00 2012-11-03 14:00:00 1058125680 1058125800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-03 14:00:00 2012-11-03 16:00:00 1058125800 1058125920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-03 16:00:00 2012-11-03 17:00:00 1058125920 1058125980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-03 17:00:00 2012-11-03 18:00:00 1058125980 1058126040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-03 18:00:00 2012-11-03 22:00:00 1058126040 1058126280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-03 22:00:00 2012-11-04 08:00:00 1058126280 1058126880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-04 08:00:00 2012-11-04 20:00:00 1058126880 1058127600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-04 20:00:00 2012-11-04 22:00:00 1058127600 1058127720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-04 22:00:00 2012-11-05 00:00:00 1058127720 1058127840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-05 00:00:00 2012-11-05 04:00:00 1058127840 1058128080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-05 04:00:00 2012-11-05 05:00:00 1058128080 1058128140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-05 05:00:00 2012-11-05 07:00:00 1058128140 1058128260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-05 07:00:00 2012-11-05 18:00:00 1058128260 1058128920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-05 18:00:00 2012-11-05 20:00:00 1058128920 1058129040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-05 20:00:00 2012-11-05 23:00:00 1058129040 1058129220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-05 23:00:00 2012-11-06 00:00:00 1058129220 1058129280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-06 00:00:00 2012-11-06 02:00:00 1058129280 1058129400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-06 02:00:00 2012-11-06 05:00:00 1058129400 1058129580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-06 05:00:00 2012-11-06 23:00:00 1058129580 1058130660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-06 23:00:00 2012-11-07 00:00:00 1058130660 1058130720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-07 00:00:00 2012-11-07 01:00:00 1058130720 1058130780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-07 01:00:00 2012-11-07 05:00:00 1058130780 1058131020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-07 05:00:00 2012-11-07 10:00:00 1058131020 1058131320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-07 10:00:00 2012-11-07 12:00:00 1058131320 1058131440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-07 12:00:00 2012-11-07 15:00:00 1058131440 1058131620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-07 15:00:00 2012-11-07 16:00:00 1058131620 1058131680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-07 16:00:00 2012-11-07 23:00:00 1058131680 1058132100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-07 23:00:00 2012-11-08 01:00:00 1058132100 1058132220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-08 01:00:00 2012-11-08 02:00:00 1058132220 1058132280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-08 02:00:00 2012-11-08 06:00:00 1058132280 1058132520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-08 06:00:00 2012-11-08 10:00:00 1058132520 1058132760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-08 10:00:00 2012-11-08 11:00:00 1058132760 1058132820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-08 11:00:00 2012-11-08 19:00:00 1058132820 1058133300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-08 19:00:00 2012-11-08 20:00:00 1058133300 1058133360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-08 20:00:00 2012-11-08 23:00:00 1058133360 1058133540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-08 23:00:00 2012-11-09 05:00:00 1058133540 1058133900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-09 05:00:00 2012-11-09 06:00:00 1058133900 1058133960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-09 06:00:00 2012-11-09 07:00:00 1058133960 1058134020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-09 07:00:00 2012-11-09 08:00:00 1058134020 1058134080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-09 08:00:00 2012-11-09 09:00:00 1058134080 1058134140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-09 09:00:00 2012-11-09 12:00:00 1058134140 1058134320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-09 12:00:00 2012-11-11 05:00:00 1058134320 1058136780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-11 05:00:00 2012-11-11 10:00:00 1058136780 1058137080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-11 10:00:00 2012-11-11 12:00:00 1058137080 1058137200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-11 12:00:00 2012-11-11 22:00:00 1058137200 1058137800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-11 22:00:00 2012-11-12 04:00:00 1058137800 1058138160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-12 04:00:00 2012-11-12 06:00:00 1058138160 1058138280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-12 06:00:00 2012-11-12 07:00:00 1058138280 1058138340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-12 07:00:00 2012-11-13 17:00:00 1058138340 1058140380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-13 17:00:00 2012-11-13 20:00:00 1058140380 1058140560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-13 20:00:00 2012-11-14 02:00:00 1058140560 1058140920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-14 02:00:00 2012-11-14 05:00:00 1058140920 1058141100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-14 05:00:00 2012-11-14 17:00:00 1058141100 1058141820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-14 17:00:00 2012-11-14 21:00:00 1058141820 1058142060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-14 21:00:00 2012-11-14 23:00:00 1058142060 1058142180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-14 23:00:00 2012-11-15 04:00:00 1058142180 1058142480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-15 04:00:00 2012-11-15 06:00:00 1058142480 1058142600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-15 06:00:00 2012-11-15 07:00:00 1058142600 1058142660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-15 07:00:00 2012-11-15 10:00:00 1058142660 1058142840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-15 10:00:00 2012-11-15 11:00:00 1058142840 1058142900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-15 11:00:00 2012-11-15 13:00:00 1058142900 1058143020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-15 13:00:00 2012-11-15 14:00:00 1058143020 1058143080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-15 14:00:00 2012-11-16 00:00:00 1058143080 1058143680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-16 00:00:00 2012-11-16 06:00:00 1058143680 1058144040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-16 06:00:00 2012-11-16 08:00:00 1058144040 1058144160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-16 08:00:00 2012-11-16 09:00:00 1058144160 1058144220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-16 09:00:00 2012-11-16 12:00:00 1058144220 1058144400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-16 12:00:00 2012-11-16 13:00:00 1058144400 1058144460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-16 13:00:00 2012-11-16 17:00:00 1058144460 1058144700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-16 17:00:00 2012-11-16 19:00:00 1058144700 1058144820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-16 19:00:00 2012-11-16 20:00:00 1058144820 1058144880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-16 20:00:00 2012-11-18 05:00:00 1058144880 1058146860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-18 05:00:00 2012-11-18 06:00:00 1058146860 1058146920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-18 06:00:00 2012-11-19 06:00:00 1058146920 1058148360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-19 06:00:00 2012-11-19 07:00:00 1058148360 1058148420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-19 07:00:00 2012-11-19 08:00:00 1058148420 1058148480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-19 08:00:00 2012-11-19 11:00:00 1058148480 1058148660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-19 11:00:00 2012-11-19 12:00:00 1058148660 1058148720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-19 12:00:00 2012-11-19 13:00:00 1058148720 1058148780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-19 13:00:00 2012-11-19 15:00:00 1058148780 1058148900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-19 15:00:00 2012-11-19 20:00:00 1058148900 1058149200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-19 20:00:00 2012-11-19 21:00:00 1058149200 1058149260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-19 21:00:00 2012-11-19 22:00:00 1058149260 1058149320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-19 22:00:00 2012-11-20 07:00:00 1058149320 1058149860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-20 07:00:00 2012-11-20 10:00:00 1058149860 1058150040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-20 10:00:00 2012-11-20 12:00:00 1058150040 1058150160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-20 12:00:00 2012-11-20 14:00:00 1058150160 1058150280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-20 14:00:00 2012-11-20 15:00:00 1058150280 1058150340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-20 15:00:00 2012-11-20 17:00:00 1058150340 1058150460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-20 17:00:00 2012-11-20 18:00:00 1058150460 1058150520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-20 18:00:00 2012-11-20 21:00:00 1058150520 1058150700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-20 21:00:00 2012-11-20 22:00:00 1058150700 1058150760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-20 22:00:00 2012-11-21 00:00:00 1058150760 1058150880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-21 00:00:00 2012-11-21 08:00:00 1058150880 1058151360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-21 08:00:00 2012-11-21 15:00:00 1058151360 1058151780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-21 15:00:00 2012-11-21 20:00:00 1058151780 1058152080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-21 20:00:00 2012-11-21 23:00:00 1058152080 1058152260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-21 23:00:00 2012-11-22 02:00:00 1058152260 1058152440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-22 02:00:00 2012-11-22 04:00:00 1058152440 1058152560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-22 04:00:00 2012-11-22 05:00:00 1058152560 1058152620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-22 05:00:00 2012-11-22 07:00:00 1058152620 1058152740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-22 07:00:00 2012-11-22 09:00:00 1058152740 1058152860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-22 09:00:00 2012-11-22 11:00:00 1058152860 1058152980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-22 11:00:00 2012-11-22 13:00:00 1058152980 1058153100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-22 13:00:00 2012-11-22 19:00:00 1058153100 1058153460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-22 19:00:00 2012-11-22 20:00:00 1058153460 1058153520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-22 20:00:00 2012-11-22 21:00:00 1058153520 1058153580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-22 21:00:00 2012-11-23 06:00:00 1058153580 1058154120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-23 06:00:00 2012-11-23 07:00:00 1058154120 1058154180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-23 07:00:00 2012-11-23 09:00:00 1058154180 1058154300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-23 09:00:00 2012-11-23 15:00:00 1058154300 1058154660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-23 15:00:00 2012-11-23 16:00:00 1058154660 1058154720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-23 16:00:00 2012-11-23 18:00:00 1058154720 1058154840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-23 18:00:00 2012-11-23 19:00:00 1058154840 1058154900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-23 19:00:00 2012-11-23 20:00:00 1058154900 1058154960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-23 20:00:00 2012-11-24 04:00:00 1058154960 1058155440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-24 04:00:00 2012-11-24 05:00:00 1058155440 1058155500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-24 05:00:00 2012-11-24 06:00:00 1058155500 1058155560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-24 06:00:00 2012-11-24 09:00:00 1058155560 1058155740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-24 09:00:00 2012-11-24 11:00:00 1058155740 1058155860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-24 11:00:00 2012-11-24 12:00:00 1058155860 1058155920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-24 12:00:00 2012-11-24 13:00:00 1058155920 1058155980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-24 13:00:00 2012-11-24 18:00:00 1058155980 1058156280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-24 18:00:00 2012-11-24 22:00:00 1058156280 1058156520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-24 22:00:00 2012-11-24 23:00:00 1058156520 1058156580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-24 23:00:00 2012-11-25 03:00:00 1058156580 1058156820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-25 03:00:00 2012-11-25 04:00:00 1058156820 1058156880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-25 04:00:00 2012-11-25 05:00:00 1058156880 1058156940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-25 05:00:00 2012-11-25 06:00:00 1058156940 1058157000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-25 06:00:00 2012-11-25 07:00:00 1058157000 1058157060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-25 07:00:00 2012-11-25 08:00:00 1058157060 1058157120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-25 08:00:00 2012-11-25 10:00:00 1058157120 1058157240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-25 10:00:00 2012-11-25 12:00:00 1058157240 1058157360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-25 12:00:00 2012-11-25 13:00:00 1058157360 1058157420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-25 13:00:00 2012-11-25 15:00:00 1058157420 1058157540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-25 15:00:00 2012-11-25 18:00:00 1058157540 1058157720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-25 18:00:00 2012-11-26 00:00:00 1058157720 1058158080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-26 00:00:00 2012-11-26 02:00:00 1058158080 1058158200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-26 02:00:00 2012-11-26 03:00:00 1058158200 1058158260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-26 03:00:00 2012-11-26 04:00:00 1058158260 1058158320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-26 04:00:00 2012-11-26 05:00:00 1058158320 1058158380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-26 05:00:00 2012-11-26 06:00:00 1058158380 1058158440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-26 06:00:00 2012-11-26 23:00:00 1058158440 1058159460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-26 23:00:00 2012-11-27 05:00:00 1058159460 1058159820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-27 05:00:00 2012-11-27 10:00:00 1058159820 1058160120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-27 10:00:00 2012-11-27 12:00:00 1058160120 1058160240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-27 12:00:00 2012-11-27 19:00:00 1058160240 1058160660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-27 19:00:00 2012-11-27 20:00:00 1058160660 1058160720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-27 20:00:00 2012-11-27 21:00:00 1058160720 1058160780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-27 21:00:00 2012-11-27 22:00:00 1058160780 1058160840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-27 22:00:00 2012-11-27 23:00:00 1058160840 1058160900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-27 23:00:00 2012-11-28 04:00:00 1058160900 1058161200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-28 04:00:00 2012-11-28 05:00:00 1058161200 1058161260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-28 05:00:00 2012-11-28 06:00:00 1058161260 1058161320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-28 06:00:00 2012-11-28 07:00:00 1058161320 1058161380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-28 07:00:00 2012-11-28 08:00:00 1058161380 1058161440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-28 08:00:00 2012-11-28 13:00:00 1058161440 1058161740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-28 13:00:00 2012-11-28 22:00:00 1058161740 1058162280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-28 22:00:00 2012-11-29 01:00:00 1058162280 1058162460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-29 01:00:00 2012-11-29 05:00:00 1058162460 1058162700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-29 05:00:00 2012-11-29 07:00:00 1058162700 1058162820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-29 07:00:00 2012-11-29 08:00:00 1058162820 1058162880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-29 08:00:00 2012-11-29 17:00:00 1058162880 1058163420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-29 17:00:00 2012-11-30 05:00:00 1058163420 1058164140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-30 05:00:00 2012-11-30 15:00:00 1058164140 1058164740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-11-30 15:00:00 2012-11-30 20:00:00 1058164740 1058165040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-11-30 20:00:00 2012-12-01 18:00:00 1058165040 1058166360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-01 18:00:00 2012-12-01 20:00:00 1058166360 1058166480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-01 20:00:00 2012-12-02 20:00:00 1058166480 1058167920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-02 20:00:00 2012-12-02 21:00:00 1058167920 1058167980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-02 21:00:00 2012-12-03 12:00:00 1058167980 1058168880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-03 12:00:00 2012-12-03 20:00:00 1058168880 1058169360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-03 20:00:00 2012-12-04 20:00:00 1058169360 1058170800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-04 20:00:00 2012-12-04 23:00:00 1058170800 1058170980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-04 23:00:00 2012-12-05 15:00:00 1058170980 1058171940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-05 15:00:00 2012-12-05 16:00:00 1058171940 1058172000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-05 16:00:00 2012-12-05 19:00:00 1058172000 1058172180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-05 19:00:00 2012-12-06 02:00:00 1058172180 1058172600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-06 02:00:00 2012-12-06 06:00:00 1058172600 1058172840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-06 06:00:00 2012-12-07 02:00:00 1058172840 1058174040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-07 02:00:00 2012-12-07 08:00:00 1058174040 1058174400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-07 08:00:00 2012-12-07 09:00:00 1058174400 1058174460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-07 09:00:00 2012-12-07 13:00:00 1058174460 1058174700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-07 13:00:00 2012-12-07 21:00:00 1058174700 1058175180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-07 21:00:00 2012-12-08 16:00:00 1058175180 1058176320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-08 16:00:00 2012-12-08 19:00:00 1058176320 1058176500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-08 19:00:00 2012-12-10 00:00:00 1058176500 1058178240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-10 00:00:00 2012-12-10 01:00:00 1058178240 1058178300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-10 01:00:00 2012-12-10 11:00:00 1058178300 1058178900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-10 11:00:00 2012-12-10 21:00:00 1058178900 1058179500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-10 21:00:00 2012-12-11 02:00:00 1058179500 1058179800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-11 02:00:00 2012-12-11 03:00:00 1058179800 1058179860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-11 03:00:00 2012-12-11 14:00:00 1058179860 1058180520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-11 14:00:00 2012-12-11 22:00:00 1058180520 1058181000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-11 22:00:00 2012-12-12 20:00:00 1058181000 1058182320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-12 20:00:00 2012-12-12 21:00:00 1058182320 1058182380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-12 21:00:00 2012-12-13 17:00:00 1058182380 1058183580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-13 17:00:00 2012-12-13 19:00:00 1058183580 1058183700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-13 19:00:00 2012-12-13 20:00:00 1058183700 1058183760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-13 20:00:00 2012-12-14 00:00:00 1058183760 1058184000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-14 00:00:00 2012-12-14 05:00:00 1058184000 1058184300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-14 05:00:00 2012-12-14 10:00:00 1058184300 1058184600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-14 10:00:00 2012-12-14 12:00:00 1058184600 1058184720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-14 12:00:00 2012-12-14 13:00:00 1058184720 1058184780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-14 13:00:00 2012-12-14 14:00:00 1058184780 1058184840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-14 14:00:00 2012-12-14 23:00:00 1058184840 1058185380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-14 23:00:00 2012-12-15 05:00:00 1058185380 1058185740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-15 05:00:00 2012-12-15 08:00:00 1058185740 1058185920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-15 08:00:00 2012-12-15 16:00:00 1058185920 1058186400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-15 16:00:00 2012-12-15 17:00:00 1058186400 1058186460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-15 17:00:00 2012-12-15 22:00:00 1058186460 1058186760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-15 22:00:00 2012-12-16 01:00:00 1058186760 1058186940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-16 01:00:00 2012-12-16 05:00:00 1058186940 1058187180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-16 05:00:00 2012-12-17 00:00:00 1058187180 1058188320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-17 00:00:00 2012-12-17 01:00:00 1058188320 1058188380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-17 01:00:00 2012-12-17 02:00:00 1058188380 1058188440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-17 02:00:00 2012-12-17 11:00:00 1058188440 1058188980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-17 11:00:00 2012-12-17 23:00:00 1058188980 1058189700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-17 23:00:00 2012-12-18 08:00:00 1058189700 1058190240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-18 08:00:00 2012-12-18 23:00:00 1058190240 1058191140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-18 23:00:00 2012-12-19 11:00:00 1058191140 1058191860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-19 11:00:00 2012-12-19 22:00:00 1058191860 1058192520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-19 22:00:00 2012-12-20 12:00:00 1058192520 1058193360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-20 12:00:00 2012-12-20 21:00:00 1058193360 1058193900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-20 21:00:00 2012-12-21 01:00:00 1058193900 1058194140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-21 01:00:00 2012-12-21 22:00:00 1058194140 1058195400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-21 22:00:00 2012-12-22 14:00:00 1058195400 1058196360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-22 14:00:00 2012-12-22 23:00:00 1058196360 1058196900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-22 23:00:00 2012-12-23 07:00:00 1058196900 1058197380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-23 07:00:00 2012-12-23 09:00:00 1058197380 1058197500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-23 09:00:00 2012-12-23 11:00:00 1058197500 1058197620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-23 11:00:00 2012-12-24 00:00:00 1058197620 1058198400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-24 00:00:00 2012-12-24 01:00:00 1058198400 1058198460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-24 01:00:00 2012-12-24 03:00:00 1058198460 1058198580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-24 03:00:00 2012-12-24 05:00:00 1058198580 1058198700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-24 05:00:00 2012-12-25 02:00:00 1058198700 1058199960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-25 02:00:00 2012-12-25 03:00:00 1058199960 1058200020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-25 03:00:00 2012-12-25 04:00:00 1058200020 1058200080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-25 04:00:00 2012-12-25 05:00:00 1058200080 1058200140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-25 05:00:00 2012-12-25 11:00:00 1058200140 1058200500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-25 11:00:00 2012-12-25 12:00:00 1058200500 1058200560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-25 12:00:00 2012-12-26 22:00:00 1058200560 1058202600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-26 22:00:00 2012-12-27 03:00:00 1058202600 1058202900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-27 03:00:00 2012-12-27 04:00:00 1058202900 1058202960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-27 04:00:00 2012-12-27 07:00:00 1058202960 1058203140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-27 07:00:00 2012-12-27 22:00:00 1058203140 1058204040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-27 22:00:00 2012-12-28 05:00:00 1058204040 1058204460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-28 05:00:00 2012-12-29 01:00:00 1058204460 1058205660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-29 01:00:00 2012-12-29 06:00:00 1058205660 1058205960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-29 06:00:00 2012-12-30 01:00:00 1058205960 1058207100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-30 01:00:00 2012-12-30 07:00:00 1058207100 1058207460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-30 07:00:00 2012-12-30 10:00:00 1058207460 1058207640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-30 10:00:00 2012-12-30 15:00:00 1058207640 1058207940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-30 15:00:00 2012-12-30 18:00:00 1058207940 1058208120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-30 18:00:00 2012-12-31 03:00:00 1058208120 1058208660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-31 03:00:00 2012-12-31 05:00:00 1058208660 1058208780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-31 05:00:00 2012-12-31 10:00:00 1058208780 1058209080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057798200_1058209080.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz -2012-12-31 10:00:00 2012-12-31 13:00:00 1058209080 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1057682220_1058209260.npz'] -2012-12-31 13:00:00 2013-12-31 13:00:00 1058209260 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1058209260_1058734860.npz'] -2013-12-31 13:00:00 2014-12-31 13:00:00 1058734860 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1058734860_1059260460.npz'] -2014-12-31 13:00:00 2015-12-31 13:00:00 1059260460 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1059260460_1059786060.npz'] -2016-11-17 04:00:00 2016-12-31 13:00:00 1060249200 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1060249200_1060313100.npz'] -2016-12-31 13:00:00 2017-08-09 21:00:00 1060313100 1060631820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1060313100_1060631820.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/110_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -1.8653443137804666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_113_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_113_CL(IMC).out deleted file mode 100644 index 0213eb615b9146d018793947f464a1b59d4e400c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_113_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -113_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-31 13:00:00 1060313160 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1060313160_1060838700.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/113_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06797042687733969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_118_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_118_CL(IMC).out deleted file mode 100644 index d8e8f233dcd4152e6d8a35df857924a073080e67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_118_CL(IMC).out +++ /dev/null @@ -1,25 +0,0 @@ -118_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-06-16 00:00:00 1059786120 1060027200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1059786120_1060027200.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/118_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06184538205464681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_119_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_119_CL(IMC).out deleted file mode 100644 index e6f0c8b302ba2f0955d6d9d9f10df81899a979c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_119_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -119_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 13:00:00 2010-12-31 13:00:00 1056631020 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1056631020_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1056631020_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1056631020_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 13:00:00 2011-12-31 13:00:00 1057156620 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1057156620_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1057156620_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1057156620_1057682220.npz -2011-12-31 13:00:00 2012-12-31 13:00:00 1057682220 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1057682220_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1057682220_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1057682220_1058209260.npz -2012-12-31 13:00:00 2013-12-31 13:00:00 1058209260 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1058209260_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1058209260_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1058209260_1058734860.npz -2013-12-31 13:00:00 2014-12-31 13:00:00 1058734860 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1058734860_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1058734860_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1058734860_1059260460.npz -2014-12-31 13:00:00 2015-12-31 13:00:00 1059260460 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1059260460_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1059260460_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1059260460_1059786060.npz -2015-12-31 13:00:00 2016-12-31 13:00:00 1059786060 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1059786060_1060313100.npz'] -2016-12-31 13:00:00 2017-12-31 13:00:00 1060313100 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1060313100_1060838700.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/119_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05528804063796997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_11_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_11_CL(IMC).out deleted file mode 100644 index b1c6c5b440e1d7dd4c9fdc7715fbdf67820fe93f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_11_CL(IMC).out +++ /dev/null @@ -1,77 +0,0 @@ -11_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-01-17 13:00:00 1996-12-20 15:00:00 1049291340 1049778180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1049291340_1049778180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1049291340_1049778180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1049291340_1049778180.npz -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-15 02:00:00 1049793840 1050295800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1049793840_1050295800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1049793840_1050295800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1049793840_1050295800.npz -1998-02-19 04:00:00 1998-10-20 15:00:00 1050390960 1050741540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1050390960_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1050390960_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1050390960_1050845040:dup1.npz -1998-10-20 17:00:00 1998-10-20 19:00:00 1050741660 1050741780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1050390960_1050845040:dup1.npz'] -1998-10-20 19:00:00 1998-12-31 12:00:00 1050741780 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1050390960_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1050390960_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1050390960_1050845040:dup1.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1055052720_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1055052720_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1055052720_1055578320.npz -2007-12-31 15:00:00 2008-12-31 11:00:00 1055578500 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/11_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.4374503294626872 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_13_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_13_CL(IMC).out deleted file mode 100644 index 03baf67ca53eaca7602f6ead2f75687f09fa530a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_13_CL(IMC).out +++ /dev/null @@ -1,76 +0,0 @@ -13_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1048215660_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1048215660_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1048215660_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1049266800_1049793840.npz -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1049793840_1050319440.npz -1997-12-31 13:00:00 1998-12-31 12:00:00 1050319500 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1050319500_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1050319500_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1050319500_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-26 07:00:00 1054527120 1055045220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1054527120_1055045220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1054527120_1055045220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1054527120_1055045220.npz -2007-01-04 03:00:00 2007-12-31 12:00:00 1055057940 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1055057940_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1055057940_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1055057940_1055578320.npz -2008-01-24 14:00:00 2008-12-31 11:00:00 1055613000 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1055613000_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1055613000_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1055613000_1056105300.npz -2008-12-31 12:00:00 2009-12-31 10:00:00 1056105360 1056630840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1056105360_1056630840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1056105360_1056630840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1056105360_1056630840.npz -2009-12-31 13:00:00 2010-12-31 12:00:00 1056631020 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1056631020_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1056631020_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1056631020_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-27 14:00:00 1057682160 1058203560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1057682160_1058203560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1057682160_1058203560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1057682160_1058203560.npz -2013-01-22 00:00:00 2013-12-31 12:00:00 1058240160 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1058240160_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1058240160_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1058240160_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/13_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.18053301175435385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_14_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_14_CL(IMC).out deleted file mode 100644 index 31cdfeae336201c2821a17802fae84817ce17460..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_14_CL(IMC).out +++ /dev/null @@ -1,42 +0,0 @@ -14_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1048215660_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1048215660_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1048215660_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1049266800_1049793840.npz -1996-12-31 12:00:00 1997-12-30 15:00:00 1049793840 1050318180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1049793840_1050318180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1049793840_1050318180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1049793840_1050318180.npz -1998-01-06 17:00:00 1998-05-06 15:00:00 1050328380 1050501060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1050328380_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1050328380_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1050328380_1050845040:dup1.npz -1998-05-06 17:00:00 1998-05-06 19:00:00 1050501180 1050501300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1050328380_1050845040:dup1.npz'] -1998-05-06 19:00:00 1998-12-31 12:00:00 1050501300 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1050328380_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1050328380_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1050328380_1050845040:dup1.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-06-02 20:00:00 1053474540 1053696720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1053474540_1053696720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1053474540_1053696720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/14_CL(IMC)_1053474540_1053696720.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.13651962677637736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_15_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_15_CL(IMC).out deleted file mode 100644 index 654803d088619542db0e03e2685856679e87d67f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_15_CL(IMC).out +++ /dev/null @@ -1,87 +0,0 @@ -15_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-01-01 17:00:00 1994-12-31 12:00:00 1048217340 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1048217340_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1048217340_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1048217340_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1048741200_1049266800.npz -1995-12-31 13:00:00 1996-12-10 15:00:00 1049266860 1049763780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1049266860_1049763780.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1049266860_1049763780:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1049266860_1049763780.npz -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1049793840_1050319440.npz -1997-12-31 12:00:00 1998-10-21 15:00:00 1050319440 1050742980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1050319440_1050845040:dup1.npz -1998-10-21 17:00:00 1998-10-21 19:00:00 1050743100 1050743220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-10-21 19:00:00 1998-12-31 12:00:00 1050743220 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1050319440_1050845040:dup1.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1052948880_1053474480.npz -2003-12-31 14:00:00 2004-09-09 13:00:00 1053474600 1053838860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1053474600_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1053474600_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1053474600_1054001520:dup1.npz -2004-09-09 13:00:00 2004-09-10 13:00:00 1053838860 1053840300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1053474600_1054001520:dup1.npz'] -2004-09-10 13:00:00 2004-12-31 12:00:00 1053840300 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1053474600_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1053474600_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1053474600_1054001520:dup1.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-29 02:00:00 1054527120 1055049240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1054527120_1055049240.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1054527120_1055049240:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1054527120_1055049240.npz -2007-01-04 03:00:00 2007-12-31 11:00:00 1055057940 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1055057940_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1055057940_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1055057940_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1055057940_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1055057940_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1055057940_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/15_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.5237646540006001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_18_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_18_CL(IMC).out deleted file mode 100644 index aeee2e46bc9a6143ef036a63e4c26771e23a20d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_18_CL(IMC).out +++ /dev/null @@ -1,22 +0,0 @@ -18_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2012-10-14 12:00:00 2012-12-31 12:00:00 1058096880 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1058096880_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1058096880_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1058096880_1058209200.npz -'StationConcatenate' object has no attribute 'existing_data' -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-30 02:00:00 1061889900 1062414840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1061889900_1062414840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1061889900_1062414840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/18_CL(IMC)_1061889900_1062414840.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.049707651138305664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_19_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_19_CL(IMC).out deleted file mode 100644 index 1a564fe2e691ebaf725f3a3475cb3e3af845338c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_19_CL(IMC).out +++ /dev/null @@ -1,92 +0,0 @@ -19_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-04-28 20:00:00 1048215660 1048386000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1048215660_1048386000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1048215660_1048386000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1048215660_1048386000.npz -'StationConcatenate' object has no attribute 'existing_data' -1995-07-16 10:00:00 1995-12-31 12:00:00 1049024760 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1049024760_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1049024760_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1049024760_1049266800.npz -1995-12-31 13:00:00 1996-12-31 12:00:00 1049266860 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1049266860_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1049266860_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1049266860_1049793840.npz -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1049793840_1050319440.npz -1997-12-31 12:00:00 1998-01-15 00:00:00 1050319440 1050340320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1998-01-15 00:00:00 1998-01-15 11:00:00 1050340320 1050340980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-01-15 11:00:00 1998-01-15 12:00:00 1050340980 1050341040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1998-01-15 12:00:00 1998-01-15 15:00:00 1050341040 1050341220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-01-15 15:00:00 1998-01-15 21:00:00 1050341220 1050341580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1998-01-15 21:00:00 1998-01-16 02:00:00 1050341580 1050341880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-01-16 05:00:00 1998-02-09 00:00:00 1050342060 1050376320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1998-02-09 00:00:00 1998-02-09 02:00:00 1050376320 1050376440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-02-09 02:00:00 1998-10-19 22:00:00 1050376440 1050740520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1998-10-20 02:00:00 1998-10-20 04:00:00 1050740760 1050740880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-10-20 04:00:00 1998-12-12 07:00:00 1050740880 1050817380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1998-12-12 07:00:00 1998-12-13 12:00:00 1050817380 1050819120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-12-13 12:00:00 1998-12-16 20:00:00 1050819120 1050823920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1998-12-16 20:00:00 1998-12-17 12:00:00 1050823920 1050824880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-12-17 12:00:00 1998-12-17 19:00:00 1050824880 1050825300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1998-12-17 19:00:00 1998-12-19 12:00:00 1050825300 1050827760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-12-19 12:00:00 1998-12-25 19:00:00 1050827760 1050836820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1998-12-25 19:00:00 1998-12-25 20:00:00 1050836820 1050836880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-12-25 20:00:00 1998-12-25 21:00:00 1050836880 1050836940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1998-12-25 21:00:00 1998-12-25 22:00:00 1050836940 1050837000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-12-25 22:00:00 1998-12-30 17:00:00 1050837000 1050843900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1998-12-30 17:00:00 1998-12-30 18:00:00 1050843900 1050843960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz'] -1998-12-30 18:00:00 1998-12-31 12:00:00 1050843960 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050319440_1050845040:dup1.npz -1999-01-01 20:00:00 1999-12-31 12:00:00 1050846960 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050846960_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050846960_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1050846960_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-11-26 03:00:00 1051897680 1052372340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1051897680_1052372340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1051897680_1052372340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1051897680_1052372340.npz -2002-02-04 22:00:00 2002-07-15 12:00:00 1052474280 1052705520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1052474280_1052705520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1052474280_1052705520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1052474280_1052705520.npz -2004-02-14 11:00:00 2004-06-12 04:00:00 1053539220 1053710160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053830580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz -2004-06-30 12:00:00 2004-07-31 04:00:00 1053736560 1053780720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz'] -2004-07-31 04:00:00 2004-07-31 12:00:00 1053780720 1053781200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053830580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz -2004-07-31 12:00:00 2004-08-31 04:00:00 1053781200 1053825360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz'] -2004-08-31 04:00:00 2004-08-31 19:00:00 1053825360 1053826260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053830580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz -2004-08-31 19:00:00 2004-09-03 04:00:00 1053826260 1053829680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz'] -2004-09-03 04:00:00 2004-09-03 19:00:00 1053829680 1053830580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053830580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz -2004-09-03 19:00:00 2004-09-09 21:00:00 1053830580 1053839340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/19_CL(IMC)_1053539220_1053839340.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.15195417404174805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_1_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_1_CL(IMC).out deleted file mode 100644 index 3e23810a0e4176bce4d7b9e6f00d2b5179cee465..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_1_CL(IMC).out +++ /dev/null @@ -1,67 +0,0 @@ -1_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1999-12-31 14:00:00 2000-12-31 13:00:00 1051370760 1051897740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1051370760_1051897740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1051370760_1051897740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1051370760_1051897740.npz -'StationConcatenate' object has no attribute 'existing_data' -2000-12-31 13:00:00 2001-12-31 13:00:00 1051897740 1052423340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1051897740_1052423340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1051897740_1052423340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1051897740_1052423340.npz -2001-12-31 13:00:00 2002-12-31 13:00:00 1052423340 1052948940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1052423340_1052948940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1052423340_1052948940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1052423340_1052948940.npz -2002-12-31 13:00:00 2003-02-03 05:00:00 1052948940 1052997420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1052948940_1053474540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1052948940_1053474540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1052948940_1053474540:dup1.npz -2003-02-03 06:00:00 2003-02-03 11:00:00 1052997480 1052997780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1052948940_1053474540:dup1.npz'] -2003-03-19 06:00:00 2003-12-31 13:00:00 1053060840 1053474540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1052948940_1053474540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1052948940_1053474540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1052948940_1053474540:dup1.npz -2003-12-31 13:00:00 2004-12-31 13:00:00 1053474540 1054001580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1053474540_1054001580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1053474540_1054001580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1053474540_1054001580.npz -2004-12-31 13:00:00 2005-12-31 13:00:00 1054001580 1054527180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054001580_1054527180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054001580_1054527180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054001580_1054527180.npz -2005-12-31 13:00:00 2006-10-10 01:00:00 1054527180 1054933980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054527180_1055052780.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054527180_1055052780:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054527180_1055052780:dup1.npz -2006-10-10 01:00:00 2006-10-10 02:00:00 1054933980 1054934040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054527180_1055052780:dup1.npz'] -2006-10-10 02:00:00 2006-11-06 22:00:00 1054934040 1054974120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054527180_1055052780.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054527180_1055052780:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054527180_1055052780:dup1.npz -2006-11-06 22:00:00 2006-11-06 23:00:00 1054974120 1054974180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054527180_1055052780:dup1.npz'] -2006-11-06 23:00:00 2006-12-31 13:00:00 1054974180 1055052780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054527180_1055052780.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054527180_1055052780:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1054527180_1055052780:dup1.npz -2006-12-31 13:00:00 2007-12-31 13:00:00 1055052780 1055578380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1055052780_1055578380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1055052780_1055578380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1055052780_1055578380.npz -2007-12-31 13:00:00 2008-12-31 13:00:00 1055578380 1056105420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1055578380_1056105420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1055578380_1056105420:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1055578380_1056105420.npz -2008-12-31 13:00:00 2009-12-31 13:00:00 1056105420 1056631020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056105420_1056631020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056105420_1056631020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056105420_1056631020.npz -2009-12-31 13:00:00 2010-11-18 01:00:00 1056631020 1057093980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056631020_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056631020_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056631020_1057156620.npz -2010-11-18 01:00:00 2010-11-18 04:00:00 1057093980 1057094160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056631020_1057156620.npz'] -2010-11-18 04:00:00 2010-11-30 09:00:00 1057094160 1057111740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056631020_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056631020_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056631020_1057156620.npz -2010-11-30 09:00:00 2010-11-30 10:00:00 1057111740 1057111800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056631020_1057156620.npz'] -2010-11-30 10:00:00 2010-12-31 13:00:00 1057111800 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056631020_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056631020_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1056631020_1057156620.npz -2010-12-31 13:00:00 2011-12-31 13:00:00 1057156620 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1057156620_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1057156620_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1057156620_1057682220.npz -2011-12-31 13:00:00 2011-12-31 14:00:00 1057682220 1057682280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1057682220_1057682280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1057682220_1058209260.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1057682220_1058209260.npz -2011-12-31 20:00:00 2012-12-31 13:00:00 1057682640 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1057682220_1058209260.npz'] -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1058209320_1058734860.npz'] -2013-12-31 20:00:00 2014-02-27 23:00:00 1058735280 1058818980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/1_CL(IMC)_1058735280_1058818980.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.2597503860791524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_20_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_20_CL(IMC).out deleted file mode 100644 index aa781596cdf4168ad8c0d15bb333a0fc6e00ecac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_20_CL(IMC).out +++ /dev/null @@ -1,22 +0,0 @@ -20_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2012-08-21 12:00:00 2012-12-31 12:00:00 1058019120 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1058019120_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1058019120_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1058019120_1058209200.npz -'StationConcatenate' object has no attribute 'existing_data' -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1059260400_1059786000.npz -2015-12-31 16:00:00 2016-12-31 12:00:00 1059786240 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1059786240_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/20_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05324209133783976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_21_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_21_CL(IMC).out deleted file mode 100644 index 8677d252f1641650c0a507374746196335eb9344..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_21_CL(IMC).out +++ /dev/null @@ -1,16 +0,0 @@ -21_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2014-08-01 15:00:00 2014-12-31 12:00:00 1059041700 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/21_CL(IMC)_1059041700_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/21_CL(IMC)_1059041700_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/21_CL(IMC)_1059041700_1059260400.npz -'StationConcatenate' object has no attribute 'existing_data' -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/21_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/21_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/21_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/21_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/21_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/21_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/21_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/21_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02793118953704834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_22_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_22_CL(IMC).out deleted file mode 100644 index 2c28e76b6fde423e6936135337991ee36520ea50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_22_CL(IMC).out +++ /dev/null @@ -1,52 +0,0 @@ -22_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2003-02-03 04:00:00 2003-12-31 12:00:00 1052997360 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1052997360_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1052997360_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1052997360_1053474480.npz -'StationConcatenate' object has no attribute 'existing_data' -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1055052720_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1055052720_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/22_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.35917023022969563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_23_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_23_CL(IMC).out deleted file mode 100644 index 57c3ff9407e414c4ed4ad8e4482b666f1842cdb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_23_CL(IMC).out +++ /dev/null @@ -1,83 +0,0 @@ -23_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1048215660_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1048215660_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1048215660_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1049266800_1049793840.npz -1996-12-31 12:00:00 1997-07-22 15:00:00 1049793840 1050086340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1049793840_1050309540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1049793840_1050309540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1049793840_1050309540:dup1.npz -1997-07-25 17:00:00 1997-08-02 15:00:00 1050090780 1050102180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1049793840_1050309540:dup1.npz'] -1997-08-08 17:00:00 1997-12-24 15:00:00 1050110940 1050309540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1049793840_1050309540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1049793840_1050309540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1049793840_1050309540:dup1.npz -1998-03-05 17:00:00 1998-12-31 12:00:00 1050411900 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1050411900_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1050411900_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1050411900_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-24 03:00:00 1054001520 1054516500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1054001520_1054516500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1054001520_1054516500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1054001520_1054516500.npz -2006-01-06 01:00:00 2006-12-31 12:00:00 1054535100 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1054535100_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1054535100_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1054535100_1055052720.npz -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1055052720_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1055052720_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/23_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.4700547655423482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_24_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_24_CL(IMC).out deleted file mode 100644 index 5921e2282c5f0b04b62b7a2a36fd54e38ba7079d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_24_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -24_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/24_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/24_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/24_CL(IMC)_1061889900_1062416940.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020389453570048014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_26_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_26_CL(IMC).out deleted file mode 100644 index 6b8afdb9f4b44487dc7e310001b160693f9b65cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_26_CL(IMC).out +++ /dev/null @@ -1,83 +0,0 @@ -26_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-01-22 17:00:00 1994-02-21 04:00:00 1048247580 1048290000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1048247580_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1048247580_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1048247580_1048741200:dup1.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-02-22 04:00:00 1994-02-22 10:00:00 1048291440 1048291800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1048247580_1048741200:dup1.npz'] -1994-02-22 11:00:00 1994-12-31 12:00:00 1048291860 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1048247580_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1048247580_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1048247580_1048741200:dup1.npz -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1049266800_1049793840.npz -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1049793840_1050319440.npz -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1055052720_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1055052720_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/26_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.4828841249148051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_270_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_270_CL(IMC).out deleted file mode 100644 index b5b47b185e6028725e477a58f46c6a5356a560bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_270_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -270_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2006-03-23 12:30:00 2006-12-31 12:30:00 1054645230 1055052750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1054645230_1055052750.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2006-12-31 12:30:00 2007-12-31 12:30:00 1055052750 1055578350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1055052750_1055578350.npz'] -2007-12-31 12:30:00 2008-12-31 12:30:00 1055578350 1056105390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1055578350_1056105390.npz'] -2008-12-31 12:30:00 2009-12-31 12:30:00 1056105390 1056630990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1056105390_1056630990.npz'] -2009-12-31 12:30:00 2010-12-31 12:30:00 1056630990 1057156590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1056630990_1057156590.npz'] -2010-12-31 12:30:00 2011-12-31 12:30:00 1057156590 1057682190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1057156590_1057682190.npz'] -2011-12-31 12:30:00 2012-12-31 12:30:00 1057682190 1058209230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1057682190_1058209230.npz'] -2012-12-31 12:30:00 2013-12-31 12:30:00 1058209230 1058734830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1058209230_1058734830.npz'] -2013-12-31 12:30:00 2014-12-31 12:30:00 1058734830 1059260430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1058734830_1059260430.npz'] -2014-12-31 12:30:00 2014-12-31 13:30:00 1059260430 1059260490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1059260430_1059786030.npz'] -2014-12-31 13:30:00 2015-12-31 12:30:00 1059260490 1059786030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1059260430_1059786030.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1059260490_1059786030.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1059260430_1059786030.npz -2015-12-31 12:30:00 2016-12-31 12:30:00 1059786030 1060313070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1059786030_1060313070.npz'] -2016-12-31 12:30:00 2017-12-31 12:30:00 1060313070 1060838670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1060313070_1060838670.npz'] -2019-12-31 13:30:00 2020-12-31 13:30:00 1061889930 1062416970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/270_CL(IMC)_1061889930_1062416970.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.11122530301411947 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_271_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_271_CL(IMC).out deleted file mode 100644 index 59022eeca42ef7b734fbdf87bc18d1db3ad67c6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_271_CL(IMC).out +++ /dev/null @@ -1,27 +0,0 @@ -271_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2002-01-13 13:30:00 2002-12-31 12:30:00 1052442090 1052948910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1052442090_1052948910.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2002-12-31 12:30:00 2003-12-31 12:30:00 1052948910 1053474510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1052948910_1053474510.npz'] -2003-12-31 12:30:00 2004-12-31 12:30:00 1053474510 1054001550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1053474510_1054001550.npz'] -2004-12-31 12:30:00 2005-12-31 12:30:00 1054001550 1054527150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1054001550_1054527150.npz'] -2005-12-31 12:30:00 2006-12-31 12:30:00 1054527150 1055052750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1054527150_1055052750.npz'] -2006-12-31 12:30:00 2007-12-31 12:30:00 1055052750 1055578350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1055052750_1055578350.npz'] -2007-12-31 12:30:00 2008-12-31 12:30:00 1055578350 1056105390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1055578350_1056105390.npz'] -2008-12-31 12:30:00 2009-12-31 12:30:00 1056105390 1056630990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1056105390_1056630990.npz'] -2009-12-31 12:30:00 2010-12-31 12:30:00 1056630990 1057156590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1056630990_1057156590.npz'] -2010-12-31 12:30:00 2011-12-31 12:30:00 1057156590 1057682190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1057156590_1057682190.npz'] -2011-12-31 12:30:00 2012-12-31 12:30:00 1057682190 1058209230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1057682190_1058209230.npz'] -2012-12-31 12:30:00 2013-12-31 12:30:00 1058209230 1058734830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1058209230_1058734830.npz'] -2013-12-31 12:30:00 2014-12-31 12:30:00 1058734830 1059260430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1058734830_1059260430.npz'] -2014-12-31 12:30:00 2014-12-31 13:30:00 1059260430 1059260490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1059260430_1059786030.npz'] -2014-12-31 13:30:00 2015-12-31 12:30:00 1059260490 1059786030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1059260430_1059786030.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1059260490_1059786030.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1059260430_1059786030.npz -2015-12-31 12:30:00 2016-12-31 12:30:00 1059786030 1060313070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1059786030_1060313070.npz'] -2016-12-31 12:30:00 2017-12-31 12:30:00 1060313070 1060838670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1060313070_1060838670.npz'] -2019-12-31 13:30:00 2020-02-06 23:30:00 1061889930 1061943810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1061889930_1061943810.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1061889930_1061943810:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/271_CL(IMC)_1061889930_1061943810.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.12284319003423055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_272_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_272_CL(IMC).out deleted file mode 100644 index 84b499c28cc5e0be9812c78498d823fb8f2fa3ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_272_CL(IMC).out +++ /dev/null @@ -1,27 +0,0 @@ -272_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2001-12-31 13:30:00 2002-12-31 12:30:00 1052423370 1052948910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1052423370_1052948910.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2002-12-31 12:30:00 2003-12-31 12:30:00 1052948910 1053474510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1052948910_1053474510.npz'] -2003-12-31 12:30:00 2004-12-31 12:30:00 1053474510 1054001550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1053474510_1054001550.npz'] -2004-12-31 12:30:00 2005-12-31 12:30:00 1054001550 1054527150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1054001550_1054527150.npz'] -2005-12-31 12:30:00 2006-12-31 12:30:00 1054527150 1055052750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1054527150_1055052750.npz'] -2006-12-31 12:30:00 2007-12-31 12:30:00 1055052750 1055578350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1055052750_1055578350.npz'] -2007-12-31 12:30:00 2008-12-31 12:30:00 1055578350 1056105390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1055578350_1056105390.npz'] -2008-12-31 12:30:00 2009-12-31 12:30:00 1056105390 1056630990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1056105390_1056630990.npz'] -2009-12-31 12:30:00 2010-12-31 12:30:00 1056630990 1057156590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1056630990_1057156590.npz'] -2010-12-31 12:30:00 2011-12-31 12:30:00 1057156590 1057682190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1057156590_1057682190.npz'] -2011-12-31 12:30:00 2012-12-31 12:30:00 1057682190 1058209230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1057682190_1058209230.npz'] -2012-12-31 12:30:00 2013-12-31 12:30:00 1058209230 1058734830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1058209230_1058734830.npz'] -2013-12-31 12:30:00 2014-12-31 12:30:00 1058734830 1059260430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1058734830_1059260430.npz'] -2014-12-31 12:30:00 2014-12-31 13:30:00 1059260430 1059260490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1059260430_1059786030.npz'] -2014-12-31 13:30:00 2015-12-31 12:30:00 1059260490 1059786030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1059260430_1059786030.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1059260490_1059786030.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1059260430_1059786030.npz -2015-12-31 12:30:00 2016-12-31 12:30:00 1059786030 1060313070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1059786030_1060313070.npz'] -2016-12-31 12:30:00 2017-12-31 12:30:00 1060313070 1060838670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1060313070_1060838670.npz'] -2019-12-31 13:30:00 2020-01-29 02:30:00 1061889930 1061931030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1061889930_1061931030.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1061889930_1061931030:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/272_CL(IMC)_1061889930_1061931030.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.11006602048873901 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_274_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_274_CL(IMC).out deleted file mode 100644 index 6004c955ad6f666f241d2d580a0e27d0014f379c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_274_CL(IMC).out +++ /dev/null @@ -1,27 +0,0 @@ -274_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2002-02-03 15:30:00 2002-12-31 12:30:00 1052472450 1052948910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1052472450_1052948910.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2002-12-31 12:30:00 2003-12-31 12:30:00 1052948910 1053474510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1052948910_1053474510.npz'] -2003-12-31 12:30:00 2004-12-31 12:30:00 1053474510 1054001550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1053474510_1054001550.npz'] -2004-12-31 12:30:00 2005-12-31 12:30:00 1054001550 1054527150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1054001550_1054527150.npz'] -2005-12-31 12:30:00 2006-12-31 12:30:00 1054527150 1055052750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1054527150_1055052750.npz'] -2006-12-31 12:30:00 2007-12-31 12:30:00 1055052750 1055578350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1055052750_1055578350.npz'] -2007-12-31 12:30:00 2008-12-31 12:30:00 1055578350 1056105390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1055578350_1056105390.npz'] -2008-12-31 12:30:00 2009-12-31 12:30:00 1056105390 1056630990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1056105390_1056630990.npz'] -2009-12-31 12:30:00 2010-12-31 12:30:00 1056630990 1057156590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1056630990_1057156590.npz'] -2010-12-31 12:30:00 2011-12-31 12:30:00 1057156590 1057682190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1057156590_1057682190.npz'] -2011-12-31 12:30:00 2012-12-31 12:30:00 1057682190 1058209230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1057682190_1058209230.npz'] -2012-12-31 12:30:00 2013-12-31 12:30:00 1058209230 1058734830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1058209230_1058734830.npz'] -2013-12-31 12:30:00 2014-12-31 12:30:00 1058734830 1059260430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1058734830_1059260430.npz'] -2014-12-31 12:30:00 2014-12-31 13:30:00 1059260430 1059260490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1059260430_1059786030.npz'] -2014-12-31 13:30:00 2015-12-31 12:30:00 1059260490 1059786030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1059260430_1059786030.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1059260490_1059786030.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1059260430_1059786030.npz -2015-12-31 12:30:00 2016-12-31 12:30:00 1059786030 1060313070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1059786030_1060313070.npz'] -2016-12-31 12:30:00 2017-12-31 12:30:00 1060313070 1060838670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1060313070_1060838670.npz'] -2019-12-31 13:30:00 2020-12-31 13:30:00 1061889930 1062416970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/274_CL(IMC)_1061889930_1062416970.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.12001124620437623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_275_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_275_CL(IMC).out deleted file mode 100644 index 8eb09690198f4cf67f06b47ef31ab46d25efa79d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_275_CL(IMC).out +++ /dev/null @@ -1,27 +0,0 @@ -275_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2001-12-31 13:30:00 2002-12-31 12:30:00 1052423370 1052948910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1052423370_1052948910.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2002-12-31 12:30:00 2003-12-31 12:30:00 1052948910 1053474510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1052948910_1053474510.npz'] -2003-12-31 12:30:00 2004-12-31 12:30:00 1053474510 1054001550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1053474510_1054001550.npz'] -2004-12-31 12:30:00 2005-12-31 12:30:00 1054001550 1054527150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1054001550_1054527150.npz'] -2005-12-31 12:30:00 2006-12-31 12:30:00 1054527150 1055052750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1054527150_1055052750.npz'] -2006-12-31 12:30:00 2007-12-31 12:30:00 1055052750 1055578350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1055052750_1055578350.npz'] -2007-12-31 12:30:00 2008-12-31 12:30:00 1055578350 1056105390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1055578350_1056105390.npz'] -2008-12-31 12:30:00 2009-12-31 12:30:00 1056105390 1056630990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1056105390_1056630990.npz'] -2009-12-31 12:30:00 2010-12-31 12:30:00 1056630990 1057156590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1056630990_1057156590.npz'] -2010-12-31 12:30:00 2011-12-31 12:30:00 1057156590 1057682190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1057156590_1057682190.npz'] -2011-12-31 12:30:00 2012-12-31 12:30:00 1057682190 1058209230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1057682190_1058209230.npz'] -2012-12-31 12:30:00 2013-12-31 12:30:00 1058209230 1058734830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1058209230_1058734830.npz'] -2013-12-31 12:30:00 2014-12-31 12:30:00 1058734830 1059260430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1058734830_1059260430.npz'] -2014-12-31 12:30:00 2014-12-31 13:30:00 1059260430 1059260490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1059260430_1059786030.npz'] -2014-12-31 13:30:00 2015-12-31 12:30:00 1059260490 1059786030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1059260430_1059786030.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1059260490_1059786030.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1059260430_1059786030.npz -2015-12-31 12:30:00 2016-12-31 12:30:00 1059786030 1060313070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1059786030_1060313070.npz'] -2016-12-31 12:30:00 2017-12-31 12:30:00 1060313070 1060838670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1060313070_1060838670.npz'] -2019-12-31 13:30:00 2020-12-31 13:30:00 1061889930 1062416970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/275_CL(IMC)_1061889930_1062416970.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.13361499309539795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_278_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_278_CL(IMC).out deleted file mode 100644 index 2e168b1a87922f2216c96f7f13d859ec4b1d8700..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_278_CL(IMC).out +++ /dev/null @@ -1,13 +0,0 @@ -278_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2014-12-31 13:30:00 2015-12-31 12:30:00 1059260490 1059786030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/278_CL(IMC)_1059260490_1059786030.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/278_CL(IMC)_1059260490_1059786030:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/278_CL(IMC)_1059260490_1059786030.npz -'StationConcatenate' object has no attribute 'existing_data' -2015-12-31 12:30:00 2016-12-31 12:30:00 1059786030 1060313070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/278_CL(IMC)_1059786030_1060313070.npz'] -2016-12-31 12:30:00 2017-12-31 12:30:00 1060313070 1060838670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/278_CL(IMC)_1060313070_1060838670.npz'] -2019-12-31 13:30:00 2020-12-31 13:30:00 1061889930 1062416970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/278_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/278_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/278_CL(IMC)_1061889930_1062416970.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.031845720609029134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_279_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_279_CL(IMC).out deleted file mode 100644 index 7f8f97bdb055a5e7ebd08400bf2fcc0f9981c1b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_279_CL(IMC).out +++ /dev/null @@ -1,13 +0,0 @@ -279_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2014-12-31 13:30:00 2015-12-31 12:30:00 1059260490 1059786030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/279_CL(IMC)_1059260490_1059786030.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/279_CL(IMC)_1059260490_1059786030:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/279_CL(IMC)_1059260490_1059786030.npz -'StationConcatenate' object has no attribute 'existing_data' -2015-12-31 12:30:00 2016-12-31 12:30:00 1059786030 1060313070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/279_CL(IMC)_1059786030_1060313070.npz'] -2016-12-31 12:30:00 2017-12-31 12:30:00 1060313070 1060838670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/279_CL(IMC)_1060313070_1060838670.npz'] -2019-12-31 13:30:00 2020-12-31 13:30:00 1061889930 1062416970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/279_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/279_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/279_CL(IMC)_1061889930_1062416970.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.023185062408447265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_27_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_27_CL(IMC).out deleted file mode 100644 index 4977fb6b7798a8088a06aa9fc4e88b0a813f1445..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_27_CL(IMC).out +++ /dev/null @@ -1,17 +0,0 @@ -27_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2000-01-21 00:00:00 2000-12-31 12:00:00 1051400160 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1051400160_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1051400160_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1051400160_1051897680.npz -'StationConcatenate' object has no attribute 'existing_data' -2000-12-31 12:00:00 2001-12-20 11:00:00 1051897680 1052407380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1051897680_1052407380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1051897680_1052407380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1051897680_1052407380.npz -2002-01-05 12:00:00 2002-12-13 19:00:00 1052430480 1052923380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1052430480_1052923380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1052430480_1052923380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1052430480_1052923380.npz -2003-01-14 04:00:00 2003-04-15 20:00:00 1052968560 1053100560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1052968560_1053100560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1052968560_1053100560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/27_CL(IMC)_1052968560_1053100560.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02839513619740804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_28_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_28_CL(IMC).out deleted file mode 100644 index 447171a96fbd14a7ae48330975a74a9631ec87c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_28_CL(IMC).out +++ /dev/null @@ -1,55 +0,0 @@ -28_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1048215660_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1048215660_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1048215660_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1049266800_1049793840.npz -1996-12-31 12:00:00 1997-02-13 15:00:00 1049793840 1049857380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1049793840_1050319440:dup1.npz -1997-02-13 17:00:00 1997-02-20 15:00:00 1049857500 1049867460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1049793840_1050319440:dup1.npz'] -1997-02-24 17:00:00 1997-12-31 12:00:00 1049873340 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1049793840_1050319440:dup1.npz -1997-12-31 12:00:00 1998-03-26 11:00:00 1050319440 1050441780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz -1998-03-26 11:00:00 1998-03-26 12:00:00 1050441780 1050441840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz'] -1998-03-26 12:00:00 1998-04-10 16:00:00 1050441840 1050463680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz -1998-04-10 16:00:00 1998-04-10 19:00:00 1050463680 1050463860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-04-10 19:00:00 1998-04-20 03:00:00 1050463860 1050477300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz -1998-04-30 06:00:00 1998-04-30 13:00:00 1050491880 1050492300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz'] -1998-04-30 13:00:00 1998-09-07 00:00:00 1050492300 1050678720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz -1998-09-07 00:00:00 1998-09-07 01:00:00 1050678720 1050678780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz'] -1998-10-25 23:00:00 1998-12-31 12:00:00 1050749220 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-28 15:00:00 1050845040 1051366500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050845040_1051366500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050845040_1051366500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1050845040_1051366500.npz -2000-01-06 02:00:00 2000-12-31 12:00:00 1051378680 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1051378680_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1051378680_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1051378680_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-04-30 20:00:00 1052423280 1052596560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1052423280_1052596560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1052423280_1052596560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1052423280_1052596560.npz -2020-03-26 06:00:00 2020-12-31 13:00:00 1062013320 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1062013320_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1062013320_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/28_CL(IMC)_1062013320_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.15586634079615275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_29_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_29_CL(IMC).out deleted file mode 100644 index e7b5e9b4dab872043ba4f01cd445d741ac5e67cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_29_CL(IMC).out +++ /dev/null @@ -1,73 +0,0 @@ -29_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-05-23 03:00:00 1994-12-31 12:00:00 1048420980 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1048420980_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1048420980_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1048420980_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 11:00:00 1049266800 1049793780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1049266800_1049793780.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1049266800_1049793780:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1049266800_1049793780.npz -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1049793840_1050319440.npz -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-25 03:00:00 1052948880 1053465300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1052948880_1053465300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1052948880_1053465300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1052948880_1053465300.npz -2004-01-06 01:00:00 2004-12-31 12:00:00 1053482460 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1053482460_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1053482460_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1053482460_1054001520.npz -2004-12-31 12:00:00 2005-02-10 18:00:00 1054001520 1054060920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1054001520_1054060920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1054001520_1054060920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1054001520_1054060920.npz -2007-05-31 13:00:00 2007-12-31 11:00:00 1055270220 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1055270220_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1055270220_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1055270220_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1055270220_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1055270220_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/29_CL(IMC)_1060313040_1060838640.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.27129917542139687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_2_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_2_CL(IMC).out deleted file mode 100644 index 5aa0bdf3ad56afc8c5311fc5c316c3b720e3cb01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_2_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -2_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011473306020100911 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_30_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_30_CL(IMC).out deleted file mode 100644 index 9aed16bb74e7023663d4e96f272a7b3b9d9e9ce5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_30_CL(IMC).out +++ /dev/null @@ -1,93 +0,0 @@ -30_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1048215660_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1048215660_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1048215660_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1049266800_1049793840.npz -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1049793840_1050319440.npz -1997-12-31 12:00:00 1998-04-12 20:00:00 1050319440 1050466800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1050319440_1050845040.npz -1998-04-12 20:00:00 1998-04-12 21:00:00 1050466800 1050466860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1050319440_1050845040.npz'] -1998-04-12 21:00:00 1998-12-31 12:00:00 1050466860 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-11-16 04:00:00 1052423280 1052883600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1052423280_1052948880:dup1.npz -2002-11-16 04:00:00 2002-11-16 05:00:00 1052883600 1052883660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1052423280_1052948880:dup1.npz'] -2002-11-16 05:00:00 2002-12-31 12:00:00 1052883660 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1052423280_1052948880:dup1.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-09-11 13:00:00 1053474540 1053841740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1053955500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1054001520.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1054001520.npz -2004-09-11 13:00:00 2004-09-12 13:00:00 1053841740 1053843180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1053955500.npz'] -2004-09-12 13:00:00 2004-10-10 13:00:00 1053843180 1053883500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1053955500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1054001520.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1054001520.npz -2004-10-10 13:00:00 2004-10-11 13:00:00 1053883500 1053884940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1053955500.npz'] -2004-10-11 13:00:00 2004-11-29 13:00:00 1053884940 1053955500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1053955500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1054001520.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1054001520.npz -2004-11-29 13:00:00 2004-12-31 12:00:00 1053955500 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-31 12:00:00 1055052720 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1055052720_1055578320.npz -2008-01-01 11:00:00 2008-12-31 11:00:00 1055579700 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1055579700_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1055579700_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1055579700_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-30 19:00:00 1056630960 1057155540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1056630960_1057155540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1056630960_1057155540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1056630960_1057155540.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-28 19:00:00 1058734860 1059256500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1058734860_1059256500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1058734860_1059256500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1058734860_1059256500.npz -2015-01-06 03:00:00 2015-12-31 12:00:00 1059268500 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1059268500_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1059268500_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1059268500_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1060313040_1060838640.npz'] -2020-01-01 23:00:00 2020-12-31 13:00:00 1061891940 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1061891940_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1061891940_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/30_CL(IMC)_1061891940_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.3588407635688782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_31_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_31_CL(IMC).out deleted file mode 100644 index 7f3d5326e2c2169344d38dfca44009f41f042ef9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_31_CL(IMC).out +++ /dev/null @@ -1,38 +0,0 @@ -31_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2004-10-30 12:00:00 2004-12-31 12:00:00 1053912240 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1053912240_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1053912240_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1053912240_1054001520.npz -'StationConcatenate' object has no attribute 'existing_data' -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1055052720_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1055052720_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-07-23 23:00:00 1057682160 1057978020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1057682160_1057978020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1057682160_1057978020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1057682160_1057978020.npz -2015-08-19 01:00:00 2015-08-19 22:00:00 1059592380 1059593640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1059592380_1059593640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1059592380_1059593640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/31_CL(IMC)_1059592380_1059593640.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.313851006825765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_324_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_324_CL(IMC).out deleted file mode 100644 index 636dc93ccbcc522491f4fcc9bb374884470e56ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_324_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -324_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04577550490697225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_325_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_325_CL(IMC).out deleted file mode 100644 index fad604bda661717c7429052b8e666d83d564adee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_325_CL(IMC).out +++ /dev/null @@ -1,3289 +0,0 @@ -325_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1978-12-31 13:00:00 1979-03-01 00:00:00 1040325900 1040411520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -'StationConcatenate' object has no attribute 'existing_data' -1979-03-02 04:00:00 1979-03-02 05:00:00 1040413200 1040413260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-03-02 05:00:00 1979-03-22 01:00:00 1040413260 1040441820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-03-22 01:00:00 1979-03-22 02:00:00 1040441820 1040441880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-03-22 02:00:00 1979-03-22 04:00:00 1040441880 1040442000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-03-22 04:00:00 1979-03-22 05:00:00 1040442000 1040442060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-03-22 05:00:00 1979-03-28 22:00:00 1040442060 1040451720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-03-28 22:00:00 1979-03-28 23:00:00 1040451720 1040451780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-03-28 23:00:00 1979-04-04 05:00:00 1040451780 1040460780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-04 06:00:00 1979-04-04 08:00:00 1040460840 1040460960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-04-04 08:00:00 1979-04-05 16:00:00 1040460960 1040462880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-05 16:00:00 1979-04-05 17:00:00 1040462880 1040462940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-04-05 17:00:00 1979-04-09 04:00:00 1040462940 1040467920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-09 04:00:00 1979-04-09 06:00:00 1040467920 1040468040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-04-09 06:00:00 1979-04-09 13:00:00 1040468040 1040468460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-09 13:00:00 1979-04-09 14:00:00 1040468460 1040468520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-04-09 14:00:00 1979-04-10 13:00:00 1040468520 1040469900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-10 13:00:00 1979-04-10 14:00:00 1040469900 1040469960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-04-10 14:00:00 1979-04-20 10:00:00 1040469960 1040484120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-20 10:00:00 1979-04-20 13:00:00 1040484120 1040484300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-04-20 13:00:00 1979-04-20 14:00:00 1040484300 1040484360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-20 14:00:00 1979-04-20 15:00:00 1040484360 1040484420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-04-20 15:00:00 1979-04-21 11:00:00 1040484420 1040485620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-21 11:00:00 1979-04-21 12:00:00 1040485620 1040485680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-04-21 12:00:00 1979-04-21 14:00:00 1040485680 1040485800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-21 14:00:00 1979-04-21 15:00:00 1040485800 1040485860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-04-21 15:00:00 1979-04-22 14:00:00 1040485860 1040487240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-22 14:00:00 1979-04-22 15:00:00 1040487240 1040487300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-04-22 15:00:00 1979-04-27 00:00:00 1040487300 1040493600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-27 00:00:00 1979-04-27 01:00:00 1040493600 1040493660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-04-27 01:00:00 1979-04-30 00:00:00 1040493660 1040497920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-30 00:00:00 1979-04-30 02:00:00 1040497920 1040498040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-04-30 02:00:00 1979-04-30 19:00:00 1040498040 1040499060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-04-30 19:00:00 1979-05-01 03:00:00 1040499060 1040499540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-01 03:00:00 1979-05-01 13:00:00 1040499540 1040500140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-01 13:00:00 1979-05-02 19:00:00 1040500140 1040501940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-03 00:00:00 1979-05-03 11:00:00 1040502240 1040502900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-03 11:00:00 1979-05-03 12:00:00 1040502900 1040502960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-03 12:00:00 1979-05-06 00:00:00 1040502960 1040506560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-06 00:00:00 1979-05-06 01:00:00 1040506560 1040506620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-06 01:00:00 1979-05-06 09:00:00 1040506620 1040507100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-06 09:00:00 1979-05-06 10:00:00 1040507100 1040507160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-05-06 10:00:00 1979-05-07 21:00:00 1040507160 1040509260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-07 22:00:00 1979-05-07 23:00:00 1040509320 1040509380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-07 23:00:00 1979-05-09 11:00:00 1040509380 1040511540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-09 11:00:00 1979-05-09 12:00:00 1040511540 1040511600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-09 12:00:00 1979-05-11 02:00:00 1040511600 1040513880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-11 02:00:00 1979-05-11 03:00:00 1040513880 1040513940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-05-11 04:00:00 1979-05-11 16:00:00 1040514000 1040514720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-11 16:00:00 1979-05-11 17:00:00 1040514720 1040514780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-11 17:00:00 1979-05-15 20:00:00 1040514780 1040520720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-15 20:00:00 1979-05-15 21:00:00 1040520720 1040520780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-15 21:00:00 1979-05-17 14:00:00 1040520780 1040523240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-17 14:00:00 1979-05-17 15:00:00 1040523240 1040523300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-17 15:00:00 1979-05-17 22:00:00 1040523300 1040523720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-17 22:00:00 1979-05-17 23:00:00 1040523720 1040523780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-17 23:00:00 1979-05-19 03:00:00 1040523780 1040525460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-19 03:00:00 1979-05-19 04:00:00 1040525460 1040525520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-05-19 04:00:00 1979-05-19 19:00:00 1040525520 1040526420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-19 19:00:00 1979-05-19 20:00:00 1040526420 1040526480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-19 20:00:00 1979-05-20 01:00:00 1040526480 1040526780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-20 01:00:00 1979-05-20 02:00:00 1040526780 1040526840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-05-20 02:00:00 1979-05-20 16:00:00 1040526840 1040527680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-20 16:00:00 1979-05-20 17:00:00 1040527680 1040527740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-20 17:00:00 1979-05-21 17:00:00 1040527740 1040529180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-21 17:00:00 1979-05-21 18:00:00 1040529180 1040529240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-05-21 18:00:00 1979-05-23 07:00:00 1040529240 1040531460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-23 07:00:00 1979-05-23 08:00:00 1040531460 1040531520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-05-23 08:00:00 1979-05-24 21:00:00 1040531520 1040533740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-24 21:00:00 1979-05-24 22:00:00 1040533740 1040533800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-24 22:00:00 1979-05-26 18:00:00 1040533800 1040536440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-26 18:00:00 1979-05-26 19:00:00 1040536440 1040536500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-05-26 19:00:00 1979-05-27 11:00:00 1040536500 1040537460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-05-27 11:00:00 1979-05-27 12:00:00 1040537460 1040537520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-05-27 12:00:00 1979-06-03 02:00:00 1040537520 1040547000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-06-03 02:00:00 1979-06-03 03:00:00 1040547000 1040547060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-06-03 03:00:00 1979-06-04 17:00:00 1040547060 1040549340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-06-04 17:00:00 1979-06-04 18:00:00 1040549340 1040549400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-06-04 18:00:00 1979-06-04 22:00:00 1040549400 1040549640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-06-04 22:00:00 1979-06-05 04:00:00 1040549640 1040550000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-06-05 04:00:00 1979-08-09 02:00:00 1040550000 1040643480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-08-09 02:00:00 1979-08-09 03:00:00 1040643480 1040643540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-08-09 03:00:00 1979-08-13 22:00:00 1040643540 1040650440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-08-13 22:00:00 1979-08-13 23:00:00 1040650440 1040650500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-08-13 23:00:00 1979-08-14 21:00:00 1040650500 1040651820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-08-16 05:00:00 1979-08-16 06:00:00 1040653740 1040653800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-08-16 06:00:00 1979-08-16 07:00:00 1040653800 1040653860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-08-16 07:00:00 1979-08-20 00:00:00 1040653860 1040659200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-08-20 00:00:00 1979-08-20 01:00:00 1040659200 1040659260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz'] -1979-08-20 01:00:00 1979-08-28 17:00:00 1040659260 1040671740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-08-28 17:00:00 1979-08-28 18:00:00 1040671740 1040671800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-08-28 18:00:00 1979-12-31 12:00:00 1040671800 1040851440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz -1979-12-31 12:00:00 1979-12-31 13:00:00 1040851440 1040851500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040325900_1040851500.npz'] -1979-12-31 13:00:00 1980-06-24 00:00:00 1040851500 1041104160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-06-25 13:00:00 1980-06-25 14:00:00 1041106380 1041106440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-06-25 14:00:00 1980-06-26 12:00:00 1041106440 1041107760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-06-26 13:00:00 1980-06-26 14:00:00 1041107820 1041107880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-06-26 14:00:00 1980-06-27 12:00:00 1041107880 1041109200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-06-27 13:00:00 1980-06-27 14:00:00 1041109260 1041109320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-06-27 14:00:00 1980-06-27 21:00:00 1041109320 1041109740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-06-27 21:00:00 1980-06-27 22:00:00 1041109740 1041109800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-06-27 22:00:00 1980-06-28 12:00:00 1041109800 1041110640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-06-28 12:00:00 1980-06-28 13:00:00 1041110640 1041110700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-06-28 14:00:00 1980-07-01 11:00:00 1041110760 1041114900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-01 11:00:00 1980-07-01 12:00:00 1041114900 1041114960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-01 13:00:00 1980-07-01 14:00:00 1041115020 1041115080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-07-01 14:00:00 1980-07-02 12:00:00 1041115080 1041116400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-02 12:00:00 1980-07-02 13:00:00 1041116400 1041116460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-02 13:00:00 1980-07-02 14:00:00 1041116460 1041116520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-07-02 14:00:00 1980-07-03 12:00:00 1041116520 1041117840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-03 12:00:00 1980-07-03 13:00:00 1041117840 1041117900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-04 04:00:00 1980-07-06 23:00:00 1041118800 1041122820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-07 13:00:00 1980-07-07 14:00:00 1041123660 1041123720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-07 14:00:00 1980-07-08 12:00:00 1041123720 1041125040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-08 14:00:00 1980-07-09 12:00:00 1041125160 1041126480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-07-10 10:00:00 1980-07-21 13:00:00 1041127800 1041143820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-21 14:00:00 1980-07-22 12:00:00 1041143880 1041145200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-07-24 03:00:00 1980-07-24 12:00:00 1041147540 1041148080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-24 12:00:00 1980-07-24 13:00:00 1041148080 1041148140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-24 14:00:00 1980-07-25 12:00:00 1041148200 1041149520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-25 12:00:00 1980-07-25 15:00:00 1041149520 1041149700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-25 15:00:00 1980-07-26 12:00:00 1041149700 1041150960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-26 12:00:00 1980-07-26 13:00:00 1041150960 1041151020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-26 14:00:00 1980-07-26 15:00:00 1041151080 1041151140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-07-26 15:00:00 1980-07-27 12:00:00 1041151140 1041152400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-27 12:00:00 1980-07-27 13:00:00 1041152400 1041152460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-27 14:00:00 1980-07-27 15:00:00 1041152520 1041152580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-07-27 15:00:00 1980-07-28 12:00:00 1041152580 1041153840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-28 12:00:00 1980-07-28 13:00:00 1041153840 1041153900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-28 14:00:00 1980-07-28 15:00:00 1041153960 1041154020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-07-28 15:00:00 1980-07-29 00:00:00 1041154020 1041154560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-29 00:00:00 1980-07-29 01:00:00 1041154560 1041154620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-29 01:00:00 1980-07-29 12:00:00 1041154620 1041155280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-29 12:00:00 1980-07-29 13:00:00 1041155280 1041155340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-29 14:00:00 1980-07-29 15:00:00 1041155400 1041155460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-07-29 15:00:00 1980-07-30 12:00:00 1041155460 1041156720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-30 12:00:00 1980-07-30 13:00:00 1041156720 1041156780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-30 14:00:00 1980-07-30 15:00:00 1041156840 1041156900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-07-30 15:00:00 1980-07-31 12:00:00 1041156900 1041158160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-07-31 12:00:00 1980-07-31 13:00:00 1041158160 1041158220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-07-31 14:00:00 1980-07-31 15:00:00 1041158280 1041158340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-07-31 15:00:00 1980-08-01 12:00:00 1041158340 1041159600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-08-01 12:00:00 1980-08-01 13:00:00 1041159600 1041159660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-08-01 14:00:00 1980-08-01 15:00:00 1041159720 1041159780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-08-01 15:00:00 1980-08-02 12:00:00 1041159780 1041161040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-08-02 12:00:00 1980-08-02 13:00:00 1041161040 1041161100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-08-02 14:00:00 1980-08-02 15:00:00 1041161160 1041161220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-08-02 15:00:00 1980-08-03 12:00:00 1041161220 1041162480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-08-03 12:00:00 1980-08-03 13:00:00 1041162480 1041162540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-08-04 01:00:00 1980-10-03 19:00:00 1041163260 1041250740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-04 13:00:00 1980-10-04 14:00:00 1041251820 1041251880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-04 14:00:00 1980-10-05 10:00:00 1041251880 1041253080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-05 10:00:00 1980-10-05 11:00:00 1041253080 1041253140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-05 11:00:00 1980-10-05 12:00:00 1041253140 1041253200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-05 12:00:00 1980-10-05 14:00:00 1041253200 1041253320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-05 14:00:00 1980-10-06 00:00:00 1041253320 1041253920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-06 00:00:00 1980-10-06 01:00:00 1041253920 1041253980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-06 01:00:00 1980-10-06 13:00:00 1041253980 1041254700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-06 13:00:00 1980-10-06 14:00:00 1041254700 1041254760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-06 14:00:00 1980-10-08 21:00:00 1041254760 1041258060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-08 21:00:00 1980-10-08 22:00:00 1041258060 1041258120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-08 22:00:00 1980-10-08 23:00:00 1041258120 1041258180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-10-08 23:00:00 1980-10-10 12:00:00 1041258180 1041260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-10 12:00:00 1980-10-10 13:00:00 1041260400 1041260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-10 14:00:00 1980-10-13 13:00:00 1041260520 1041264780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-13 13:00:00 1980-10-13 14:00:00 1041264780 1041264840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-13 14:00:00 1980-10-14 12:00:00 1041264840 1041266160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-14 12:00:00 1980-10-14 13:00:00 1041266160 1041266220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-14 14:00:00 1980-10-14 15:00:00 1041266280 1041266340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-10-14 15:00:00 1980-10-15 00:00:00 1041266340 1041266880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-15 00:00:00 1980-10-15 01:00:00 1041266880 1041266940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-15 05:00:00 1980-10-15 12:00:00 1041267180 1041267600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-15 12:00:00 1980-10-15 14:00:00 1041267600 1041267720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-15 14:00:00 1980-10-15 21:00:00 1041267720 1041268140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-15 21:00:00 1980-10-15 22:00:00 1041268140 1041268200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-15 22:00:00 1980-10-16 12:00:00 1041268200 1041269040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-16 12:00:00 1980-10-16 13:00:00 1041269040 1041269100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-16 14:00:00 1980-10-18 12:00:00 1041269160 1041271920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-18 12:00:00 1980-10-18 14:00:00 1041271920 1041272040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-18 14:00:00 1980-10-19 12:00:00 1041272040 1041273360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-19 12:00:00 1980-10-19 13:00:00 1041273360 1041273420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-19 14:00:00 1980-10-21 12:00:00 1041273480 1041276240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-21 12:00:00 1980-10-21 13:00:00 1041276240 1041276300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-21 14:00:00 1980-10-21 15:00:00 1041276360 1041276420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-10-21 15:00:00 1980-10-22 12:00:00 1041276420 1041277680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-22 12:00:00 1980-10-22 13:00:00 1041277680 1041277740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-22 14:00:00 1980-10-23 12:00:00 1041277800 1041279120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-23 12:00:00 1980-10-23 13:00:00 1041279120 1041279180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-23 14:00:00 1980-10-23 15:00:00 1041279240 1041279300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-10-23 15:00:00 1980-10-24 12:00:00 1041279300 1041280560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-24 12:00:00 1980-10-24 13:00:00 1041280560 1041280620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-24 14:00:00 1980-10-25 12:00:00 1041280680 1041282000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-25 12:00:00 1980-10-25 13:00:00 1041282000 1041282060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-25 14:00:00 1980-10-25 15:00:00 1041282120 1041282180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-10-25 15:00:00 1980-10-26 12:00:00 1041282180 1041283440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-26 12:00:00 1980-10-26 13:00:00 1041283440 1041283500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-26 14:00:00 1980-10-26 15:00:00 1041283560 1041283620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-10-26 15:00:00 1980-10-27 12:00:00 1041283620 1041284880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-27 12:00:00 1980-10-27 14:00:00 1041284880 1041285000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-27 14:00:00 1980-10-28 12:00:00 1041285000 1041286320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-28 12:00:00 1980-10-28 13:00:00 1041286320 1041286380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-28 14:00:00 1980-10-29 12:00:00 1041286440 1041287760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-29 12:00:00 1980-10-29 13:00:00 1041287760 1041287820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-29 14:00:00 1980-10-29 22:00:00 1041287880 1041288360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-29 22:00:00 1980-10-29 23:00:00 1041288360 1041288420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-29 23:00:00 1980-10-30 12:00:00 1041288420 1041289200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-30 12:00:00 1980-10-30 13:00:00 1041289200 1041289260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-30 14:00:00 1980-10-30 15:00:00 1041289320 1041289380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-10-30 15:00:00 1980-10-31 12:00:00 1041289380 1041290640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-10-31 12:00:00 1980-10-31 13:00:00 1041290640 1041290700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-10-31 14:00:00 1980-10-31 15:00:00 1041290760 1041290820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-10-31 15:00:00 1980-11-02 12:00:00 1041290820 1041293520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-11-02 12:00:00 1980-11-02 13:00:00 1041293520 1041293580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-11-02 14:00:00 1980-11-02 15:00:00 1041293640 1041293700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-11-02 15:00:00 1980-11-03 12:00:00 1041293700 1041294960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-11-03 12:00:00 1980-11-03 13:00:00 1041294960 1041295020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-11-03 14:00:00 1980-11-05 12:00:00 1041295080 1041297840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-11-05 12:00:00 1980-11-05 13:00:00 1041297840 1041297900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-11-06 04:00:00 1980-11-07 13:00:00 1041298800 1041300780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-11-08 13:00:00 1980-11-08 14:00:00 1041302220 1041302280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-11-08 14:00:00 1980-11-08 15:00:00 1041302280 1041302340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-11-08 15:00:00 1980-11-10 13:00:00 1041302340 1041305100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-11-10 14:00:00 1980-11-10 15:00:00 1041305160 1041305220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-11-10 15:00:00 1980-11-11 13:00:00 1041305220 1041306540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-11-11 13:00:00 1980-11-11 15:00:00 1041306540 1041306660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-11-11 15:00:00 1980-11-12 12:00:00 1041306660 1041307920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-11-12 12:00:00 1980-11-12 13:00:00 1041307920 1041307980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-11-12 14:00:00 1980-11-13 12:00:00 1041308040 1041309360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-11-13 12:00:00 1980-11-13 13:00:00 1041309360 1041309420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-11-13 14:00:00 1980-11-14 12:00:00 1041309480 1041310800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-11-14 12:00:00 1980-11-14 13:00:00 1041310800 1041310860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-11-14 14:00:00 1980-11-15 12:00:00 1041310920 1041312240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-11-15 12:00:00 1980-11-15 14:00:00 1041312240 1041312360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-11-15 14:00:00 1980-12-02 13:00:00 1041312360 1041336780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-02 13:00:00 1980-12-02 14:00:00 1041336780 1041336840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-02 14:00:00 1980-12-03 12:00:00 1041336840 1041338160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-03 12:00:00 1980-12-03 13:00:00 1041338160 1041338220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-03 14:00:00 1980-12-04 12:00:00 1041338280 1041339600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-04 13:00:00 1980-12-04 14:00:00 1041339660 1041339720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-04 14:00:00 1980-12-06 12:00:00 1041339720 1041342480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-06 12:00:00 1980-12-06 13:00:00 1041342480 1041342540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-06 14:00:00 1980-12-08 13:00:00 1041342600 1041345420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-08 13:00:00 1980-12-08 14:00:00 1041345420 1041345480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-08 14:00:00 1980-12-08 19:00:00 1041345480 1041345780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-08 19:00:00 1980-12-08 21:00:00 1041345780 1041345900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-09 03:00:00 1980-12-09 04:00:00 1041346260 1041346320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz'] -1980-12-09 04:00:00 1980-12-09 12:00:00 1041346320 1041346800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-09 12:00:00 1980-12-09 13:00:00 1041346800 1041346860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-09 14:00:00 1980-12-13 12:00:00 1041346920 1041352560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-13 12:00:00 1980-12-13 13:00:00 1041352560 1041352620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-13 14:00:00 1980-12-14 12:00:00 1041352680 1041354000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-14 12:00:00 1980-12-14 13:00:00 1041354000 1041354060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-14 14:00:00 1980-12-15 12:00:00 1041354120 1041355440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-15 12:00:00 1980-12-15 14:00:00 1041355440 1041355560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-15 14:00:00 1980-12-16 12:00:00 1041355560 1041356880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-16 12:00:00 1980-12-16 13:00:00 1041356880 1041356940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-16 14:00:00 1980-12-17 12:00:00 1041357000 1041358320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-17 12:00:00 1980-12-17 13:00:00 1041358320 1041358380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -1980-12-17 15:00:00 1980-12-31 13:00:00 1041358500 1041378540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1040851500_1041378540:dup1.npz -1980-12-31 14:00:00 1980-12-31 15:00:00 1041378600 1041378660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1980-12-31 15:00:00 1981-01-01 13:00:00 1041378660 1041379980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-01-01 14:00:00 1981-01-01 15:00:00 1041380040 1041380100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-01-01 15:00:00 1981-01-02 13:00:00 1041380100 1041381420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-01-02 13:00:00 1981-01-02 14:00:00 1041381420 1041381480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-01-02 14:00:00 1981-01-02 15:00:00 1041381480 1041381540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-01-02 15:00:00 1981-01-27 00:00:00 1041381540 1041416640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-01-27 00:00:00 1981-01-27 01:00:00 1041416640 1041416700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-01-28 01:00:00 1981-01-28 02:00:00 1041418140 1041418200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-01-28 02:00:00 1981-01-29 06:00:00 1041418200 1041419880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-01-29 06:00:00 1981-01-29 07:00:00 1041419880 1041419940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-01-30 01:00:00 1981-01-31 12:00:00 1041421020 1041423120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-01-31 12:00:00 1981-01-31 13:00:00 1041423120 1041423180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-02-01 03:00:00 1981-03-10 11:00:00 1041424020 1041477780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-03-10 11:00:00 1981-03-10 12:00:00 1041477780 1041477840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-03-10 13:00:00 1981-03-11 12:00:00 1041477900 1041479280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-03-11 12:00:00 1981-03-11 14:00:00 1041479280 1041479400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-03-11 14:00:00 1981-03-12 00:00:00 1041479400 1041480000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-03-27 02:00:00 1981-03-27 04:00:00 1041501720 1041501840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-03-27 04:00:00 1981-03-29 12:00:00 1041501840 1041505200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-03-29 12:00:00 1981-03-29 14:00:00 1041505200 1041505320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-03-29 14:00:00 1981-04-27 03:00:00 1041505320 1041546420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-04-27 13:00:00 1981-04-27 14:00:00 1041547020 1041547080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-04-27 14:00:00 1981-05-01 12:00:00 1041547080 1041552720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-05-01 12:00:00 1981-05-01 13:00:00 1041552720 1041552780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-05-01 13:00:00 1981-05-04 12:00:00 1041552780 1041557040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-05-04 12:00:00 1981-05-04 13:00:00 1041557040 1041557100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-05-04 13:00:00 1981-05-04 14:00:00 1041557100 1041557160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-05-04 14:00:00 1981-05-05 12:00:00 1041557160 1041558480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-05-05 13:00:00 1981-05-05 14:00:00 1041558540 1041558600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-05-05 14:00:00 1981-05-11 04:00:00 1041558600 1041566640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-06-04 01:00:00 1981-06-09 23:00:00 1041601020 1041609540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-06-16 00:00:00 1981-06-16 01:00:00 1041618240 1041618300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-06-16 01:00:00 1981-06-17 12:00:00 1041618300 1041620400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-06-17 12:00:00 1981-06-17 13:00:00 1041620400 1041620460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-06-17 14:00:00 1981-06-19 00:00:00 1041620520 1041622560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-06-19 00:00:00 1981-06-19 01:00:00 1041622560 1041622620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-06-19 01:00:00 1981-06-19 12:00:00 1041622620 1041623280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-06-19 12:00:00 1981-06-19 14:00:00 1041623280 1041623400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-06-19 14:00:00 1981-06-20 02:00:00 1041623400 1041624120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-06-20 02:00:00 1981-06-20 03:00:00 1041624120 1041624180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-06-23 01:00:00 1981-06-23 02:00:00 1041628380 1041628440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-06-23 02:00:00 1981-06-29 21:00:00 1041628440 1041638220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-06-29 21:00:00 1981-06-29 22:00:00 1041638220 1041638280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-06 22:00:00 1981-07-07 01:00:00 1041648360 1041648540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-07-07 01:00:00 1981-07-07 12:00:00 1041648540 1041649200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-07 12:00:00 1981-07-07 13:00:00 1041649200 1041649260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-07 14:00:00 1981-07-07 21:00:00 1041649320 1041649740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-07 21:00:00 1981-07-07 22:00:00 1041649740 1041649800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-07 22:00:00 1981-07-08 12:00:00 1041649800 1041650640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-08 12:00:00 1981-07-08 13:00:00 1041650640 1041650700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-08 14:00:00 1981-07-09 12:00:00 1041650760 1041652080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-09 12:00:00 1981-07-09 13:00:00 1041652080 1041652140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-09 14:00:00 1981-07-10 12:00:00 1041652200 1041653520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-10 12:00:00 1981-07-10 13:00:00 1041653520 1041653580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-10 14:00:00 1981-07-11 12:00:00 1041653640 1041654960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-11 12:00:00 1981-07-11 14:00:00 1041654960 1041655080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-11 14:00:00 1981-07-12 12:00:00 1041655080 1041656400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-12 12:00:00 1981-07-12 13:00:00 1041656400 1041656460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-12 14:00:00 1981-07-13 12:00:00 1041656520 1041657840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-13 12:00:00 1981-07-13 13:00:00 1041657840 1041657900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-13 14:00:00 1981-07-14 12:00:00 1041657960 1041659280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-14 12:00:00 1981-07-14 13:00:00 1041659280 1041659340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-14 14:00:00 1981-07-16 12:00:00 1041659400 1041662160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-16 12:00:00 1981-07-16 13:00:00 1041662160 1041662220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-16 14:00:00 1981-07-17 12:00:00 1041662280 1041663600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-17 12:00:00 1981-07-17 14:00:00 1041663600 1041663720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-17 14:00:00 1981-07-19 12:00:00 1041663720 1041666480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-19 12:00:00 1981-07-19 13:00:00 1041666480 1041666540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-19 14:00:00 1981-07-20 12:00:00 1041666600 1041667920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-20 12:00:00 1981-07-20 13:00:00 1041667920 1041667980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-20 14:00:00 1981-07-21 12:00:00 1041668040 1041669360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-21 12:00:00 1981-07-21 15:00:00 1041669360 1041669540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-21 15:00:00 1981-07-22 02:00:00 1041669540 1041670200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-22 02:00:00 1981-07-22 03:00:00 1041670200 1041670260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-23 04:00:00 1981-07-25 13:00:00 1041671760 1041675180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-25 14:00:00 1981-07-25 15:00:00 1041675240 1041675300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-07-25 15:00:00 1981-07-26 12:00:00 1041675300 1041676560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-26 12:00:00 1981-07-26 13:00:00 1041676560 1041676620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-26 14:00:00 1981-07-27 12:00:00 1041676680 1041678000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-27 12:00:00 1981-07-27 13:00:00 1041678000 1041678060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-27 14:00:00 1981-07-28 05:00:00 1041678120 1041679020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-28 05:00:00 1981-07-28 06:00:00 1041679020 1041679080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-28 06:00:00 1981-07-28 12:00:00 1041679080 1041679440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-28 12:00:00 1981-07-28 13:00:00 1041679440 1041679500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-28 14:00:00 1981-07-29 12:00:00 1041679560 1041680880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-29 12:00:00 1981-07-29 13:00:00 1041680880 1041680940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-29 14:00:00 1981-07-30 12:00:00 1041681000 1041682320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-07-30 12:00:00 1981-07-30 13:00:00 1041682320 1041682380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-07-30 14:00:00 1981-08-07 00:00:00 1041682440 1041693120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-07 00:00:00 1981-08-07 01:00:00 1041693120 1041693180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-07 01:00:00 1981-08-07 12:00:00 1041693180 1041693840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-07 12:00:00 1981-08-07 13:00:00 1041693840 1041693900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-07 14:00:00 1981-08-08 12:00:00 1041693960 1041695280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-08 12:00:00 1981-08-08 13:00:00 1041695280 1041695340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-08 14:00:00 1981-08-09 12:00:00 1041695400 1041696720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-09 12:00:00 1981-08-09 13:00:00 1041696720 1041696780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-09 14:00:00 1981-08-11 13:00:00 1041696840 1041699660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-11 14:00:00 1981-08-11 15:00:00 1041699720 1041699780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-08-11 15:00:00 1981-08-13 03:00:00 1041699780 1041701940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-13 03:00:00 1981-08-13 04:00:00 1041701940 1041702000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-13 04:00:00 1981-08-13 12:00:00 1041702000 1041702480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-13 12:00:00 1981-08-13 13:00:00 1041702480 1041702540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-13 14:00:00 1981-08-13 15:00:00 1041702600 1041702660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-08-13 15:00:00 1981-08-17 03:00:00 1041702660 1041707700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-17 03:00:00 1981-08-17 04:00:00 1041707700 1041707760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-17 04:00:00 1981-08-17 12:00:00 1041707760 1041708240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-17 12:00:00 1981-08-17 13:00:00 1041708240 1041708300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-17 14:00:00 1981-08-17 15:00:00 1041708360 1041708420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-08-17 15:00:00 1981-08-19 13:00:00 1041708420 1041711180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-19 14:00:00 1981-08-19 15:00:00 1041711240 1041711300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-08-19 15:00:00 1981-08-20 13:00:00 1041711300 1041712620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-20 14:00:00 1981-08-20 15:00:00 1041712680 1041712740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-08-20 15:00:00 1981-08-20 23:00:00 1041712740 1041713220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-20 23:00:00 1981-08-21 00:00:00 1041713220 1041713280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-08-21 00:00:00 1981-08-21 12:00:00 1041713280 1041714000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-21 12:00:00 1981-08-21 13:00:00 1041714000 1041714060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-21 15:00:00 1981-08-21 17:00:00 1041714180 1041714300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-21 17:00:00 1981-08-21 18:00:00 1041714300 1041714360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-08-21 18:00:00 1981-08-23 13:00:00 1041714360 1041716940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-23 14:00:00 1981-08-23 15:00:00 1041717000 1041717060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-23 15:00:00 1981-08-26 12:00:00 1041717060 1041721200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-26 12:00:00 1981-08-26 13:00:00 1041721200 1041721260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-26 14:00:00 1981-08-27 12:00:00 1041721320 1041722640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-27 12:00:00 1981-08-27 13:00:00 1041722640 1041722700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-27 14:00:00 1981-08-28 12:00:00 1041722760 1041724080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-28 12:00:00 1981-08-28 13:00:00 1041724080 1041724140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-28 14:00:00 1981-08-29 12:00:00 1041724200 1041725520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-29 12:00:00 1981-08-29 13:00:00 1041725520 1041725580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-29 14:00:00 1981-08-30 12:00:00 1041725640 1041726960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-30 12:00:00 1981-08-30 13:00:00 1041726960 1041727020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-30 14:00:00 1981-08-31 03:00:00 1041727080 1041727860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-31 03:00:00 1981-08-31 04:00:00 1041727860 1041727920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-31 04:00:00 1981-08-31 12:00:00 1041727920 1041728400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-08-31 12:00:00 1981-08-31 13:00:00 1041728400 1041728460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-08-31 14:00:00 1981-09-01 12:00:00 1041728520 1041729840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-01 12:00:00 1981-09-01 13:00:00 1041729840 1041729900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-09-01 14:00:00 1981-09-06 13:00:00 1041729960 1041737100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-06 14:00:00 1981-09-06 15:00:00 1041737160 1041737220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-06 15:00:00 1981-09-09 13:00:00 1041737220 1041741420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-09 14:00:00 1981-09-09 15:00:00 1041741480 1041741540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-09 15:00:00 1981-09-10 13:00:00 1041741540 1041742860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-10 14:00:00 1981-09-10 15:00:00 1041742920 1041742980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-10 15:00:00 1981-09-11 13:00:00 1041742980 1041744300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-11 14:00:00 1981-09-11 15:00:00 1041744360 1041744420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-11 15:00:00 1981-09-13 13:00:00 1041744420 1041747180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-13 14:00:00 1981-09-13 15:00:00 1041747240 1041747300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-13 15:00:00 1981-09-14 13:00:00 1041747300 1041748620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-14 14:00:00 1981-09-14 15:00:00 1041748680 1041748740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-14 15:00:00 1981-09-15 13:00:00 1041748740 1041750060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-15 14:00:00 1981-09-15 15:00:00 1041750120 1041750180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-15 15:00:00 1981-09-17 00:00:00 1041750180 1041752160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-17 00:00:00 1981-09-17 01:00:00 1041752160 1041752220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-09-17 06:00:00 1981-09-23 13:00:00 1041752520 1041761580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-23 14:00:00 1981-09-23 15:00:00 1041761640 1041761700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-23 15:00:00 1981-09-24 13:00:00 1041761700 1041763020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-24 14:00:00 1981-09-24 15:00:00 1041763080 1041763140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-24 15:00:00 1981-09-25 13:00:00 1041763140 1041764460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-25 14:00:00 1981-09-25 15:00:00 1041764520 1041764580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-25 15:00:00 1981-09-26 13:00:00 1041764580 1041765900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-26 14:00:00 1981-09-26 15:00:00 1041765960 1041766020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-26 15:00:00 1981-09-27 13:00:00 1041766020 1041767340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-27 14:00:00 1981-09-27 15:00:00 1041767400 1041767460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-27 15:00:00 1981-09-29 13:00:00 1041767460 1041770220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-29 14:00:00 1981-09-29 15:00:00 1041770280 1041770340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-09-29 15:00:00 1981-09-30 12:00:00 1041770340 1041771600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-09-30 12:00:00 1981-09-30 13:00:00 1041771600 1041771660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-09-30 13:00:00 1981-10-01 03:00:00 1041771660 1041772500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-10-01 03:00:00 1981-10-01 04:00:00 1041772500 1041772560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-10-01 04:00:00 1981-10-19 12:00:00 1041772560 1041798960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-10-19 12:00:00 1981-10-19 14:00:00 1041798960 1041799080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-10-19 14:00:00 1981-11-03 13:00:00 1041799080 1041820620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-03 13:00:00 1981-11-03 14:00:00 1041820620 1041820680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-03 14:00:00 1981-11-03 23:00:00 1041820680 1041821220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-03 23:00:00 1981-11-04 00:00:00 1041821220 1041821280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-05 03:00:00 1981-11-05 04:00:00 1041822900 1041822960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-11-05 04:00:00 1981-11-05 12:00:00 1041822960 1041823440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-05 12:00:00 1981-11-05 14:00:00 1041823440 1041823560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-05 14:00:00 1981-11-06 00:00:00 1041823560 1041824160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-06 00:00:00 1981-11-06 01:00:00 1041824160 1041824220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-11-06 01:00:00 1981-11-06 12:00:00 1041824220 1041824880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-06 12:00:00 1981-11-06 13:00:00 1041824880 1041824940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-06 14:00:00 1981-11-07 12:00:00 1041825000 1041826320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-07 12:00:00 1981-11-07 13:00:00 1041826320 1041826380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-07 14:00:00 1981-11-08 12:00:00 1041826440 1041827760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-08 12:00:00 1981-11-08 14:00:00 1041827760 1041827880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-08 14:00:00 1981-11-09 12:00:00 1041827880 1041829200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-09 12:00:00 1981-11-09 13:00:00 1041829200 1041829260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-09 14:00:00 1981-11-09 21:00:00 1041829320 1041829740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-09 21:00:00 1981-11-09 22:00:00 1041829740 1041829800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-09 22:00:00 1981-11-10 12:00:00 1041829800 1041830640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-10 12:00:00 1981-11-10 13:00:00 1041830640 1041830700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-10 14:00:00 1981-11-12 12:00:00 1041830760 1041833520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-12 12:00:00 1981-11-12 13:00:00 1041833520 1041833580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-12 14:00:00 1981-11-13 01:00:00 1041833640 1041834300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-13 01:00:00 1981-11-13 02:00:00 1041834300 1041834360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-11-13 02:00:00 1981-11-13 12:00:00 1041834360 1041834960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-13 12:00:00 1981-11-13 15:00:00 1041834960 1041835140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-13 15:00:00 1981-11-14 12:00:00 1041835140 1041836400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-14 12:00:00 1981-11-14 13:00:00 1041836400 1041836460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-14 14:00:00 1981-11-15 04:00:00 1041836520 1041837360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-15 04:00:00 1981-11-15 05:00:00 1041837360 1041837420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-15 05:00:00 1981-11-15 12:00:00 1041837420 1041837840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-15 12:00:00 1981-11-15 13:00:00 1041837840 1041837900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-15 14:00:00 1981-11-15 17:00:00 1041837960 1041838140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-15 17:00:00 1981-11-15 18:00:00 1041838140 1041838200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-11-15 18:00:00 1981-11-16 12:00:00 1041838200 1041839280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-16 12:00:00 1981-11-16 13:00:00 1041839280 1041839340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-16 14:00:00 1981-11-17 12:00:00 1041839400 1041840720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-17 12:00:00 1981-11-17 13:00:00 1041840720 1041840780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-17 14:00:00 1981-11-18 12:00:00 1041840840 1041842160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-11-18 12:00:00 1981-11-18 13:00:00 1041842160 1041842220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-11-18 14:00:00 1981-12-03 13:00:00 1041842280 1041863820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-12-03 13:00:00 1981-12-03 14:00:00 1041863820 1041863880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-12-03 14:00:00 1981-12-12 13:00:00 1041863880 1041876780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-12-12 13:00:00 1981-12-12 14:00:00 1041876780 1041876840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-12-12 14:00:00 1981-12-15 13:00:00 1041876840 1041881100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-12-15 13:00:00 1981-12-15 14:00:00 1041881100 1041881160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-12-15 14:00:00 1981-12-16 03:00:00 1041881160 1041881940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-12-16 03:00:00 1981-12-16 13:00:00 1041881940 1041882540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-12-16 14:00:00 1981-12-16 23:00:00 1041882600 1041883140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-12-16 23:00:00 1981-12-17 10:00:00 1041883140 1041883800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz'] -1981-12-17 10:00:00 1981-12-29 13:00:00 1041883800 1041901260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-12-29 13:00:00 1981-12-29 14:00:00 1041901260 1041901320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-12-29 14:00:00 1981-12-30 05:00:00 1041901320 1041902220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-12-30 05:00:00 1981-12-30 07:00:00 1041902220 1041902340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -1981-12-31 01:00:00 1981-12-31 13:00:00 1041903420 1041904140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378660_1041904140.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041378600_1041904140.npz -1981-12-31 14:00:00 1982-01-02 12:00:00 1041904200 1041906960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-02 12:00:00 1982-01-02 13:00:00 1041906960 1041907020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-01-02 14:00:00 1982-01-04 12:00:00 1041907080 1041909840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-04 12:00:00 1982-01-04 13:00:00 1041909840 1041909900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-01-04 14:00:00 1982-01-06 13:00:00 1041909960 1041912780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-06 13:00:00 1982-01-06 14:00:00 1041912780 1041912840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-01-06 14:00:00 1982-01-06 15:00:00 1041912840 1041912900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-01-06 15:00:00 1982-01-07 13:00:00 1041912900 1041914220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-07 14:00:00 1982-01-07 15:00:00 1041914280 1041914340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-01-07 15:00:00 1982-01-09 13:00:00 1041914340 1041917100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-09 13:00:00 1982-01-09 14:00:00 1041917100 1041917160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-01-09 14:00:00 1982-01-09 15:00:00 1041917160 1041917220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-01-09 15:00:00 1982-01-10 13:00:00 1041917220 1041918540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-10 13:00:00 1982-01-10 14:00:00 1041918540 1041918600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-01-10 14:00:00 1982-01-10 15:00:00 1041918600 1041918660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-01-10 15:00:00 1982-01-11 13:00:00 1041918660 1041919980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-11 14:00:00 1982-01-11 15:00:00 1041920040 1041920100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-01-11 15:00:00 1982-01-12 13:00:00 1041920100 1041921420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-12 14:00:00 1982-01-12 15:00:00 1041921480 1041921540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-01-12 15:00:00 1982-01-14 13:00:00 1041921540 1041924300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-14 13:00:00 1982-01-14 14:00:00 1041924300 1041924360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-01-14 14:00:00 1982-01-14 15:00:00 1041924360 1041924420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-01-14 15:00:00 1982-01-15 01:00:00 1041924420 1041925020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-15 01:00:00 1982-01-15 02:00:00 1041925020 1041925080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-01-15 02:00:00 1982-01-18 13:00:00 1041925080 1041930060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-18 13:00:00 1982-01-18 14:00:00 1041930060 1041930120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-01-18 14:00:00 1982-01-20 13:00:00 1041930120 1041932940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-20 14:00:00 1982-01-20 15:00:00 1041933000 1041933060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-01-20 15:00:00 1982-01-22 02:00:00 1041933060 1041935160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-01-22 02:00:00 1982-04-14 04:00:00 1041935160 1042053360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-04-14 04:00:00 1982-04-15 12:00:00 1042053360 1042055280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-15 12:00:00 1982-04-15 14:00:00 1042055280 1042055400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-15 14:00:00 1982-04-16 12:00:00 1042055400 1042056720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-16 12:00:00 1982-04-16 13:00:00 1042056720 1042056780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-16 14:00:00 1982-04-17 12:00:00 1042056840 1042058160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-17 12:00:00 1982-04-17 13:00:00 1042058160 1042058220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-17 14:00:00 1982-04-19 12:00:00 1042058280 1042061040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-19 12:00:00 1982-04-19 13:00:00 1042061040 1042061100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-19 14:00:00 1982-04-20 12:00:00 1042061160 1042062480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-20 12:00:00 1982-04-20 13:00:00 1042062480 1042062540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-20 14:00:00 1982-04-21 00:00:00 1042062600 1042063200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-21 00:00:00 1982-04-21 01:00:00 1042063200 1042063260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-21 01:00:00 1982-04-21 04:00:00 1042063260 1042063440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-21 04:00:00 1982-04-21 05:00:00 1042063440 1042063500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-21 05:00:00 1982-04-21 12:00:00 1042063500 1042063920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-21 12:00:00 1982-04-21 13:00:00 1042063920 1042063980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-21 14:00:00 1982-04-22 00:00:00 1042064040 1042064640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-22 00:00:00 1982-04-22 01:00:00 1042064640 1042064700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-04-22 01:00:00 1982-04-22 02:00:00 1042064700 1042064760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-22 02:00:00 1982-04-22 03:00:00 1042064760 1042064820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-22 03:00:00 1982-04-23 12:00:00 1042064820 1042066800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-23 12:00:00 1982-04-23 13:00:00 1042066800 1042066860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-23 14:00:00 1982-04-25 12:00:00 1042066920 1042069680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-25 12:00:00 1982-04-25 13:00:00 1042069680 1042069740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-25 14:00:00 1982-04-25 22:00:00 1042069800 1042070280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-25 22:00:00 1982-04-25 23:00:00 1042070280 1042070340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-25 23:00:00 1982-04-26 12:00:00 1042070340 1042071120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-26 12:00:00 1982-04-26 13:00:00 1042071120 1042071180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-26 14:00:00 1982-04-28 12:00:00 1042071240 1042074000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-28 12:00:00 1982-04-28 13:00:00 1042074000 1042074060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-28 14:00:00 1982-04-29 12:00:00 1042074120 1042075440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-29 12:00:00 1982-04-29 13:00:00 1042075440 1042075500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-29 14:00:00 1982-04-30 12:00:00 1042075560 1042076880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-04-30 12:00:00 1982-04-30 13:00:00 1042076880 1042076940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-04-30 14:00:00 1982-05-01 12:00:00 1042077000 1042078320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-01 12:00:00 1982-05-01 13:00:00 1042078320 1042078380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-01 14:00:00 1982-05-01 23:00:00 1042078440 1042078980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-01 23:00:00 1982-05-03 00:00:00 1042078980 1042080480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-04 22:00:00 1982-05-05 11:00:00 1042083240 1042084020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-05 11:00:00 1982-05-05 12:00:00 1042084020 1042084080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-05 13:00:00 1982-05-06 11:00:00 1042084140 1042085460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-06 11:00:00 1982-05-06 12:00:00 1042085460 1042085520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-06 13:00:00 1982-05-07 11:00:00 1042085580 1042086900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-07 11:00:00 1982-05-07 12:00:00 1042086900 1042086960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-05-07 12:00:00 1982-05-07 13:00:00 1042086960 1042087020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-07 13:00:00 1982-05-08 02:00:00 1042087020 1042087800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-08 02:00:00 1982-05-08 03:00:00 1042087800 1042087860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-05-08 03:00:00 1982-05-11 16:00:00 1042087860 1042092960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-11 16:00:00 1982-05-11 17:00:00 1042092960 1042093020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-11 17:00:00 1982-05-12 00:00:00 1042093020 1042093440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-12 00:00:00 1982-05-12 01:00:00 1042093440 1042093500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-05-12 01:00:00 1982-05-15 05:00:00 1042093500 1042098060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-15 05:00:00 1982-05-15 06:00:00 1042098060 1042098120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-15 06:00:00 1982-05-15 11:00:00 1042098120 1042098420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-15 11:00:00 1982-05-15 12:00:00 1042098420 1042098480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-15 13:00:00 1982-05-16 11:00:00 1042098540 1042099860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-16 11:00:00 1982-05-16 12:00:00 1042099860 1042099920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-16 13:00:00 1982-05-17 07:00:00 1042099980 1042101060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-17 07:00:00 1982-05-17 08:00:00 1042101060 1042101120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-17 08:00:00 1982-05-17 11:00:00 1042101120 1042101300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-17 11:00:00 1982-05-17 12:00:00 1042101300 1042101360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-17 13:00:00 1982-05-18 19:00:00 1042101420 1042103220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-18 19:00:00 1982-05-18 20:00:00 1042103220 1042103280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-18 20:00:00 1982-05-19 03:00:00 1042103280 1042103700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-19 03:00:00 1982-05-19 04:00:00 1042103700 1042103760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-19 04:00:00 1982-05-19 12:00:00 1042103760 1042104240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-19 12:00:00 1982-05-19 13:00:00 1042104240 1042104300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-20 04:00:00 1982-05-22 12:00:00 1042105200 1042108560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-05-22 14:00:00 1982-05-24 12:00:00 1042108680 1042111440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-24 12:00:00 1982-05-24 13:00:00 1042111440 1042111500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-24 14:00:00 1982-05-26 12:00:00 1042111560 1042114320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-26 12:00:00 1982-05-26 13:00:00 1042114320 1042114380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-26 14:00:00 1982-05-26 23:00:00 1042114440 1042114980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-26 23:00:00 1982-05-27 01:00:00 1042114980 1042115100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-27 01:00:00 1982-05-28 00:00:00 1042115100 1042116480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-28 00:00:00 1982-05-28 01:00:00 1042116480 1042116540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-28 01:00:00 1982-05-28 12:00:00 1042116540 1042117200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-28 12:00:00 1982-05-28 13:00:00 1042117200 1042117260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-05-28 14:00:00 1982-05-30 21:00:00 1042117320 1042120620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-30 21:00:00 1982-05-30 22:00:00 1042120620 1042120680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-05-30 22:00:00 1982-05-30 23:00:00 1042120680 1042120740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-31 00:00:00 1982-05-31 01:00:00 1042120800 1042120860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-05-31 01:00:00 1982-05-31 11:00:00 1042120860 1042121460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-31 11:00:00 1982-05-31 14:00:00 1042121460 1042121640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-05-31 14:00:00 1982-05-31 22:00:00 1042121640 1042122120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-05-31 22:00:00 1982-05-31 23:00:00 1042122120 1042122180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-06-04 05:00:00 1982-06-04 12:00:00 1042126860 1042127280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-04 13:00:00 1982-06-04 14:00:00 1042127340 1042127400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-04 14:00:00 1982-06-05 12:00:00 1042127400 1042128720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-05 12:00:00 1982-06-05 13:00:00 1042128720 1042128780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-06-05 13:00:00 1982-06-05 14:00:00 1042128780 1042128840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-05 14:00:00 1982-06-06 12:00:00 1042128840 1042130160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-06 13:00:00 1982-06-06 14:00:00 1042130220 1042130280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-06 14:00:00 1982-06-07 12:00:00 1042130280 1042131600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-07 13:00:00 1982-06-07 14:00:00 1042131660 1042131720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-07 14:00:00 1982-06-07 22:00:00 1042131720 1042132200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-07 22:00:00 1982-06-07 23:00:00 1042132200 1042132260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-07 23:00:00 1982-06-09 12:00:00 1042132260 1042134480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-09 13:00:00 1982-06-09 14:00:00 1042134540 1042134600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-09 14:00:00 1982-06-10 12:00:00 1042134600 1042135920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-10 13:00:00 1982-06-10 14:00:00 1042135980 1042136040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-10 14:00:00 1982-06-11 12:00:00 1042136040 1042137360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-11 13:00:00 1982-06-11 14:00:00 1042137420 1042137480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-11 14:00:00 1982-06-12 12:00:00 1042137480 1042138800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-12 13:00:00 1982-06-12 14:00:00 1042138860 1042138920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-12 14:00:00 1982-06-13 12:00:00 1042138920 1042140240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-13 13:00:00 1982-06-13 14:00:00 1042140300 1042140360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-13 14:00:00 1982-06-14 12:00:00 1042140360 1042141680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-14 13:00:00 1982-06-14 14:00:00 1042141740 1042141800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-14 14:00:00 1982-06-17 12:00:00 1042141800 1042146000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-17 13:00:00 1982-06-17 14:00:00 1042146060 1042146120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-17 14:00:00 1982-06-18 07:00:00 1042146120 1042147140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-18 07:00:00 1982-06-18 08:00:00 1042147140 1042147200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-06-18 08:00:00 1982-06-18 12:00:00 1042147200 1042147440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-18 13:00:00 1982-06-18 14:00:00 1042147500 1042147560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-18 14:00:00 1982-06-19 12:00:00 1042147560 1042148880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-19 13:00:00 1982-06-19 14:00:00 1042148940 1042149000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-19 14:00:00 1982-06-20 12:00:00 1042149000 1042150320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-20 13:00:00 1982-06-20 14:00:00 1042150380 1042150440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-20 14:00:00 1982-06-21 12:00:00 1042150440 1042151760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-21 13:00:00 1982-06-21 14:00:00 1042151820 1042151880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-21 14:00:00 1982-06-22 12:00:00 1042151880 1042153200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-22 13:00:00 1982-06-22 14:00:00 1042153260 1042153320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-22 14:00:00 1982-06-23 12:00:00 1042153320 1042154640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-23 13:00:00 1982-06-23 14:00:00 1042154700 1042154760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-23 14:00:00 1982-06-25 03:00:00 1042154760 1042156980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-25 03:00:00 1982-06-25 04:00:00 1042156980 1042157040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-06-25 04:00:00 1982-06-25 05:00:00 1042157040 1042157100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-25 05:00:00 1982-06-25 21:00:00 1042157100 1042158060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-25 21:00:00 1982-06-25 22:00:00 1042158060 1042158120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-25 22:00:00 1982-06-25 23:00:00 1042158120 1042158180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-25 23:00:00 1982-06-26 00:00:00 1042158180 1042158240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-26 00:00:00 1982-06-27 06:00:00 1042158240 1042160040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-27 06:00:00 1982-06-27 07:00:00 1042160040 1042160100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-27 07:00:00 1982-06-28 12:00:00 1042160100 1042161840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-28 13:00:00 1982-06-28 14:00:00 1042161900 1042161960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-28 14:00:00 1982-06-29 12:00:00 1042161960 1042163280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-29 13:00:00 1982-06-29 14:00:00 1042163340 1042163400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-29 14:00:00 1982-06-30 12:00:00 1042163400 1042164720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-30 13:00:00 1982-06-30 14:00:00 1042164780 1042164840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-06-30 14:00:00 1982-06-30 23:00:00 1042164840 1042165380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-06-30 23:00:00 1982-07-01 00:00:00 1042165380 1042165440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-07-03 14:00:00 1982-07-03 15:00:00 1042169160 1042169220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-03 15:00:00 1982-07-04 13:00:00 1042169220 1042170540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-04 14:00:00 1982-07-04 15:00:00 1042170600 1042170660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-04 15:00:00 1982-07-05 13:00:00 1042170660 1042171980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-05 14:00:00 1982-07-05 15:00:00 1042172040 1042172100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-05 15:00:00 1982-07-06 03:00:00 1042172100 1042172820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-06 03:00:00 1982-07-06 04:00:00 1042172820 1042172880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-07-06 04:00:00 1982-07-06 05:00:00 1042172880 1042172940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-06 05:00:00 1982-07-06 13:00:00 1042172940 1042173420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-06 14:00:00 1982-07-06 15:00:00 1042173480 1042173540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-06 15:00:00 1982-07-07 13:00:00 1042173540 1042174860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-07 14:00:00 1982-07-07 15:00:00 1042174920 1042174980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-07 15:00:00 1982-07-08 13:00:00 1042174980 1042176300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-08 14:00:00 1982-07-08 15:00:00 1042176360 1042176420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-08 15:00:00 1982-07-09 12:00:00 1042176420 1042177680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-09 12:00:00 1982-07-09 15:00:00 1042177680 1042177860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-09 15:00:00 1982-07-10 13:00:00 1042177860 1042179180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-10 14:00:00 1982-07-10 15:00:00 1042179240 1042179300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-10 15:00:00 1982-07-10 16:00:00 1042179300 1042179360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-10 16:00:00 1982-07-10 17:00:00 1042179360 1042179420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-10 17:00:00 1982-07-11 13:00:00 1042179420 1042180620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-11 14:00:00 1982-07-11 15:00:00 1042180680 1042180740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-11 15:00:00 1982-07-12 13:00:00 1042180740 1042182060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-12 14:00:00 1982-07-12 15:00:00 1042182120 1042182180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-12 15:00:00 1982-07-13 13:00:00 1042182180 1042183500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-13 14:00:00 1982-07-13 15:00:00 1042183560 1042183620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-13 15:00:00 1982-07-14 03:00:00 1042183620 1042184340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-14 04:00:00 1982-07-14 05:00:00 1042184400 1042184460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-14 05:00:00 1982-07-14 13:00:00 1042184460 1042184940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-14 14:00:00 1982-07-14 15:00:00 1042185000 1042185060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-14 15:00:00 1982-07-15 13:00:00 1042185060 1042186380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-15 14:00:00 1982-07-15 15:00:00 1042186440 1042186500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-15 15:00:00 1982-07-16 13:00:00 1042186500 1042187820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-16 14:00:00 1982-07-16 15:00:00 1042187880 1042187940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-16 15:00:00 1982-07-17 13:00:00 1042187940 1042189260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-17 14:00:00 1982-07-19 01:00:00 1042189320 1042191420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-19 03:00:00 1982-07-19 13:00:00 1042191540 1042192140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-19 14:00:00 1982-07-19 15:00:00 1042192200 1042192260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-19 15:00:00 1982-07-20 03:00:00 1042192260 1042192980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-20 03:00:00 1982-07-20 04:00:00 1042192980 1042193040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-07-20 04:00:00 1982-07-20 05:00:00 1042193040 1042193100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-20 05:00:00 1982-07-20 13:00:00 1042193100 1042193580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-20 14:00:00 1982-07-20 15:00:00 1042193640 1042193700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-20 15:00:00 1982-07-21 13:00:00 1042193700 1042195020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-21 14:00:00 1982-07-21 18:00:00 1042195080 1042195320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-22 02:00:00 1982-07-22 13:00:00 1042195800 1042196460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-22 14:00:00 1982-07-22 15:00:00 1042196520 1042196580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-22 15:00:00 1982-07-23 13:00:00 1042196580 1042197900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-23 14:00:00 1982-07-23 15:00:00 1042197960 1042198020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-23 15:00:00 1982-07-24 13:00:00 1042198020 1042199340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-24 14:00:00 1982-07-24 15:00:00 1042199400 1042199460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-24 15:00:00 1982-07-25 13:00:00 1042199460 1042200780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-25 14:00:00 1982-07-25 15:00:00 1042200840 1042200900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-25 15:00:00 1982-07-26 13:00:00 1042200900 1042202220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-26 14:00:00 1982-07-26 15:00:00 1042202280 1042202340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-26 15:00:00 1982-07-27 13:00:00 1042202340 1042203660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-27 14:00:00 1982-07-27 15:00:00 1042203720 1042203780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-27 15:00:00 1982-07-28 05:00:00 1042203780 1042204620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-28 05:00:00 1982-07-28 06:00:00 1042204620 1042204680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-07-28 06:00:00 1982-07-28 13:00:00 1042204680 1042205100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-28 14:00:00 1982-07-28 15:00:00 1042205160 1042205220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-28 15:00:00 1982-07-29 13:00:00 1042205220 1042206540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-29 14:00:00 1982-07-29 15:00:00 1042206600 1042206660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-29 15:00:00 1982-07-30 13:00:00 1042206660 1042207980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-30 14:00:00 1982-07-30 15:00:00 1042208040 1042208100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-30 15:00:00 1982-07-31 13:00:00 1042208100 1042209420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-07-31 14:00:00 1982-07-31 15:00:00 1042209480 1042209540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-07-31 15:00:00 1982-08-01 13:00:00 1042209540 1042210860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-01 14:00:00 1982-08-01 15:00:00 1042210920 1042210980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-01 15:00:00 1982-08-02 13:00:00 1042210980 1042212300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-02 14:00:00 1982-08-02 15:00:00 1042212360 1042212420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-02 15:00:00 1982-08-03 03:00:00 1042212420 1042213140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-03 03:00:00 1982-08-03 04:00:00 1042213140 1042213200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-08-03 04:00:00 1982-08-03 05:00:00 1042213200 1042213260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-03 05:00:00 1982-08-03 12:00:00 1042213260 1042213680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-03 12:00:00 1982-08-03 13:00:00 1042213680 1042213740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-08-03 14:00:00 1982-08-04 03:00:00 1042213800 1042214580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-04 03:00:00 1982-08-04 08:00:00 1042214580 1042214880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-08-04 08:00:00 1982-08-04 11:00:00 1042214880 1042215060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-04 11:00:00 1982-08-04 13:00:00 1042215060 1042215180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-08-04 14:00:00 1982-08-04 19:00:00 1042215240 1042215540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-04 19:00:00 1982-08-04 20:00:00 1042215540 1042215600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-08-04 20:00:00 1982-08-09 12:00:00 1042215600 1042222320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-09 12:00:00 1982-08-09 13:00:00 1042222320 1042222380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-08-09 13:00:00 1982-08-09 14:00:00 1042222380 1042222440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-09 14:00:00 1982-08-09 15:00:00 1042222440 1042222500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-09 15:00:00 1982-08-10 03:00:00 1042222500 1042223220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-10 03:00:00 1982-08-10 04:00:00 1042223220 1042223280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-10 04:00:00 1982-08-10 07:00:00 1042223280 1042223460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-10 07:00:00 1982-08-10 08:00:00 1042223460 1042223520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-10 08:00:00 1982-08-10 12:00:00 1042223520 1042223760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-10 13:00:00 1982-08-10 14:00:00 1042223820 1042223880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-10 14:00:00 1982-08-11 12:00:00 1042223880 1042225200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-11 13:00:00 1982-08-11 14:00:00 1042225260 1042225320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-11 14:00:00 1982-08-12 12:00:00 1042225320 1042226640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-12 13:00:00 1982-08-12 14:00:00 1042226700 1042226760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-12 14:00:00 1982-08-13 12:00:00 1042226760 1042228080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-13 13:00:00 1982-08-13 14:00:00 1042228140 1042228200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-13 14:00:00 1982-08-14 12:00:00 1042228200 1042229520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-14 13:00:00 1982-08-14 14:00:00 1042229580 1042229640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-14 14:00:00 1982-08-15 12:00:00 1042229640 1042230960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-08-15 13:00:00 1982-08-15 14:00:00 1042231020 1042231080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-08-15 14:00:00 1982-10-06 12:00:00 1042231080 1042305840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-06 12:00:00 1982-10-06 14:00:00 1042305840 1042305960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-10-06 14:00:00 1982-10-07 03:00:00 1042305960 1042306740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-07 03:00:00 1982-10-07 04:00:00 1042306740 1042306800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-10-07 04:00:00 1982-10-07 06:00:00 1042306800 1042306920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-10-07 06:00:00 1982-10-07 12:00:00 1042306920 1042307280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-07 12:00:00 1982-10-07 13:00:00 1042307280 1042307340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-10-07 14:00:00 1982-10-07 15:00:00 1042307400 1042307460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-10-07 15:00:00 1982-10-08 12:00:00 1042307460 1042308720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-08 12:00:00 1982-10-08 13:00:00 1042308720 1042308780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-10-08 14:00:00 1982-10-11 03:00:00 1042308840 1042312500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-11 03:00:00 1982-10-11 04:00:00 1042312500 1042312560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-10-14 00:00:00 1982-10-14 12:00:00 1042316640 1042317360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-14 13:00:00 1982-10-14 14:00:00 1042317420 1042317480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-10-14 14:00:00 1982-10-15 12:00:00 1042317480 1042318800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-15 13:00:00 1982-10-15 14:00:00 1042318860 1042318920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-10-15 14:00:00 1982-10-19 00:00:00 1042318920 1042323840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-19 00:00:00 1982-10-19 01:00:00 1042323840 1042323900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-10-19 01:00:00 1982-10-19 12:00:00 1042323900 1042324560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-19 12:00:00 1982-10-19 13:00:00 1042324560 1042324620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-10-19 13:00:00 1982-10-19 14:00:00 1042324620 1042324680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-10-19 14:00:00 1982-10-20 02:00:00 1042324680 1042325400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-20 02:00:00 1982-10-20 03:00:00 1042325400 1042325460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-10-20 04:00:00 1982-10-20 05:00:00 1042325520 1042325580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-10-20 05:00:00 1982-10-20 12:00:00 1042325580 1042326000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-20 13:00:00 1982-10-20 14:00:00 1042326060 1042326120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-10-20 14:00:00 1982-10-21 12:00:00 1042326120 1042327440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-21 12:00:00 1982-10-21 13:00:00 1042327440 1042327500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-10-21 14:00:00 1982-10-24 12:00:00 1042327560 1042331760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-24 13:00:00 1982-10-24 14:00:00 1042331820 1042331880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-10-24 14:00:00 1982-10-25 02:00:00 1042331880 1042332600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-25 02:00:00 1982-10-25 03:00:00 1042332600 1042332660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-10-28 01:00:00 1982-10-29 14:00:00 1042336860 1042339080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-29 14:00:00 1982-10-29 18:00:00 1042339080 1042339320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-10-29 18:00:00 1982-10-31 13:00:00 1042339320 1042341900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-10-31 13:00:00 1982-10-31 14:00:00 1042341900 1042341960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-10-31 14:00:00 1982-11-01 00:00:00 1042341960 1042342560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-11-01 00:00:00 1982-11-01 01:00:00 1042342560 1042342620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-11-01 02:00:00 1982-11-04 00:00:00 1042342680 1042346880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-11-04 00:00:00 1982-11-04 01:00:00 1042346880 1042346940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-11-05 04:00:00 1982-11-05 12:00:00 1042348560 1042349040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-11-05 12:00:00 1982-11-05 13:00:00 1042349040 1042349100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-11-05 14:00:00 1982-11-06 13:00:00 1042349160 1042350540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-11-06 13:00:00 1982-11-06 14:00:00 1042350540 1042350600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-11-06 14:00:00 1982-11-09 12:00:00 1042350600 1042354800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-11-09 12:00:00 1982-11-09 14:00:00 1042354800 1042354920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-11-09 14:00:00 1982-11-10 02:00:00 1042354920 1042355640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-11-10 04:00:00 1982-11-16 03:00:00 1042355760 1042364340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-11-16 05:00:00 1982-11-19 02:00:00 1042364460 1042368600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-11-19 02:00:00 1982-11-19 03:00:00 1042368600 1042368660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-11-19 03:00:00 1982-11-29 12:00:00 1042368660 1042383600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-11-29 13:00:00 1982-11-29 14:00:00 1042383660 1042383720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-11-29 14:00:00 1982-12-01 00:00:00 1042383720 1042385760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-01 00:00:00 1982-12-01 03:00:00 1042385760 1042385940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-01 03:00:00 1982-12-01 04:00:00 1042385940 1042386000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-01 04:00:00 1982-12-01 05:00:00 1042386000 1042386060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-12-01 05:00:00 1982-12-02 12:00:00 1042386060 1042387920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-02 12:00:00 1982-12-02 14:00:00 1042387920 1042388040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-02 14:00:00 1982-12-03 00:00:00 1042388040 1042388640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-03 00:00:00 1982-12-03 01:00:00 1042388640 1042388700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-03 01:00:00 1982-12-03 12:00:00 1042388700 1042389360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-03 12:00:00 1982-12-03 14:00:00 1042389360 1042389480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-03 14:00:00 1982-12-04 12:00:00 1042389480 1042390800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-04 12:00:00 1982-12-04 14:00:00 1042390800 1042390920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-04 14:00:00 1982-12-06 12:00:00 1042390920 1042393680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-06 12:00:00 1982-12-06 13:00:00 1042393680 1042393740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-06 14:00:00 1982-12-07 02:00:00 1042393800 1042394520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-07 02:00:00 1982-12-07 03:00:00 1042394520 1042394580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-07 03:00:00 1982-12-07 12:00:00 1042394580 1042395120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-07 12:00:00 1982-12-07 13:00:00 1042395120 1042395180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-07 13:00:00 1982-12-07 14:00:00 1042395180 1042395240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-12-07 14:00:00 1982-12-08 12:00:00 1042395240 1042396560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-08 12:00:00 1982-12-08 13:00:00 1042396560 1042396620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-08 14:00:00 1982-12-09 12:00:00 1042396680 1042398000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-09 12:00:00 1982-12-09 13:00:00 1042398000 1042398060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-09 14:00:00 1982-12-09 22:00:00 1042398120 1042398600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-09 22:00:00 1982-12-09 23:00:00 1042398600 1042398660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-09 23:00:00 1982-12-10 12:00:00 1042398660 1042399440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-10 13:00:00 1982-12-10 14:00:00 1042399500 1042399560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-12-10 14:00:00 1982-12-10 19:00:00 1042399560 1042399860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-10 19:00:00 1982-12-10 20:00:00 1042399860 1042399920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-12-10 20:00:00 1982-12-11 03:00:00 1042399920 1042400340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-11 03:00:00 1982-12-11 04:00:00 1042400340 1042400400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-12-11 04:00:00 1982-12-11 12:00:00 1042400400 1042400880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-11 13:00:00 1982-12-11 14:00:00 1042400940 1042401000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-12-11 14:00:00 1982-12-12 12:00:00 1042401000 1042402320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-12 12:00:00 1982-12-12 13:00:00 1042402320 1042402380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -1982-12-12 13:00:00 1982-12-12 14:00:00 1042402380 1042402440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz'] -1982-12-12 14:00:00 1982-12-31 12:00:00 1042402440 1042429680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1041904200_1042429680.npz -1982-12-31 14:00:00 1983-01-26 23:00:00 1042429800 1042467780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-02 04:00:00 1983-02-02 06:00:00 1042476720 1042476840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-02 06:00:00 1983-02-02 12:00:00 1042476840 1042477200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-02 12:00:00 1983-02-02 13:00:00 1042477200 1042477260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-02 14:00:00 1983-02-04 02:00:00 1042477320 1042479480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-04 02:00:00 1983-02-04 04:00:00 1042479480 1042479600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-04 04:00:00 1983-02-04 12:00:00 1042479600 1042480080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-04 13:00:00 1983-02-04 14:00:00 1042480140 1042480200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-04 14:00:00 1983-02-05 12:00:00 1042480200 1042481520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-05 12:00:00 1983-02-05 13:00:00 1042481520 1042481580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-05 13:00:00 1983-02-05 14:00:00 1042481580 1042481640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-05 14:00:00 1983-02-06 12:00:00 1042481640 1042482960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-06 12:00:00 1983-02-06 13:00:00 1042482960 1042483020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-06 14:00:00 1983-02-07 12:00:00 1042483080 1042484400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-07 12:00:00 1983-02-07 13:00:00 1042484400 1042484460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-07 13:00:00 1983-02-07 14:00:00 1042484460 1042484520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-07 14:00:00 1983-02-08 12:00:00 1042484520 1042485840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-08 12:00:00 1983-02-08 13:00:00 1042485840 1042485900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-08 14:00:00 1983-02-09 12:00:00 1042485960 1042487280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-09 12:00:00 1983-02-09 13:00:00 1042487280 1042487340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-09 14:00:00 1983-02-10 12:00:00 1042487400 1042488720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-10 13:00:00 1983-02-10 14:00:00 1042488780 1042488840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-10 14:00:00 1983-02-11 07:00:00 1042488840 1042489860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-11 07:00:00 1983-02-11 08:00:00 1042489860 1042489920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-11 08:00:00 1983-02-11 12:00:00 1042489920 1042490160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-11 12:00:00 1983-02-11 13:00:00 1042490160 1042490220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-11 14:00:00 1983-02-12 12:00:00 1042490280 1042491600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-12 12:00:00 1983-02-12 13:00:00 1042491600 1042491660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-12 13:00:00 1983-02-13 12:00:00 1042491660 1042493040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-13 12:00:00 1983-02-13 13:00:00 1042493040 1042493100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-13 13:00:00 1983-02-13 14:00:00 1042493100 1042493160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-13 14:00:00 1983-02-14 12:00:00 1042493160 1042494480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-14 12:00:00 1983-02-14 13:00:00 1042494480 1042494540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-14 13:00:00 1983-02-15 02:00:00 1042494540 1042495320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-15 02:00:00 1983-02-15 03:00:00 1042495320 1042495380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-15 03:00:00 1983-02-15 07:00:00 1042495380 1042495620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-15 07:00:00 1983-02-15 08:00:00 1042495620 1042495680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-15 08:00:00 1983-02-15 12:00:00 1042495680 1042495920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-15 13:00:00 1983-02-15 14:00:00 1042495980 1042496040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-15 14:00:00 1983-02-16 03:00:00 1042496040 1042496820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-16 03:00:00 1983-02-17 04:00:00 1042496820 1042498320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-17 04:00:00 1983-02-17 12:00:00 1042498320 1042498800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-17 12:00:00 1983-02-17 13:00:00 1042498800 1042498860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-17 13:00:00 1983-02-17 14:00:00 1042498860 1042498920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-17 14:00:00 1983-02-18 12:00:00 1042498920 1042500240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-18 12:00:00 1983-02-18 13:00:00 1042500240 1042500300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-18 14:00:00 1983-02-19 12:00:00 1042500360 1042501680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-19 12:00:00 1983-02-19 13:00:00 1042501680 1042501740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-19 13:00:00 1983-02-19 14:00:00 1042501740 1042501800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-19 14:00:00 1983-02-20 12:00:00 1042501800 1042503120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-20 12:00:00 1983-02-20 13:00:00 1042503120 1042503180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-20 14:00:00 1983-02-21 02:00:00 1042503240 1042503960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-21 02:00:00 1983-02-21 03:00:00 1042503960 1042504020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-21 05:00:00 1983-02-21 12:00:00 1042504140 1042504560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-21 12:00:00 1983-02-21 13:00:00 1042504560 1042504620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-02-21 13:00:00 1983-02-21 14:00:00 1042504620 1042504680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-02-21 14:00:00 1983-02-21 21:00:00 1042504680 1042505100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-02-21 21:00:00 1983-02-21 22:00:00 1042505100 1042505160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-04-08 00:00:00 1983-04-08 15:00:00 1042570080 1042570980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-08 15:00:00 1983-04-08 16:00:00 1042570980 1042571040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-08 16:00:00 1983-04-09 22:00:00 1042571040 1042572840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-09 22:00:00 1983-04-09 23:00:00 1042572840 1042572900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-15 03:00:00 1983-04-15 06:00:00 1042580340 1042580520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-15 06:00:00 1983-04-15 07:00:00 1042580520 1042580580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-15 07:00:00 1983-04-15 12:00:00 1042580580 1042580880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-15 12:00:00 1983-04-15 13:00:00 1042580880 1042580940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-15 14:00:00 1983-04-16 12:00:00 1042581000 1042582320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-16 12:00:00 1983-04-16 13:00:00 1042582320 1042582380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-16 14:00:00 1983-04-17 12:00:00 1042582440 1042583760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-17 12:00:00 1983-04-17 13:00:00 1042583760 1042583820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-17 14:00:00 1983-04-18 12:00:00 1042583880 1042585200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-18 12:00:00 1983-04-18 13:00:00 1042585200 1042585260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-18 14:00:00 1983-04-19 12:00:00 1042585320 1042586640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-19 12:00:00 1983-04-19 13:00:00 1042586640 1042586700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-19 14:00:00 1983-04-20 12:00:00 1042586760 1042588080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-20 12:00:00 1983-04-20 13:00:00 1042588080 1042588140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-20 14:00:00 1983-04-22 12:00:00 1042588200 1042590960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-22 12:00:00 1983-04-22 13:00:00 1042590960 1042591020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-22 14:00:00 1983-04-23 12:00:00 1042591080 1042592400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-23 12:00:00 1983-04-23 13:00:00 1042592400 1042592460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-23 14:00:00 1983-04-23 15:00:00 1042592520 1042592580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-23 15:00:00 1983-04-23 16:00:00 1042592580 1042592640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-04-23 16:00:00 1983-04-24 12:00:00 1042592640 1042593840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-24 12:00:00 1983-04-24 13:00:00 1042593840 1042593900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-24 13:00:00 1983-04-26 12:00:00 1042593900 1042596720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-26 12:00:00 1983-04-26 13:00:00 1042596720 1042596780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-26 14:00:00 1983-04-27 12:00:00 1042596840 1042598160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-27 12:00:00 1983-04-27 13:00:00 1042598160 1042598220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-27 14:00:00 1983-04-28 12:00:00 1042598280 1042599600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-28 12:00:00 1983-04-28 13:00:00 1042599600 1042599660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-28 14:00:00 1983-04-29 12:00:00 1042599720 1042601040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-29 12:00:00 1983-04-29 13:00:00 1042601040 1042601100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-29 14:00:00 1983-04-29 17:00:00 1042601160 1042601340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-29 17:00:00 1983-04-29 18:00:00 1042601340 1042601400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-04-29 18:00:00 1983-04-30 12:00:00 1042601400 1042602480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-04-30 12:00:00 1983-04-30 13:00:00 1042602480 1042602540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-04-30 14:00:00 1983-05-01 12:00:00 1042602600 1042603920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-01 12:00:00 1983-05-01 13:00:00 1042603920 1042603980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-05-01 14:00:00 1983-05-02 12:00:00 1042604040 1042605360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-02 12:00:00 1983-05-02 13:00:00 1042605360 1042605420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-05-02 14:00:00 1983-05-03 04:00:00 1042605480 1042606320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-03 04:00:00 1983-05-03 05:00:00 1042606320 1042606380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-05-03 05:00:00 1983-05-03 06:00:00 1042606380 1042606440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-05-03 06:00:00 1983-05-03 12:00:00 1042606440 1042606800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-03 12:00:00 1983-05-03 13:00:00 1042606800 1042606860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-05-03 13:00:00 1983-05-03 14:00:00 1042606860 1042606920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-05-03 14:00:00 1983-05-03 19:00:00 1042606920 1042607220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-03 19:00:00 1983-05-03 20:00:00 1042607220 1042607280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-05-03 20:00:00 1983-05-04 12:00:00 1042607280 1042608240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-04 12:00:00 1983-05-04 13:00:00 1042608240 1042608300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-05-04 13:00:00 1983-05-04 14:00:00 1042608300 1042608360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-05-04 14:00:00 1983-05-05 12:00:00 1042608360 1042609680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-05 12:00:00 1983-05-05 13:00:00 1042609680 1042609740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-05-05 13:00:00 1983-05-05 14:00:00 1042609740 1042609800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-05-05 14:00:00 1983-05-06 12:00:00 1042609800 1042611120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-06 12:00:00 1983-05-06 13:00:00 1042611120 1042611180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-05-06 13:00:00 1983-05-06 14:00:00 1042611180 1042611240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-05-06 14:00:00 1983-05-07 00:00:00 1042611240 1042611840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-07 00:00:00 1983-05-07 01:00:00 1042611840 1042611900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-05-07 01:00:00 1983-05-07 12:00:00 1042611900 1042612560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-07 12:00:00 1983-05-07 13:00:00 1042612560 1042612620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-05-07 13:00:00 1983-05-07 14:00:00 1042612620 1042612680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-05-07 14:00:00 1983-05-08 12:00:00 1042612680 1042614000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-08 13:00:00 1983-05-08 14:00:00 1042614060 1042614120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-05-08 14:00:00 1983-05-09 12:00:00 1042614120 1042615440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-05-09 14:00:00 1983-06-01 00:00:00 1042615560 1042647840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-07 03:00:00 1983-06-07 12:00:00 1042656660 1042657200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-07 12:00:00 1983-06-07 14:00:00 1042657200 1042657320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-07 14:00:00 1983-06-08 12:00:00 1042657320 1042658640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-08 12:00:00 1983-06-08 14:00:00 1042658640 1042658760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-08 14:00:00 1983-06-09 13:00:00 1042658760 1042660140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-09 13:00:00 1983-06-09 14:00:00 1042660140 1042660200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-09 14:00:00 1983-06-10 12:00:00 1042660200 1042661520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-10 12:00:00 1983-06-10 14:00:00 1042661520 1042661640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-10 14:00:00 1983-06-11 12:00:00 1042661640 1042662960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-11 12:00:00 1983-06-11 14:00:00 1042662960 1042663080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-11 14:00:00 1983-06-12 12:00:00 1042663080 1042664400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-12 12:00:00 1983-06-12 14:00:00 1042664400 1042664520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-12 14:00:00 1983-06-13 12:00:00 1042664520 1042665840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-13 12:00:00 1983-06-13 14:00:00 1042665840 1042665960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-13 14:00:00 1983-06-14 12:00:00 1042665960 1042667280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-14 12:00:00 1983-06-14 14:00:00 1042667280 1042667400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-14 14:00:00 1983-06-15 12:00:00 1042667400 1042668720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-15 12:00:00 1983-06-15 14:00:00 1042668720 1042668840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-15 14:00:00 1983-06-16 12:00:00 1042668840 1042670160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-16 12:00:00 1983-06-16 15:00:00 1042670160 1042670340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-16 15:00:00 1983-06-17 12:00:00 1042670340 1042671600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-17 12:00:00 1983-06-17 15:00:00 1042671600 1042671780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-17 15:00:00 1983-06-18 12:00:00 1042671780 1042673040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-18 12:00:00 1983-06-18 13:00:00 1042673040 1042673100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-18 14:00:00 1983-06-19 12:00:00 1042673160 1042674480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-19 12:00:00 1983-06-19 13:00:00 1042674480 1042674540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-19 14:00:00 1983-06-20 00:00:00 1042674600 1042675200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-20 00:00:00 1983-06-20 01:00:00 1042675200 1042675260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-20 01:00:00 1983-06-20 12:00:00 1042675260 1042675920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-20 12:00:00 1983-06-20 13:00:00 1042675920 1042675980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-20 13:00:00 1983-06-20 14:00:00 1042675980 1042676040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-06-20 14:00:00 1983-06-20 15:00:00 1042676040 1042676100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-20 15:00:00 1983-06-29 12:00:00 1042676100 1042688880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-29 12:00:00 1983-06-29 13:00:00 1042688880 1042688940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-29 14:00:00 1983-06-30 12:00:00 1042689000 1042690320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-06-30 12:00:00 1983-06-30 13:00:00 1042690320 1042690380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-06-30 14:00:00 1983-07-06 12:00:00 1042690440 1042698960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-06 12:00:00 1983-07-06 14:00:00 1042698960 1042699080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-06 14:00:00 1983-07-06 16:00:00 1042699080 1042699200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-06 16:00:00 1983-07-06 17:00:00 1042699200 1042699260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-06 17:00:00 1983-07-07 12:00:00 1042699260 1042700400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-07 12:00:00 1983-07-07 14:00:00 1042700400 1042700520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-07 14:00:00 1983-07-07 15:00:00 1042700520 1042700580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-07 15:00:00 1983-07-08 12:00:00 1042700580 1042701840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-08 12:00:00 1983-07-08 13:00:00 1042701840 1042701900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-08 13:00:00 1983-07-08 15:00:00 1042701900 1042702020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-08 15:00:00 1983-07-08 16:00:00 1042702020 1042702080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-08 16:00:00 1983-07-09 12:00:00 1042702080 1042703280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-09 12:00:00 1983-07-09 13:00:00 1042703280 1042703340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-09 13:00:00 1983-07-09 14:00:00 1042703340 1042703400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-09 14:00:00 1983-07-09 17:00:00 1042703400 1042703580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-09 17:00:00 1983-07-09 18:00:00 1042703580 1042703640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-09 18:00:00 1983-07-10 12:00:00 1042703640 1042704720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-10 12:00:00 1983-07-10 14:00:00 1042704720 1042704840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-10 14:00:00 1983-07-10 15:00:00 1042704840 1042704900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-10 15:00:00 1983-07-10 16:00:00 1042704900 1042704960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-10 16:00:00 1983-07-10 17:00:00 1042704960 1042705020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-10 17:00:00 1983-07-11 12:00:00 1042705020 1042706160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-11 12:00:00 1983-07-11 14:00:00 1042706160 1042706280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-11 14:00:00 1983-07-11 15:00:00 1042706280 1042706340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-11 15:00:00 1983-07-11 16:00:00 1042706340 1042706400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-11 16:00:00 1983-07-11 18:00:00 1042706400 1042706520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-11 18:00:00 1983-07-11 19:00:00 1042706520 1042706580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-11 19:00:00 1983-07-12 12:00:00 1042706580 1042707600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-12 12:00:00 1983-07-12 14:00:00 1042707600 1042707720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-12 14:00:00 1983-07-12 18:00:00 1042707720 1042707960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-12 18:00:00 1983-07-12 19:00:00 1042707960 1042708020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-12 19:00:00 1983-07-13 12:00:00 1042708020 1042709040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-13 12:00:00 1983-07-13 13:00:00 1042709040 1042709100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-13 14:00:00 1983-07-13 16:00:00 1042709160 1042709280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-13 16:00:00 1983-07-13 17:00:00 1042709280 1042709340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-13 17:00:00 1983-07-14 15:00:00 1042709340 1042710660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-14 15:00:00 1983-07-14 16:00:00 1042710660 1042710720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-14 16:00:00 1983-07-15 00:00:00 1042710720 1042711200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-15 00:00:00 1983-07-15 01:00:00 1042711200 1042711260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-15 01:00:00 1983-07-15 12:00:00 1042711260 1042711920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-15 12:00:00 1983-07-15 14:00:00 1042711920 1042712040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-15 14:00:00 1983-07-15 17:00:00 1042712040 1042712220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-15 17:00:00 1983-07-15 18:00:00 1042712220 1042712280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-15 18:00:00 1983-07-16 12:00:00 1042712280 1042713360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-16 12:00:00 1983-07-16 13:00:00 1042713360 1042713420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-16 13:00:00 1983-07-16 15:00:00 1042713420 1042713540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-16 15:00:00 1983-07-16 16:00:00 1042713540 1042713600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-16 16:00:00 1983-07-17 04:00:00 1042713600 1042714320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-17 04:00:00 1983-07-17 05:00:00 1042714320 1042714380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-17 05:00:00 1983-07-17 12:00:00 1042714380 1042714800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-17 12:00:00 1983-07-17 14:00:00 1042714800 1042714920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-17 14:00:00 1983-07-17 15:00:00 1042714920 1042714980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-17 15:00:00 1983-07-17 16:00:00 1042714980 1042715040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-17 16:00:00 1983-07-18 12:00:00 1042715040 1042716240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-18 12:00:00 1983-07-18 13:00:00 1042716240 1042716300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-18 14:00:00 1983-07-18 17:00:00 1042716360 1042716540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-18 17:00:00 1983-07-18 18:00:00 1042716540 1042716600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-18 18:00:00 1983-07-19 12:00:00 1042716600 1042717680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-19 12:00:00 1983-07-19 14:00:00 1042717680 1042717800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-19 14:00:00 1983-07-19 15:00:00 1042717800 1042717860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-19 15:00:00 1983-07-19 18:00:00 1042717860 1042718040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-19 18:00:00 1983-07-19 19:00:00 1042718040 1042718100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-19 19:00:00 1983-07-20 12:00:00 1042718100 1042719120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-20 12:00:00 1983-07-20 13:00:00 1042719120 1042719180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-20 13:00:00 1983-07-20 16:00:00 1042719180 1042719360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-20 16:00:00 1983-07-20 17:00:00 1042719360 1042719420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-20 17:00:00 1983-07-20 18:00:00 1042719420 1042719480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-20 18:00:00 1983-07-20 19:00:00 1042719480 1042719540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-20 19:00:00 1983-07-20 22:00:00 1042719540 1042719720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-20 22:00:00 1983-07-20 23:00:00 1042719720 1042719780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-20 23:00:00 1983-07-21 12:00:00 1042719780 1042720560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-21 12:00:00 1983-07-21 14:00:00 1042720560 1042720680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-21 14:00:00 1983-07-21 18:00:00 1042720680 1042720920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-21 18:00:00 1983-07-21 19:00:00 1042720920 1042720980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-21 19:00:00 1983-07-22 07:00:00 1042720980 1042721700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-22 07:00:00 1983-07-22 08:00:00 1042721700 1042721760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-22 08:00:00 1983-07-22 12:00:00 1042721760 1042722000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-22 12:00:00 1983-07-22 14:00:00 1042722000 1042722120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-22 14:00:00 1983-07-22 17:00:00 1042722120 1042722300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-22 17:00:00 1983-07-22 18:00:00 1042722300 1042722360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-22 18:00:00 1983-07-22 19:00:00 1042722360 1042722420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-22 19:00:00 1983-07-22 20:00:00 1042722420 1042722480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-22 20:00:00 1983-07-23 12:00:00 1042722480 1042723440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-23 12:00:00 1983-07-23 13:00:00 1042723440 1042723500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-23 14:00:00 1983-07-23 16:00:00 1042723560 1042723680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-23 16:00:00 1983-07-23 17:00:00 1042723680 1042723740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-23 17:00:00 1983-07-23 19:00:00 1042723740 1042723860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-23 19:00:00 1983-07-23 20:00:00 1042723860 1042723920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-23 20:00:00 1983-07-24 00:00:00 1042723920 1042724160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-24 00:00:00 1983-07-24 01:00:00 1042724160 1042724220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-24 01:00:00 1983-07-24 12:00:00 1042724220 1042724880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-24 12:00:00 1983-07-24 13:00:00 1042724880 1042724940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-24 14:00:00 1983-07-25 12:00:00 1042725000 1042726320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-25 12:00:00 1983-07-25 14:00:00 1042726320 1042726440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-25 14:00:00 1983-07-25 15:00:00 1042726440 1042726500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-25 15:00:00 1983-07-25 19:00:00 1042726500 1042726740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-25 19:00:00 1983-07-25 20:00:00 1042726740 1042726800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-25 20:00:00 1983-07-26 12:00:00 1042726800 1042727760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-26 12:00:00 1983-07-26 14:00:00 1042727760 1042727880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-26 14:00:00 1983-07-26 15:00:00 1042727880 1042727940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-26 15:00:00 1983-07-26 16:00:00 1042727940 1042728000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-26 16:00:00 1983-07-27 12:00:00 1042728000 1042729200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-27 12:00:00 1983-07-27 14:00:00 1042729200 1042729320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-27 14:00:00 1983-07-27 17:00:00 1042729320 1042729500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-27 17:00:00 1983-07-27 18:00:00 1042729500 1042729560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-27 18:00:00 1983-07-28 12:00:00 1042729560 1042730640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-28 12:00:00 1983-07-28 13:00:00 1042730640 1042730700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-28 14:00:00 1983-07-28 17:00:00 1042730760 1042730940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-28 17:00:00 1983-07-28 18:00:00 1042730940 1042731000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-28 18:00:00 1983-07-29 12:00:00 1042731000 1042732080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-29 12:00:00 1983-07-29 14:00:00 1042732080 1042732200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-29 14:00:00 1983-07-29 15:00:00 1042732200 1042732260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-29 15:00:00 1983-07-29 17:00:00 1042732260 1042732380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-29 17:00:00 1983-07-29 18:00:00 1042732380 1042732440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-29 18:00:00 1983-07-29 19:00:00 1042732440 1042732500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-29 19:00:00 1983-07-29 20:00:00 1042732500 1042732560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-29 20:00:00 1983-07-30 12:00:00 1042732560 1042733520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-30 12:00:00 1983-07-30 14:00:00 1042733520 1042733640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-30 14:00:00 1983-07-30 17:00:00 1042733640 1042733820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-30 17:00:00 1983-07-30 18:00:00 1042733820 1042733880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-30 18:00:00 1983-07-31 12:00:00 1042733880 1042734960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-31 12:00:00 1983-07-31 13:00:00 1042734960 1042735020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-07-31 14:00:00 1983-07-31 18:00:00 1042735080 1042735320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-07-31 18:00:00 1983-07-31 19:00:00 1042735320 1042735380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-07-31 19:00:00 1983-08-01 12:00:00 1042735380 1042736400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-01 12:00:00 1983-08-01 14:00:00 1042736400 1042736520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-01 14:00:00 1983-08-01 15:00:00 1042736520 1042736580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-01 15:00:00 1983-08-02 12:00:00 1042736580 1042737840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-02 12:00:00 1983-08-02 13:00:00 1042737840 1042737900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-02 14:00:00 1983-08-02 15:00:00 1042737960 1042738020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-02 15:00:00 1983-08-02 16:00:00 1042738020 1042738080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-02 16:00:00 1983-08-02 19:00:00 1042738080 1042738260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-02 19:00:00 1983-08-02 20:00:00 1042738260 1042738320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-02 20:00:00 1983-08-03 12:00:00 1042738320 1042739280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-03 12:00:00 1983-08-03 14:00:00 1042739280 1042739400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-03 14:00:00 1983-08-03 15:00:00 1042739400 1042739460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-03 15:00:00 1983-08-03 16:00:00 1042739460 1042739520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-03 16:00:00 1983-08-03 17:00:00 1042739520 1042739580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-03 17:00:00 1983-08-03 18:00:00 1042739580 1042739640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-03 18:00:00 1983-08-04 03:00:00 1042739640 1042740180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-04 03:00:00 1983-08-04 04:00:00 1042740180 1042740240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-04 04:00:00 1983-08-04 12:00:00 1042740240 1042740720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-04 13:00:00 1983-08-04 14:00:00 1042740780 1042740840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-04 14:00:00 1983-08-05 12:00:00 1042740840 1042742160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-05 12:00:00 1983-08-05 13:00:00 1042742160 1042742220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-05 14:00:00 1983-08-06 12:00:00 1042742280 1042743600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-06 12:00:00 1983-08-06 13:00:00 1042743600 1042743660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-06 14:00:00 1983-08-07 12:00:00 1042743720 1042745040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-07 12:00:00 1983-08-07 13:00:00 1042745040 1042745100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-07 14:00:00 1983-08-08 12:00:00 1042745160 1042746480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-08 12:00:00 1983-08-08 13:00:00 1042746480 1042746540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-08 14:00:00 1983-08-09 03:00:00 1042746600 1042747380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-09 03:00:00 1983-08-09 05:00:00 1042747380 1042747500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-09 05:00:00 1983-08-09 12:00:00 1042747500 1042747920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-09 13:00:00 1983-08-09 14:00:00 1042747980 1042748040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-09 14:00:00 1983-08-10 12:00:00 1042748040 1042749360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-10 12:00:00 1983-08-10 13:00:00 1042749360 1042749420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-10 13:00:00 1983-08-10 14:00:00 1042749420 1042749480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-10 14:00:00 1983-08-11 12:00:00 1042749480 1042750800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-11 13:00:00 1983-08-11 14:00:00 1042750860 1042750920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-11 14:00:00 1983-08-12 12:00:00 1042750920 1042752240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-12 13:00:00 1983-08-12 14:00:00 1042752300 1042752360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-12 14:00:00 1983-08-13 12:00:00 1042752360 1042753680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-13 13:00:00 1983-08-13 14:00:00 1042753740 1042753800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-13 14:00:00 1983-08-14 12:00:00 1042753800 1042755120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-14 12:00:00 1983-08-14 13:00:00 1042755120 1042755180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-14 13:00:00 1983-08-14 14:00:00 1042755180 1042755240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-14 14:00:00 1983-08-15 13:00:00 1042755240 1042756620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-15 13:00:00 1983-08-15 14:00:00 1042756620 1042756680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-15 14:00:00 1983-08-15 17:00:00 1042756680 1042756860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-15 17:00:00 1983-08-15 18:00:00 1042756860 1042756920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-15 18:00:00 1983-08-16 13:00:00 1042756920 1042758060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-16 13:00:00 1983-08-16 14:00:00 1042758060 1042758120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-16 14:00:00 1983-08-17 13:00:00 1042758120 1042759500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-17 13:00:00 1983-08-17 14:00:00 1042759500 1042759560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-17 14:00:00 1983-08-18 12:00:00 1042759560 1042760880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-18 13:00:00 1983-08-18 14:00:00 1042760940 1042761000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-18 14:00:00 1983-08-18 23:00:00 1042761000 1042761540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-18 23:00:00 1983-08-19 00:00:00 1042761540 1042761600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-19 01:00:00 1983-08-19 12:00:00 1042761660 1042762320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-19 12:00:00 1983-08-19 13:00:00 1042762320 1042762380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-19 13:00:00 1983-08-19 14:00:00 1042762380 1042762440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-19 14:00:00 1983-08-20 12:00:00 1042762440 1042763760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-20 12:00:00 1983-08-20 13:00:00 1042763760 1042763820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-20 13:00:00 1983-08-20 14:00:00 1042763820 1042763880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-20 14:00:00 1983-08-21 12:00:00 1042763880 1042765200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-21 13:00:00 1983-08-21 14:00:00 1042765260 1042765320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-21 14:00:00 1983-08-22 12:00:00 1042765320 1042766640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-22 13:00:00 1983-08-22 14:00:00 1042766700 1042766760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-22 14:00:00 1983-08-23 12:00:00 1042766760 1042768080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-23 13:00:00 1983-08-23 14:00:00 1042768140 1042768200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-23 14:00:00 1983-08-24 10:00:00 1042768200 1042769400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-24 10:00:00 1983-08-24 12:00:00 1042769400 1042769520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-25 04:00:00 1983-08-25 12:00:00 1042770480 1042770960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-25 12:00:00 1983-08-25 13:00:00 1042770960 1042771020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-25 14:00:00 1983-08-25 15:00:00 1042771080 1042771140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-25 15:00:00 1983-08-26 12:00:00 1042771140 1042772400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-26 12:00:00 1983-08-26 13:00:00 1042772400 1042772460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-26 14:00:00 1983-08-26 15:00:00 1042772520 1042772580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-26 15:00:00 1983-08-27 12:00:00 1042772580 1042773840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-27 12:00:00 1983-08-27 13:00:00 1042773840 1042773900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-27 14:00:00 1983-08-28 12:00:00 1042773960 1042775280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-28 12:00:00 1983-08-28 13:00:00 1042775280 1042775340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-28 14:00:00 1983-08-28 15:00:00 1042775400 1042775460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-28 15:00:00 1983-08-29 12:00:00 1042775460 1042776720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-29 13:00:00 1983-08-29 14:00:00 1042776780 1042776840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-29 14:00:00 1983-08-30 13:00:00 1042776840 1042778220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-30 13:00:00 1983-08-30 14:00:00 1042778220 1042778280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-08-30 14:00:00 1983-08-31 12:00:00 1042778280 1042779600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-08-31 12:00:00 1983-08-31 13:00:00 1042779600 1042779660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-08-31 14:00:00 1983-09-01 12:00:00 1042779720 1042781040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-01 12:00:00 1983-09-01 14:00:00 1042781040 1042781160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-01 14:00:00 1983-09-04 11:00:00 1042781160 1042785300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-04 11:00:00 1983-09-04 12:00:00 1042785300 1042785360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-04 12:00:00 1983-09-04 13:00:00 1042785360 1042785420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-04 13:00:00 1983-09-04 14:00:00 1042785420 1042785480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-09-04 14:00:00 1983-09-05 12:00:00 1042785480 1042786800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-05 12:00:00 1983-09-05 13:00:00 1042786800 1042786860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-05 14:00:00 1983-09-05 17:00:00 1042786920 1042787100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-05 17:00:00 1983-09-05 18:00:00 1042787100 1042787160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-05 18:00:00 1983-09-06 12:00:00 1042787160 1042788240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-06 12:00:00 1983-09-06 14:00:00 1042788240 1042788360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-06 14:00:00 1983-09-07 12:00:00 1042788360 1042789680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-07 14:00:00 1983-09-07 15:00:00 1042789800 1042789860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-09-07 15:00:00 1983-09-08 12:00:00 1042789860 1042791120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-08 12:00:00 1983-09-08 14:00:00 1042791120 1042791240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-08 14:00:00 1983-09-10 12:00:00 1042791240 1042794000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-10 12:00:00 1983-09-10 13:00:00 1042794000 1042794060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-10 14:00:00 1983-09-11 16:00:00 1042794120 1042795680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-11 16:00:00 1983-09-11 17:00:00 1042795680 1042795740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-09-11 17:00:00 1983-09-11 22:00:00 1042795740 1042796040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-11 22:00:00 1983-09-11 23:00:00 1042796040 1042796100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-11 23:00:00 1983-09-14 12:00:00 1042796100 1042799760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-14 12:00:00 1983-09-14 13:00:00 1042799760 1042799820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-14 14:00:00 1983-09-15 12:00:00 1042799880 1042801200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-15 12:00:00 1983-09-15 13:00:00 1042801200 1042801260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-15 14:00:00 1983-09-17 12:00:00 1042801320 1042804080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-17 12:00:00 1983-09-17 13:00:00 1042804080 1042804140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-17 13:00:00 1983-09-17 14:00:00 1042804140 1042804200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-09-17 14:00:00 1983-09-17 18:00:00 1042804200 1042804440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-17 18:00:00 1983-09-17 19:00:00 1042804440 1042804500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-17 19:00:00 1983-09-18 12:00:00 1042804500 1042805520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-18 12:00:00 1983-09-18 14:00:00 1042805520 1042805640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-18 14:00:00 1983-09-19 12:00:00 1042805640 1042806960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-19 12:00:00 1983-09-19 14:00:00 1042806960 1042807080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-19 14:00:00 1983-09-20 08:00:00 1042807080 1042808160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-20 08:00:00 1983-09-20 09:00:00 1042808160 1042808220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-20 09:00:00 1983-09-20 12:00:00 1042808220 1042808400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-20 12:00:00 1983-09-20 14:00:00 1042808400 1042808520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-20 14:00:00 1983-09-21 00:00:00 1042808520 1042809120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-21 00:00:00 1983-09-21 01:00:00 1042809120 1042809180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-21 01:00:00 1983-09-21 08:00:00 1042809180 1042809600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-21 08:00:00 1983-09-21 09:00:00 1042809600 1042809660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-21 09:00:00 1983-09-21 12:00:00 1042809660 1042809840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-21 12:00:00 1983-09-21 13:00:00 1042809840 1042809900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-21 14:00:00 1983-09-23 12:00:00 1042809960 1042812720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-23 12:00:00 1983-09-23 13:00:00 1042812720 1042812780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-23 14:00:00 1983-09-24 18:00:00 1042812840 1042814520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-24 18:00:00 1983-09-24 19:00:00 1042814520 1042814580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-24 19:00:00 1983-09-25 12:00:00 1042814580 1042815600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-25 12:00:00 1983-09-25 13:00:00 1042815600 1042815660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-25 14:00:00 1983-09-26 12:00:00 1042815720 1042817040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-26 12:00:00 1983-09-26 13:00:00 1042817040 1042817100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-26 14:00:00 1983-09-26 20:00:00 1042817160 1042817520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-26 20:00:00 1983-09-26 21:00:00 1042817520 1042817580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-26 21:00:00 1983-09-27 03:00:00 1042817580 1042817940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-27 03:00:00 1983-09-27 22:00:00 1042817940 1042819080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-27 22:00:00 1983-09-28 04:00:00 1042819080 1042819440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-28 04:00:00 1983-09-28 05:00:00 1042819440 1042819500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-28 05:00:00 1983-09-28 11:00:00 1042819500 1042819860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-28 11:00:00 1983-09-28 12:00:00 1042819860 1042819920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-28 13:00:00 1983-09-28 14:00:00 1042819980 1042820040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-09-28 14:00:00 1983-09-29 05:00:00 1042820040 1042820940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-29 05:00:00 1983-09-29 06:00:00 1042820940 1042821000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-29 06:00:00 1983-09-29 09:00:00 1042821000 1042821180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-29 09:00:00 1983-09-29 10:00:00 1042821180 1042821240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-29 10:00:00 1983-09-29 11:00:00 1042821240 1042821300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-29 11:00:00 1983-09-29 12:00:00 1042821300 1042821360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-09-29 13:00:00 1983-09-30 00:00:00 1042821420 1042822080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-09-30 00:00:00 1983-09-30 09:00:00 1042822080 1042822620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-03 22:00:00 1983-10-06 12:00:00 1042827720 1042831440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-06 12:00:00 1983-10-06 13:00:00 1042831440 1042831500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-06 14:00:00 1983-10-09 12:00:00 1042831560 1042835760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-09 12:00:00 1983-10-09 13:00:00 1042835760 1042835820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-09 13:00:00 1983-10-10 02:00:00 1042835820 1042836600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-10 02:00:00 1983-10-10 03:00:00 1042836600 1042836660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-10-10 03:00:00 1983-10-10 12:00:00 1042836660 1042837200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-10 13:00:00 1983-10-10 14:00:00 1042837260 1042837320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-10-10 14:00:00 1983-10-11 11:00:00 1042837320 1042838580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-11 11:00:00 1983-10-11 12:00:00 1042838580 1042838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-11 13:00:00 1983-10-11 14:00:00 1042838700 1042838760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-10-11 14:00:00 1983-10-12 10:00:00 1042838760 1042839960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-12 10:00:00 1983-10-12 11:00:00 1042839960 1042840020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-12 11:00:00 1983-10-12 13:00:00 1042840020 1042840140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-12 13:00:00 1983-10-18 03:00:00 1042840140 1042848180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-24 04:00:00 1983-10-24 05:00:00 1042856880 1042856940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-10-24 05:00:00 1983-10-24 11:00:00 1042856940 1042857300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-24 11:00:00 1983-10-24 12:00:00 1042857300 1042857360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-24 14:00:00 1983-10-24 22:00:00 1042857480 1042857960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-24 22:00:00 1983-10-24 23:00:00 1042857960 1042858020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-24 23:00:00 1983-10-25 08:00:00 1042858020 1042858560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-25 08:00:00 1983-10-25 09:00:00 1042858560 1042858620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-25 09:00:00 1983-10-25 12:00:00 1042858620 1042858800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-25 12:00:00 1983-10-25 13:00:00 1042858800 1042858860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-25 13:00:00 1983-10-25 14:00:00 1042858860 1042858920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-10-25 14:00:00 1983-10-26 03:00:00 1042858920 1042859700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-26 03:00:00 1983-10-26 04:00:00 1042859700 1042859760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-26 04:00:00 1983-10-26 11:00:00 1042859760 1042860180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-26 11:00:00 1983-10-26 12:00:00 1042860180 1042860240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-26 14:00:00 1983-10-27 11:00:00 1042860360 1042861620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-27 11:00:00 1983-10-27 12:00:00 1042861620 1042861680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-27 13:00:00 1983-10-27 14:00:00 1042861740 1042861800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-10-27 14:00:00 1983-10-28 09:00:00 1042861800 1042862940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-28 09:00:00 1983-10-28 10:00:00 1042862940 1042863000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-28 10:00:00 1983-10-28 11:00:00 1042863000 1042863060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-28 13:00:00 1983-10-28 14:00:00 1042863180 1042863240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-10-28 14:00:00 1983-10-29 11:00:00 1042863240 1042864500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-29 11:00:00 1983-10-29 12:00:00 1042864500 1042864560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-10-29 14:00:00 1983-10-30 01:00:00 1042864680 1042865340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-30 01:00:00 1983-10-30 02:00:00 1042865340 1042865400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-10-30 02:00:00 1983-10-30 12:00:00 1042865400 1042866000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-30 13:00:00 1983-10-30 14:00:00 1042866060 1042866120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-10-30 14:00:00 1983-10-30 15:00:00 1042866120 1042866180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-30 15:00:00 1983-10-30 16:00:00 1042866180 1042866240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-10-30 16:00:00 1983-10-31 12:00:00 1042866240 1042867440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-10-31 13:00:00 1983-10-31 14:00:00 1042867500 1042867560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-10-31 14:00:00 1983-11-01 12:00:00 1042867560 1042868880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-01 13:00:00 1983-11-01 14:00:00 1042868940 1042869000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-01 14:00:00 1983-11-01 17:00:00 1042869000 1042869180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-01 17:00:00 1983-11-01 18:00:00 1042869180 1042869240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-01 18:00:00 1983-11-01 23:00:00 1042869240 1042869540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-01 23:00:00 1983-11-03 04:00:00 1042869540 1042871280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-03 04:00:00 1983-11-03 12:00:00 1042871280 1042871760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-03 12:00:00 1983-11-03 14:00:00 1042871760 1042871880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-03 14:00:00 1983-11-05 04:00:00 1042871880 1042874160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-05 04:00:00 1983-11-05 05:00:00 1042874160 1042874220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-05 05:00:00 1983-11-06 12:00:00 1042874220 1042876080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-06 12:00:00 1983-11-06 13:00:00 1042876080 1042876140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-06 13:00:00 1983-11-07 03:00:00 1042876140 1042876980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-07 03:00:00 1983-11-07 04:00:00 1042876980 1042877040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-07 04:00:00 1983-11-07 05:00:00 1042877040 1042877100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-07 05:00:00 1983-11-07 12:00:00 1042877100 1042877520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-07 12:00:00 1983-11-07 13:00:00 1042877520 1042877580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-07 13:00:00 1983-11-07 14:00:00 1042877580 1042877640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-07 14:00:00 1983-11-08 12:00:00 1042877640 1042878960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-08 12:00:00 1983-11-08 13:00:00 1042878960 1042879020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-08 14:00:00 1983-11-09 00:00:00 1042879080 1042879680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-09 00:00:00 1983-11-09 01:00:00 1042879680 1042879740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-09 01:00:00 1983-11-09 08:00:00 1042879740 1042880160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-09 08:00:00 1983-11-09 09:00:00 1042880160 1042880220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-09 09:00:00 1983-11-09 12:00:00 1042880220 1042880400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-09 12:00:00 1983-11-09 13:00:00 1042880400 1042880460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-09 14:00:00 1983-11-09 22:00:00 1042880520 1042881000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-09 22:00:00 1983-11-09 23:00:00 1042881000 1042881060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-09 23:00:00 1983-11-10 12:00:00 1042881060 1042881840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-10 12:00:00 1983-11-10 13:00:00 1042881840 1042881900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-10 13:00:00 1983-11-10 14:00:00 1042881900 1042881960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-10 14:00:00 1983-11-10 15:00:00 1042881960 1042882020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-10 15:00:00 1983-11-10 16:00:00 1042882020 1042882080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-10 16:00:00 1983-11-11 12:00:00 1042882080 1042883280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-11 12:00:00 1983-11-11 13:00:00 1042883280 1042883340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-11 14:00:00 1983-11-12 12:00:00 1042883400 1042884720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-12 12:00:00 1983-11-12 13:00:00 1042884720 1042884780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-12 13:00:00 1983-11-12 14:00:00 1042884780 1042884840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-12 14:00:00 1983-11-13 12:00:00 1042884840 1042886160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-13 13:00:00 1983-11-13 14:00:00 1042886220 1042886280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-13 14:00:00 1983-11-14 23:00:00 1042886280 1042888260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-14 23:00:00 1983-11-15 00:00:00 1042888260 1042888320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-15 00:00:00 1983-11-15 12:00:00 1042888320 1042889040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-15 12:00:00 1983-11-15 13:00:00 1042889040 1042889100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-15 13:00:00 1983-11-15 14:00:00 1042889100 1042889160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-15 14:00:00 1983-11-16 12:00:00 1042889160 1042890480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-16 12:00:00 1983-11-16 13:00:00 1042890480 1042890540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-16 13:00:00 1983-11-16 14:00:00 1042890540 1042890600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-16 14:00:00 1983-11-17 06:00:00 1042890600 1042891560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-17 06:00:00 1983-11-17 07:00:00 1042891560 1042891620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-17 07:00:00 1983-11-17 12:00:00 1042891620 1042891920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-17 13:00:00 1983-11-17 14:00:00 1042891980 1042892040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-17 14:00:00 1983-11-17 21:00:00 1042892040 1042892460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-17 21:00:00 1983-11-17 22:00:00 1042892460 1042892520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-17 22:00:00 1983-11-17 23:00:00 1042892520 1042892580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-17 23:00:00 1983-11-18 12:00:00 1042892580 1042893360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-18 12:00:00 1983-11-18 13:00:00 1042893360 1042893420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-18 13:00:00 1983-11-18 14:00:00 1042893420 1042893480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-18 14:00:00 1983-11-19 12:00:00 1042893480 1042894800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-19 12:00:00 1983-11-19 13:00:00 1042894800 1042894860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-19 13:00:00 1983-11-19 14:00:00 1042894860 1042894920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-19 14:00:00 1983-11-21 12:00:00 1042894920 1042897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-21 12:00:00 1983-11-21 13:00:00 1042897680 1042897740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-21 13:00:00 1983-11-21 14:00:00 1042897740 1042897800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-21 14:00:00 1983-11-22 05:00:00 1042897800 1042898700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-22 05:00:00 1983-11-22 06:00:00 1042898700 1042898760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-22 06:00:00 1983-11-22 12:00:00 1042898760 1042899120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-22 13:00:00 1983-11-22 14:00:00 1042899180 1042899240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-11-22 14:00:00 1983-11-22 22:00:00 1042899240 1042899720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-22 22:00:00 1983-11-22 23:00:00 1042899720 1042899780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-23 01:00:00 1983-11-23 12:00:00 1042899900 1042900560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-23 12:00:00 1983-11-23 13:00:00 1042900560 1042900620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-23 13:00:00 1983-11-24 06:00:00 1042900620 1042901640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-24 06:00:00 1983-11-24 07:00:00 1042901640 1042901700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-24 07:00:00 1983-11-25 12:00:00 1042901700 1042903440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-25 12:00:00 1983-11-25 13:00:00 1042903440 1042903500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-25 13:00:00 1983-11-26 08:00:00 1042903500 1042904640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-26 08:00:00 1983-11-26 09:00:00 1042904640 1042904700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-26 09:00:00 1983-11-26 12:00:00 1042904700 1042904880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-26 12:00:00 1983-11-26 13:00:00 1042904880 1042904940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-26 13:00:00 1983-11-27 12:00:00 1042904940 1042906320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-27 12:00:00 1983-11-27 13:00:00 1042906320 1042906380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-27 13:00:00 1983-11-28 04:00:00 1042906380 1042907280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-28 04:00:00 1983-11-28 05:00:00 1042907280 1042907340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-28 05:00:00 1983-11-28 12:00:00 1042907340 1042907760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-28 12:00:00 1983-11-28 13:00:00 1042907760 1042907820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-28 13:00:00 1983-11-29 12:00:00 1042907820 1042909200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-29 12:00:00 1983-11-29 14:00:00 1042909200 1042909320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-11-29 14:00:00 1983-11-30 02:00:00 1042909320 1042910040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-11-30 02:00:00 1983-12-01 03:00:00 1042910040 1042911540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-01 03:00:00 1983-12-01 04:00:00 1042911540 1042911600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-12-01 04:00:00 1983-12-01 12:00:00 1042911600 1042912080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-01 12:00:00 1983-12-01 13:00:00 1042912080 1042912140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-01 14:00:00 1983-12-02 12:00:00 1042912200 1042913520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-02 12:00:00 1983-12-02 13:00:00 1042913520 1042913580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-02 14:00:00 1983-12-03 12:00:00 1042913640 1042914960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-03 12:00:00 1983-12-03 13:00:00 1042914960 1042915020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-03 14:00:00 1983-12-05 01:00:00 1042915080 1042917180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-05 01:00:00 1983-12-05 04:00:00 1042917180 1042917360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-12-05 04:00:00 1983-12-05 12:00:00 1042917360 1042917840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-05 12:00:00 1983-12-05 14:00:00 1042917840 1042917960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-05 14:00:00 1983-12-07 12:00:00 1042917960 1042920720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-07 12:00:00 1983-12-07 13:00:00 1042920720 1042920780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-07 14:00:00 1983-12-11 12:00:00 1042920840 1042926480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-11 12:00:00 1983-12-11 13:00:00 1042926480 1042926540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-11 13:00:00 1983-12-12 02:00:00 1042926540 1042927320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-12 02:00:00 1983-12-12 03:00:00 1042927320 1042927380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-12 03:00:00 1983-12-12 04:00:00 1042927380 1042927440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-12-12 04:00:00 1983-12-12 05:00:00 1042927440 1042927500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-12 05:00:00 1983-12-12 06:00:00 1042927500 1042927560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-12-12 06:00:00 1983-12-12 12:00:00 1042927560 1042927920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-12 12:00:00 1983-12-12 13:00:00 1042927920 1042927980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-12 14:00:00 1983-12-14 12:00:00 1042928040 1042930800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-14 12:00:00 1983-12-14 13:00:00 1042930800 1042930860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-14 14:00:00 1983-12-15 12:00:00 1042930920 1042932240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-15 12:00:00 1983-12-15 13:00:00 1042932240 1042932300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-15 14:00:00 1983-12-16 03:00:00 1042932360 1042933140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-16 06:00:00 1983-12-16 07:00:00 1042933320 1042933380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-12-16 07:00:00 1983-12-16 09:00:00 1042933380 1042933500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-16 09:00:00 1983-12-16 10:00:00 1042933500 1042933560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-16 10:00:00 1983-12-16 12:00:00 1042933560 1042933680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-16 12:00:00 1983-12-16 14:00:00 1042933680 1042933800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-16 14:00:00 1983-12-16 23:00:00 1042933800 1042934340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-16 23:00:00 1983-12-17 00:00:00 1042934340 1042934400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-17 00:00:00 1983-12-17 03:00:00 1042934400 1042934580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-17 03:00:00 1983-12-17 04:00:00 1042934580 1042934640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-12-17 04:00:00 1983-12-17 12:00:00 1042934640 1042935120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-17 12:00:00 1983-12-17 13:00:00 1042935120 1042935180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-17 14:00:00 1983-12-18 12:00:00 1042935240 1042936560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-18 12:00:00 1983-12-18 13:00:00 1042936560 1042936620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-18 14:00:00 1983-12-19 04:00:00 1042936680 1042937520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-19 04:00:00 1983-12-19 05:00:00 1042937520 1042937580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-12-19 05:00:00 1983-12-19 12:00:00 1042937580 1042938000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-19 12:00:00 1983-12-19 13:00:00 1042938000 1042938060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-19 14:00:00 1983-12-20 12:00:00 1042938120 1042939440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-20 12:00:00 1983-12-20 13:00:00 1042939440 1042939500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-20 14:00:00 1983-12-21 12:00:00 1042939560 1042940880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-21 12:00:00 1983-12-21 13:00:00 1042940880 1042940940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-21 14:00:00 1983-12-22 02:00:00 1042941000 1042941720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-22 02:00:00 1983-12-22 03:00:00 1042941720 1042941780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-22 03:00:00 1983-12-22 11:00:00 1042941780 1042942260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-22 11:00:00 1983-12-22 12:00:00 1042942260 1042942320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-12-22 12:00:00 1983-12-22 13:00:00 1042942320 1042942380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-22 14:00:00 1983-12-22 15:00:00 1042942440 1042942500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-22 15:00:00 1983-12-22 16:00:00 1042942500 1042942560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -1983-12-22 16:00:00 1983-12-23 13:00:00 1042942560 1042943820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1983-12-23 13:00:00 1983-12-23 14:00:00 1042943820 1042943880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz'] -1983-12-23 14:00:00 1983-12-24 09:00:00 1042943880 1042945020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042429800_1042945020:dup1.npz -1984-01-03 04:00:00 1984-02-12 09:00:00 1042959120 1043017020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-02-12 09:00:00 1984-02-12 10:00:00 1043017020 1043017080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-02-12 10:00:00 1984-08-06 04:00:00 1043017080 1043270160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-08-06 04:00:00 1984-08-06 05:00:00 1043270160 1043270220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-08-06 05:00:00 1984-08-06 13:00:00 1043270220 1043270700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-08-06 14:00:00 1984-08-06 15:00:00 1043270760 1043270820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-08-06 15:00:00 1984-08-06 22:00:00 1043270820 1043271240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-08-06 22:00:00 1984-08-06 23:00:00 1043271240 1043271300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-08-06 23:00:00 1984-08-07 00:00:00 1043271300 1043271360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-08-07 00:00:00 1984-09-01 10:00:00 1043271360 1043307960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-01 10:00:00 1984-09-01 11:00:00 1043307960 1043308020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-01 11:00:00 1984-09-03 01:00:00 1043308020 1043310300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-03 01:00:00 1984-09-03 02:00:00 1043310300 1043310360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-03 02:00:00 1984-09-04 02:00:00 1043310360 1043311800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-04 02:00:00 1984-09-04 03:00:00 1043311800 1043311860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-04 03:00:00 1984-09-06 08:00:00 1043311860 1043315040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-06 08:00:00 1984-09-06 10:00:00 1043315040 1043315160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-09-06 10:00:00 1984-09-07 08:00:00 1043315160 1043316480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-07 08:00:00 1984-09-07 09:00:00 1043316480 1043316540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-09-07 09:00:00 1984-09-07 10:00:00 1043316540 1043316600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-07 10:00:00 1984-09-08 09:00:00 1043316600 1043317980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-08 09:00:00 1984-09-08 10:00:00 1043317980 1043318040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-08 10:00:00 1984-09-08 14:00:00 1043318040 1043318280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-08 14:00:00 1984-09-08 15:00:00 1043318280 1043318340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-08 15:00:00 1984-09-08 17:00:00 1043318340 1043318460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-08 17:00:00 1984-09-08 18:00:00 1043318460 1043318520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-09-08 18:00:00 1984-09-09 08:00:00 1043318520 1043319360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-09 08:00:00 1984-09-09 09:00:00 1043319360 1043319420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-09-09 09:00:00 1984-09-09 10:00:00 1043319420 1043319480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-09 10:00:00 1984-09-10 09:00:00 1043319480 1043320860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-10 09:00:00 1984-09-10 10:00:00 1043320860 1043320920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-10 10:00:00 1984-09-11 14:00:00 1043320920 1043322600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-11 14:00:00 1984-09-11 15:00:00 1043322600 1043322660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-11 15:00:00 1984-09-12 13:00:00 1043322660 1043323980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-12 14:00:00 1984-09-12 15:00:00 1043324040 1043324100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-12 15:00:00 1984-09-13 00:00:00 1043324100 1043324640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-13 00:00:00 1984-09-13 01:00:00 1043324640 1043324700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-09-13 01:00:00 1984-09-13 22:00:00 1043324700 1043325960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-13 23:00:00 1984-09-14 00:00:00 1043326020 1043326080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-14 00:00:00 1984-09-17 13:00:00 1043326080 1043331180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-17 13:00:00 1984-09-17 14:00:00 1043331180 1043331240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-17 14:00:00 1984-09-18 03:00:00 1043331240 1043332020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-18 03:00:00 1984-09-18 08:00:00 1043332020 1043332320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-18 08:00:00 1984-09-18 13:00:00 1043332320 1043332620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-18 13:00:00 1984-09-18 14:00:00 1043332620 1043332680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-18 14:00:00 1984-09-20 13:00:00 1043332680 1043335500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-20 14:00:00 1984-09-20 15:00:00 1043335560 1043335620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-20 15:00:00 1984-09-21 13:00:00 1043335620 1043336940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-21 13:00:00 1984-09-21 15:00:00 1043336940 1043337060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-21 15:00:00 1984-09-22 13:00:00 1043337060 1043338380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-22 14:00:00 1984-09-22 15:00:00 1043338440 1043338500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-22 15:00:00 1984-09-23 13:00:00 1043338500 1043339820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-23 13:00:00 1984-09-23 15:00:00 1043339820 1043339940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-23 15:00:00 1984-09-24 13:00:00 1043339940 1043341260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-24 13:00:00 1984-09-24 15:00:00 1043341260 1043341380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-24 15:00:00 1984-09-25 13:00:00 1043341380 1043342700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-25 13:00:00 1984-09-25 15:00:00 1043342700 1043342820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-25 15:00:00 1984-09-26 00:00:00 1043342820 1043343360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-26 00:00:00 1984-09-26 02:00:00 1043343360 1043343480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-26 02:00:00 1984-09-26 13:00:00 1043343480 1043344140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-26 13:00:00 1984-09-26 15:00:00 1043344140 1043344260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-26 15:00:00 1984-09-27 13:00:00 1043344260 1043345580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-27 13:00:00 1984-09-27 15:00:00 1043345580 1043345700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-27 15:00:00 1984-09-28 13:00:00 1043345700 1043347020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-28 13:00:00 1984-09-28 15:00:00 1043347020 1043347140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-28 15:00:00 1984-09-29 13:00:00 1043347140 1043348460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-09-29 14:00:00 1984-09-29 15:00:00 1043348520 1043348580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -1984-09-29 15:00:00 1984-10-03 13:00:00 1043348580 1043354220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-10-03 14:00:00 1984-10-05 13:00:00 1043354280 1043357100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-10-09 00:00:00 1984-10-10 13:00:00 1043362080 1043364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-10-10 14:00:00 1984-10-11 13:00:00 1043364360 1043365740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-10-11 14:00:00 1984-10-15 13:00:00 1043365800 1043371500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-10-15 14:00:00 1984-10-17 13:00:00 1043371560 1043374380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-10-17 14:00:00 1984-10-21 13:00:00 1043374440 1043380140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-10-21 14:00:00 1984-10-22 23:00:00 1043380200 1043382180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-10-23 01:00:00 1984-10-23 04:00:00 1043382300 1043382480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-10-23 04:00:00 1984-10-23 05:00:00 1043382480 1043382540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-10-23 05:00:00 1984-11-02 13:00:00 1043382540 1043397420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-11-09 14:00:00 1984-11-12 03:00:00 1043407560 1043411220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-11-13 14:00:00 1984-12-04 13:00:00 1043413320 1043443500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1984-12-04 14:00:00 1984-12-06 13:00:00 1043443560 1043446380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz'] -1984-12-06 14:00:00 1984-12-29 13:00:00 1043446440 1043479500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1042959120_1043479500.npz -1985-01-03 14:00:00 1985-01-04 13:00:00 1043486760 1043488140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-01-04 14:00:00 1985-01-09 23:00:00 1043488200 1043495940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-01-09 23:00:00 1985-01-10 00:00:00 1043495940 1043496000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -1985-01-10 00:00:00 1985-01-14 00:00:00 1043496000 1043501760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-01-14 00:00:00 1985-01-14 12:00:00 1043501760 1043502480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-01-14 12:00:00 1985-01-29 13:00:00 1043502480 1043524140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-01-29 14:00:00 1985-01-30 13:00:00 1043524200 1043525580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-01-30 14:00:00 1985-02-03 00:00:00 1043525640 1043530560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-02-03 00:00:00 1985-02-03 12:00:00 1043530560 1043531280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-02-03 12:00:00 1985-02-24 23:00:00 1043531280 1043562180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-02-24 23:00:00 1985-02-25 13:00:00 1043562180 1043563020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -1985-02-25 18:00:00 1985-02-26 13:00:00 1043563320 1043564460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-02-26 14:00:00 1985-03-03 13:00:00 1043564520 1043571660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-03-03 14:00:00 1985-03-05 13:00:00 1043571720 1043574540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-03-05 14:00:00 1985-03-13 13:00:00 1043574600 1043586060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-03-13 14:00:00 1985-03-14 01:00:00 1043586120 1043586780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -1985-03-15 02:00:00 1985-03-18 23:00:00 1043588280 1043593860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-03-19 01:00:00 1985-03-22 13:00:00 1043593980 1043599020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-03-22 14:00:00 1985-03-24 13:00:00 1043599080 1043601900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-03-24 14:00:00 1985-04-21 13:00:00 1043601960 1043642220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-04-21 14:00:00 1985-04-22 04:00:00 1043642280 1043643120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-04-23 14:00:00 1985-04-25 13:00:00 1043645160 1043647980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-04-25 14:00:00 1985-04-26 13:00:00 1043648040 1043649420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-04-26 14:00:00 1985-04-28 13:00:00 1043649480 1043652300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-04-28 14:00:00 1985-04-29 13:00:00 1043652360 1043653740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -1985-06-26 05:00:00 1985-07-02 13:00:00 1043736780 1043745900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-07-02 14:00:00 1985-07-04 23:00:00 1043745960 1043749380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-07-05 01:00:00 1985-07-11 13:00:00 1043749500 1043758860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-07-12 14:00:00 1985-07-13 13:00:00 1043760360 1043761740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-07-13 14:00:00 1985-08-19 13:00:00 1043761800 1043815020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-08-19 14:00:00 1985-08-20 13:00:00 1043815080 1043816460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-08-20 14:00:00 1985-09-15 13:00:00 1043816520 1043853900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-09-15 14:00:00 1985-09-18 13:00:00 1043853960 1043858220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-09-18 14:00:00 1985-09-23 13:00:00 1043858280 1043865420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-09-23 14:00:00 1985-09-24 13:00:00 1043865480 1043866860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-09-25 07:00:00 1985-09-29 13:00:00 1043867940 1043874060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-09-29 14:00:00 1985-09-29 15:00:00 1043874120 1043874180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -1985-09-29 15:00:00 1985-09-30 15:00:00 1043874180 1043875620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-09-30 15:00:00 1985-09-30 16:00:00 1043875620 1043875680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -1985-09-30 16:00:00 1985-12-12 13:00:00 1043875680 1043980620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-12-12 14:00:00 1985-12-12 15:00:00 1043980680 1043980740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -1985-12-12 15:00:00 1985-12-15 13:00:00 1043980740 1043984940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-12-15 14:00:00 1985-12-15 15:00:00 1043985000 1043985060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -1985-12-15 15:00:00 1985-12-16 13:00:00 1043985060 1043986380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-12-16 13:00:00 1985-12-16 14:00:00 1043986380 1043986440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz'] -1985-12-16 15:00:00 1985-12-17 18:00:00 1043986500 1043988120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-12-17 19:00:00 1985-12-17 20:00:00 1043988180 1043988240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -1985-12-17 20:00:00 1985-12-31 13:00:00 1043988240 1044007980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043488200_1044007980.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1043486760_1044007980.npz -1985-12-31 14:00:00 1986-01-14 13:00:00 1044008040 1044028140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-01-14 14:00:00 1986-01-15 13:00:00 1044028200 1044029580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz'] -1986-01-15 14:00:00 1986-01-25 13:00:00 1044029640 1044043980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-01-25 14:00:00 1986-01-26 13:00:00 1044044040 1044045420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz'] -1986-01-26 14:00:00 1986-02-07 13:00:00 1044045480 1044062700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-02-07 14:00:00 1986-02-08 13:00:00 1044062760 1044064140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz'] -1986-02-08 14:00:00 1986-03-12 13:00:00 1044064200 1044110220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-03-12 14:00:00 1986-03-13 13:00:00 1044110280 1044111660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz'] -1986-03-20 14:00:00 1986-04-06 13:00:00 1044121800 1044146220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-04-06 14:00:00 1986-04-07 13:00:00 1044146280 1044147660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz'] -1986-04-07 14:00:00 1986-09-08 13:00:00 1044147720 1044369420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-09-08 14:00:00 1986-09-09 13:00:00 1044369480 1044370860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-09-09 14:00:00 1986-10-29 13:00:00 1044370920 1044442860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-10-29 13:00:00 1986-10-29 14:00:00 1044442860 1044442920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz'] -1986-10-29 14:00:00 1986-10-29 15:00:00 1044442920 1044442980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-10-29 15:00:00 1986-10-30 13:00:00 1044442980 1044444300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-10-30 13:00:00 1986-10-30 14:00:00 1044444300 1044444360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz'] -1986-10-30 14:00:00 1986-10-30 15:00:00 1044444360 1044444420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-10-30 15:00:00 1986-10-31 13:00:00 1044444420 1044445740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-10-31 13:00:00 1986-10-31 14:00:00 1044445740 1044445800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz'] -1986-10-31 14:00:00 1986-10-31 15:00:00 1044445800 1044445860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-10-31 15:00:00 1986-11-01 13:00:00 1044445860 1044447180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-11-01 13:00:00 1986-11-01 14:00:00 1044447180 1044447240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz'] -1986-11-01 14:00:00 1986-11-01 15:00:00 1044447240 1044447300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-01 15:00:00 1986-11-02 13:00:00 1044447300 1044448620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-11-02 13:00:00 1986-11-02 14:00:00 1044448620 1044448680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz'] -1986-11-02 14:00:00 1986-11-02 15:00:00 1044448680 1044448740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-02 15:00:00 1986-11-03 13:00:00 1044448740 1044450060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-11-03 14:00:00 1986-11-03 15:00:00 1044450120 1044450180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-03 15:00:00 1986-11-04 13:00:00 1044450180 1044451500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-11-04 14:00:00 1986-11-04 15:00:00 1044451560 1044451620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-04 15:00:00 1986-11-05 13:00:00 1044451620 1044452940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-11-05 14:00:00 1986-11-05 15:00:00 1044453000 1044453060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-05 15:00:00 1986-11-06 13:00:00 1044453060 1044454380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-11-06 14:00:00 1986-11-06 15:00:00 1044454440 1044454500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-06 15:00:00 1986-11-07 13:00:00 1044454500 1044455820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-11-07 14:00:00 1986-11-07 15:00:00 1044455880 1044455940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-07 15:00:00 1986-11-08 13:00:00 1044455940 1044457260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-11-08 14:00:00 1986-11-08 15:00:00 1044457320 1044457380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-08 15:00:00 1986-11-09 13:00:00 1044457380 1044458700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-11-09 14:00:00 1986-11-09 15:00:00 1044458760 1044458820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-09 15:00:00 1986-11-10 05:00:00 1044458820 1044459660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-11-10 05:00:00 1986-11-10 06:00:00 1044459660 1044459720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz'] -1986-11-10 06:00:00 1986-11-10 07:00:00 1044459720 1044459780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-10 07:00:00 1986-11-10 13:00:00 1044459780 1044460140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-11-10 14:00:00 1986-11-10 15:00:00 1044460200 1044460260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-10 15:00:00 1986-12-31 12:00:00 1044460260 1044533520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044008040_1044533520.npz -1986-12-31 14:00:00 1987-03-24 13:00:00 1044533640 1044653100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044533640_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044533640_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044533640_1045059120:dup1.npz -1987-03-24 14:00:00 1987-03-27 00:00:00 1044653160 1044656640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044533640_1045059120:dup1.npz'] -1987-03-27 05:00:00 1987-08-18 03:00:00 1044656940 1044864180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044533640_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044533640_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044533640_1045059120:dup1.npz -1987-08-18 14:00:00 1987-08-19 06:00:00 1044864840 1044865800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044533640_1045059120.npz'] -1987-08-19 07:00:00 1987-12-31 12:00:00 1044865860 1045059120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044533640_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044533640_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1044533640_1045059120:dup1.npz -1987-12-31 14:00:00 1988-05-02 13:00:00 1045059240 1045236300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz -1988-05-02 14:00:00 1988-05-04 13:00:00 1045236360 1045239180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz'] -1988-05-04 14:00:00 1988-05-22 13:00:00 1045239240 1045265100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz -1988-05-22 14:00:00 1988-05-23 13:00:00 1045265160 1045266540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz'] -1988-05-23 14:00:00 1988-06-02 23:00:00 1045266600 1045281540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz -1988-07-04 03:00:00 1988-07-04 13:00:00 1045326420 1045327020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220.npz'] -1988-07-04 14:00:00 1988-08-23 13:00:00 1045327080 1045399020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz -1988-08-23 14:00:00 1988-08-23 21:00:00 1045399080 1045399500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz'] -1988-08-25 10:00:00 1988-12-31 13:00:00 1045401720 1045586220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045059240_1045586220:dup1.npz -1988-12-31 14:00:00 1989-01-02 01:00:00 1045586280 1045588380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045586280_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045586280_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045586280_1046111820:dup1.npz -1989-01-02 01:00:00 1989-01-02 08:00:00 1045588380 1045588800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045586280_1046111820:dup1.npz'] -1989-01-02 08:00:00 1989-01-03 01:00:00 1045588800 1045589820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045586280_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045586280_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045586280_1046111820:dup1.npz -1989-01-03 01:00:00 1989-01-03 02:00:00 1045589820 1045589880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045586280_1046111820:dup1.npz'] -1989-01-03 03:00:00 1989-12-31 13:00:00 1045589940 1046111820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045586280_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045586280_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1045586280_1046111820:dup1.npz -1989-12-31 14:00:00 1990-12-31 13:00:00 1046111880 1046637420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1046111880_1046637420.npz'] -1990-12-31 14:00:00 1991-09-18 22:00:00 1046637480 1047013800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1046637480_1047013800.npz'] -1992-01-13 08:00:00 1992-11-19 02:00:00 1047181440 1047628920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1047181440_1047628920.npz'] -1993-03-16 14:00:00 1993-12-31 13:00:00 1047798120 1048215660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1047798120_1048215660.npz'] -1994-01-01 14:00:00 1994-10-07 21:00:00 1048217160 1048619340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1048217160_1048619340.npz'] -1995-01-06 02:00:00 1995-12-31 13:00:00 1048749240 1049266860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1048749240_1049266860.npz'] -2001-12-31 15:00:00 2002-12-31 12:00:00 1052423460 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1052423460_1052948880.npz'] -2002-12-31 15:00:00 2003-12-06 14:00:00 1052949060 1053438600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1052949060_1053438600.npz'] -2004-01-07 02:00:00 2004-12-31 13:00:00 1053483960 1054001580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1053483960_1054001580.npz'] -2004-12-31 15:00:00 2005-12-31 13:00:00 1054001700 1054527180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1054001700_1054527180.npz'] -2005-12-31 15:00:00 2006-12-31 13:00:00 1054527300 1055052780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1054527300_1055052780.npz'] -2006-12-31 15:00:00 2007-12-31 13:00:00 1055052900 1055578380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1055052900_1055578380.npz'] -2007-12-31 15:00:00 2008-12-31 13:00:00 1055578500 1056105420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1055578500_1056105420.npz'] -2008-12-31 15:00:00 2009-12-31 13:00:00 1056105540 1056631020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1056105540_1056631020.npz'] -2009-12-31 15:00:00 2010-12-31 13:00:00 1056631140 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1056631140_1057156620.npz'] -2010-12-31 15:00:00 2011-12-31 13:00:00 1057156740 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1057156740_1057682220.npz'] -2011-12-31 15:00:00 2012-07-02 22:00:00 1057682340 1057947720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1057682340_1057947720.npz'] -2013-02-22 04:00:00 2013-12-31 13:00:00 1058285040 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1058285040_1058734860.npz'] -2013-12-31 13:00:00 2014-12-31 13:00:00 1058734860 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1058734860_1059260460.npz'] -2014-12-31 13:00:00 2015-12-31 13:00:00 1059260460 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1059260460_1059786060.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/325_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -2.13564510345459 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_326_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_326_CL(IMC).out deleted file mode 100644 index 362ee2a4ac583e0f9c1fe573da54db8652f095c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_326_CL(IMC).out +++ /dev/null @@ -1,144 +0,0 @@ -326_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1982-05-13 02:00:00 1982-05-17 13:00:00 1042095000 1042101420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz -'StationConcatenate' object has no attribute 'existing_data' -1982-05-17 13:00:00 1982-05-24 00:00:00 1042101420 1042110720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -1982-05-24 01:00:00 1982-05-31 05:00:00 1042110780 1042121100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz -1982-05-31 05:00:00 1982-05-31 06:00:00 1042121100 1042121160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz'] -1982-05-31 06:00:00 1982-06-03 04:00:00 1042121160 1042125360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz -1982-06-03 04:00:00 1982-06-03 05:00:00 1042125360 1042125420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -1982-06-03 05:00:00 1982-06-11 03:00:00 1042125420 1042136820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz -1982-06-11 03:00:00 1982-06-11 04:00:00 1042136820 1042136880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -1982-06-11 04:00:00 1982-06-19 19:00:00 1042136880 1042149300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz -1982-06-19 19:00:00 1982-06-19 20:00:00 1042149300 1042149360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz'] -1982-06-19 20:00:00 1982-06-23 02:00:00 1042149360 1042154040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz -1982-06-23 02:00:00 1982-06-23 03:00:00 1042154040 1042154100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz'] -1982-06-23 03:00:00 1982-06-30 03:00:00 1042154100 1042164180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz -1982-06-30 03:00:00 1982-06-30 04:00:00 1042164180 1042164240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz'] -1982-06-30 04:00:00 1982-07-06 03:00:00 1042164240 1042172820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz -1982-07-06 03:00:00 1982-07-06 04:00:00 1042172820 1042172880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz'] -1982-07-06 04:00:00 1982-07-22 00:00:00 1042172880 1042195680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz -1982-07-22 00:00:00 1982-07-22 06:00:00 1042195680 1042196040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz'] -1982-07-22 06:00:00 1982-07-27 09:00:00 1042196040 1042203420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz -1982-07-27 09:00:00 1982-07-27 10:00:00 1042203420 1042203480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042095000_1042203480.npz'] -1983-06-23 03:00:00 1983-12-31 13:00:00 1042679700 1042955340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042679700_1042955340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042679700_1042955340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042679700_1042955340.npz -1983-12-31 13:00:00 1983-12-31 14:00:00 1042955340 1042955400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955340_1043482380.npz'] -1983-12-31 15:00:00 1984-03-06 13:00:00 1042955460 1043050380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz -1984-03-06 13:00:00 1984-03-07 01:00:00 1043050380 1043051100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955340_1043482380.npz'] -1984-03-07 03:00:00 1984-04-09 04:00:00 1043051220 1043098800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz -1984-04-10 05:00:00 1984-04-10 06:00:00 1043100300 1043100360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955340_1043482380.npz'] -1984-04-10 06:00:00 1984-08-18 13:00:00 1043100360 1043287980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz -1984-08-18 13:00:00 1984-08-20 07:00:00 1043287980 1043290500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955340_1043482380.npz'] -1984-08-23 08:00:00 1984-09-07 00:00:00 1043294880 1043316000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz -1984-09-07 15:00:00 1984-09-07 16:00:00 1043316900 1043316960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz'] -1984-09-07 16:00:00 1984-09-30 13:00:00 1043316960 1043349900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz -1984-09-30 13:00:00 1984-10-05 01:00:00 1043349900 1043356380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz'] -1984-10-05 01:00:00 1984-10-27 05:00:00 1043356380 1043388300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz -1984-10-30 15:00:00 1984-10-30 16:00:00 1043393220 1043393280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz'] -1984-10-30 16:00:00 1984-12-31 13:00:00 1043393280 1043482380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1042955460_1043482380.npz -1984-12-31 13:00:00 1985-12-31 13:00:00 1043482380 1044007980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1043482380_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1043482380_1044007980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1043482380_1044007980.npz -1985-12-31 13:00:00 1986-07-17 00:00:00 1044007980 1044292320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz -1986-07-17 00:00:00 1986-07-17 01:00:00 1044292320 1044292380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820.npz'] -1986-07-17 01:00:00 1986-07-17 02:00:00 1044292380 1044292440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz'] -1986-07-17 02:00:00 1986-10-03 01:00:00 1044292440 1044404700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz -1986-10-03 01:00:00 1986-10-05 03:00:00 1044404700 1044407700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz'] -1986-10-09 13:00:00 1986-11-03 14:00:00 1044414060 1044450120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz -1986-11-03 14:00:00 1986-11-03 15:00:00 1044450120 1044450180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820.npz'] -1986-11-03 15:00:00 1986-11-04 14:00:00 1044450180 1044451560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz -1986-11-04 14:00:00 1986-11-04 15:00:00 1044451560 1044451620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820.npz'] -1986-11-04 15:00:00 1986-12-27 13:00:00 1044451620 1044527820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044007980_1044527820:dup1.npz -1987-02-13 13:00:00 1987-02-26 13:00:00 1044596940 1044615660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044596940_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044596940_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044596940_1045059120:dup1.npz -1987-02-26 13:00:00 1987-02-27 13:00:00 1044615660 1044617100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044596940_1045059120:dup1.npz'] -1987-03-02 13:00:00 1987-12-31 12:00:00 1044621420 1045059120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044596940_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044596940_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1044596940_1045059120:dup1.npz -1987-12-31 13:00:00 1988-02-29 13:00:00 1045059180 1045145580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220.npz -1988-02-29 13:00:00 1988-02-29 14:00:00 1045145580 1045145640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220.npz'] -1988-02-29 14:00:00 1988-06-22 22:00:00 1045145640 1045310280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220.npz -1988-06-22 22:00:00 1988-06-22 23:00:00 1045310280 1045310340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220.npz'] -1988-06-23 02:00:00 1988-09-01 22:00:00 1045310520 1045412520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220.npz -1988-09-03 13:00:00 1988-09-03 14:00:00 1045414860 1045414920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220.npz'] -1988-09-03 15:00:00 1988-12-31 13:00:00 1045414980 1045586220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045059180_1045586220.npz -1988-12-31 13:00:00 1989-12-31 13:00:00 1045586220 1046111820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045586220_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045586220_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1045586220_1046111820.npz -1989-12-31 13:00:00 1990-12-31 13:00:00 1046111820 1046637420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1046111820_1046637420.npz'] -1990-12-31 13:00:00 1991-12-31 13:00:00 1046637420 1047163020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1046637420_1047163020.npz'] -1991-12-31 13:00:00 1992-12-31 13:00:00 1047163020 1047690060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1047163020_1047690060.npz'] -1992-12-31 13:00:00 1993-12-31 13:00:00 1047690060 1048215660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1047690060_1048215660.npz'] -1994-01-01 14:00:00 1994-12-31 12:00:00 1048217160 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1048217160_1048741200.npz'] -1994-12-31 14:00:00 1995-12-31 13:00:00 1048741320 1049266860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1048741320_1049266860.npz'] -2001-12-31 15:00:00 2002-12-31 02:00:00 1052423460 1052948280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1052423460_1052948280.npz'] -2003-01-05 13:00:00 2003-12-31 13:00:00 1052956140 1053474540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1052956140_1053474540.npz'] -2003-12-31 15:00:00 2004-12-31 13:00:00 1053474660 1054001580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1053474660_1054001580.npz'] -2004-12-31 15:00:00 2005-12-31 13:00:00 1054001700 1054527180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1054001700_1054527180.npz'] -2005-12-31 15:00:00 2006-12-31 13:00:00 1054527300 1055052780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1054527300_1055052780.npz'] -2006-12-31 15:00:00 2007-12-31 13:00:00 1055052900 1055578380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1055052900_1055578380.npz'] -2007-12-31 15:00:00 2008-12-31 13:00:00 1055578500 1056105420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1055578500_1056105420.npz'] -2008-12-31 15:00:00 2009-12-31 13:00:00 1056105540 1056631020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1056105540_1056631020.npz'] -2009-12-31 15:00:00 2010-12-31 13:00:00 1056631140 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1056631140_1057156620.npz'] -2010-12-31 15:00:00 2011-12-31 13:00:00 1057156740 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1057156740_1057682220.npz'] -2011-12-31 15:00:00 2012-12-31 13:00:00 1057682340 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1057682340_1058209260.npz'] -2012-12-31 13:00:00 2013-12-22 14:00:00 1058209260 1058721960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1058209260_1058721960.npz'] -2014-01-16 06:00:00 2014-12-31 13:00:00 1058757480 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1058757480_1059260460.npz'] -2014-12-31 13:00:00 2015-12-31 13:00:00 1059260460 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/326_CL(IMC)_1059260460_1059786060.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.3439712405204773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_327_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_327_CL(IMC).out deleted file mode 100644 index 05fae7225f45a6ab9f138918ced5ac4017c5ea56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_327_CL(IMC).out +++ /dev/null @@ -1,136 +0,0 @@ -327_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1983-10-13 14:00:00 1983-12-31 13:00:00 1042841640 1042955340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042841640_1042955340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042841640_1042955340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042841640_1042955340.npz -'StationConcatenate' object has no attribute 'existing_data' -1983-12-31 14:00:00 1984-08-27 03:00:00 1042955400 1043300340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380.npz -1984-08-30 06:00:00 1984-08-30 13:00:00 1043304840 1043305260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380.npz'] -1984-08-30 14:00:00 1984-11-09 13:00:00 1043305320 1043407500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380.npz -1984-11-09 14:00:00 1984-11-10 13:00:00 1043407560 1043408940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380:dup1.npz'] -1984-11-10 14:00:00 1984-12-18 13:00:00 1043409000 1043463660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380.npz -1984-12-18 14:00:00 1984-12-20 13:00:00 1043463720 1043466540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380.npz'] -1984-12-20 14:00:00 1984-12-31 13:00:00 1043466600 1043482380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1042955400_1043482380.npz -1984-12-31 14:00:00 1985-03-29 13:00:00 1043482440 1043609100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1043482440_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1043482440_1044007980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1043482440_1044007980:dup1.npz -1985-03-29 14:00:00 1985-03-30 13:00:00 1043609160 1043610540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1043482440_1044007980:dup1.npz'] -1985-03-30 14:00:00 1985-04-29 13:00:00 1043610600 1043653740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1043482440_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1043482440_1044007980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1043482440_1044007980:dup1.npz -1985-04-29 14:00:00 1985-05-02 13:00:00 1043653800 1043658060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1043482440_1044007980:dup1.npz'] -1985-05-17 01:00:00 1985-12-31 13:00:00 1043678940 1044007980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1043482440_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1043482440_1044007980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1043482440_1044007980:dup1.npz -1985-12-31 14:00:00 1986-10-05 23:00:00 1044008040 1044408900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz -1986-10-05 23:00:00 1986-10-06 00:00:00 1044408900 1044408960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520.npz'] -1986-10-06 00:00:00 1986-10-22 13:00:00 1044408960 1044432780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz -1986-10-22 14:00:00 1986-10-24 13:00:00 1044432840 1044435660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-10-24 14:00:00 1986-10-31 15:00:00 1044435720 1044445860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz -1986-10-31 15:00:00 1986-10-31 16:00:00 1044445860 1044445920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520.npz'] -1986-10-31 16:00:00 1986-11-03 05:00:00 1044445920 1044449580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz -1986-11-03 05:00:00 1986-11-03 06:00:00 1044449580 1044449640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz'] -1986-11-03 07:00:00 1986-12-31 12:00:00 1044449700 1044533520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044008040_1044533520:dup1.npz -1986-12-31 14:00:00 1987-01-04 13:00:00 1044533640 1044539340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz -1987-01-09 04:00:00 1987-01-09 13:00:00 1044546000 1044546540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120.npz'] -1987-01-09 14:00:00 1987-05-16 13:00:00 1044546600 1044729420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz -1987-05-18 22:00:00 1987-05-19 13:00:00 1044732840 1044733740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -1987-05-19 14:00:00 1987-05-21 13:00:00 1044733800 1044736620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz -1987-05-21 14:00:00 1987-05-22 02:00:00 1044736680 1044737400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -1987-05-22 03:00:00 1987-07-16 13:00:00 1044737460 1044817260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz -1987-07-16 14:00:00 1987-07-17 13:00:00 1044817320 1044818700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -1987-07-17 14:00:00 1987-11-24 23:00:00 1044818760 1045006500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz -1987-11-24 23:00:00 1987-11-25 00:00:00 1045006500 1045006560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -1987-11-25 00:00:00 1987-11-26 13:00:00 1045006560 1045008780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz -1987-11-26 14:00:00 1987-11-27 17:00:00 1045008840 1045010460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -1987-11-27 17:00:00 1987-11-30 22:00:00 1045010460 1045015080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz -1987-11-30 22:00:00 1987-11-30 23:00:00 1045015080 1045015140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120.npz'] -1987-12-01 00:00:00 1987-12-01 01:00:00 1045015200 1045015260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -1987-12-01 01:00:00 1987-12-31 12:00:00 1045015260 1045059120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1044533640_1045059120:dup1.npz -1987-12-31 14:00:00 1988-01-19 00:00:00 1045059240 1045085760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220.npz -1988-01-19 00:00:00 1988-01-19 01:00:00 1045085760 1045085820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220.npz'] -1988-01-19 01:00:00 1988-01-19 02:00:00 1045085820 1045085880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220:dup1.npz'] -1988-01-19 02:00:00 1988-02-23 23:00:00 1045085880 1045137540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220.npz -1988-02-23 23:00:00 1988-02-24 00:00:00 1045137540 1045137600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220.npz'] -1988-02-24 00:00:00 1988-11-16 00:00:00 1045137600 1045520640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220.npz -1988-11-16 06:00:00 1988-11-16 07:00:00 1045521000 1045521060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220:dup1.npz'] -1988-11-16 07:00:00 1988-12-31 13:00:00 1045521060 1045586220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045059240_1045586220.npz -1988-12-31 14:00:00 1989-06-22 10:00:00 1045586280 1045835160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980:dup1.npz -1989-06-22 10:00:00 1989-06-22 13:00:00 1045835160 1045835340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980:dup1.npz'] -1989-06-22 13:00:00 1989-06-28 09:00:00 1045835340 1045843740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980:dup1.npz -1989-06-28 09:00:00 1989-06-28 10:00:00 1045843740 1045843800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980:dup1.npz'] -1989-06-28 10:00:00 1989-07-25 10:00:00 1045843800 1045882680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980:dup1.npz -1989-07-25 10:00:00 1989-07-25 12:00:00 1045882680 1045882800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980:dup1.npz'] -1989-07-25 12:00:00 1989-10-23 05:00:00 1045882800 1046011980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1045586280_1046011980:dup1.npz -1990-01-09 04:00:00 1990-12-31 13:00:00 1046124240 1046637420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1046124240_1046637420.npz'] -1990-12-31 14:00:00 1991-08-11 00:00:00 1046637480 1046957760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1046637480_1046957760.npz'] -1992-01-02 14:00:00 1992-12-31 13:00:00 1047165960 1047690060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1047165960_1047690060.npz'] -1992-12-31 14:00:00 1993-12-31 13:00:00 1047690120 1048215660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1047690120_1048215660.npz'] -1994-01-01 14:00:00 1994-12-31 13:00:00 1048217160 1048741260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1048217160_1048741260.npz'] -1994-12-31 14:00:00 1995-12-31 13:00:00 1048741320 1049266860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1048741320_1049266860.npz'] -2001-12-31 14:00:00 2002-12-30 21:00:00 1052423400 1052947980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1052423400_1052947980.npz'] -2002-12-31 15:00:00 2003-12-31 13:00:00 1052949060 1053474540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1052949060_1053474540.npz'] -2003-12-31 15:00:00 2004-12-31 13:00:00 1053474660 1054001580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1053474660_1054001580.npz'] -2004-12-31 15:00:00 2005-12-31 13:00:00 1054001700 1054527180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1054001700_1054527180.npz'] -2005-12-31 15:00:00 2006-12-31 13:00:00 1054527300 1055052780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1054527300_1055052780.npz'] -2006-12-31 15:00:00 2007-12-31 13:00:00 1055052900 1055578380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1055052900_1055578380.npz'] -2007-12-31 15:00:00 2008-12-31 13:00:00 1055578500 1056105420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1055578500_1056105420.npz'] -2008-12-31 15:00:00 2009-12-31 13:00:00 1056105540 1056631020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1056105540_1056631020.npz'] -2009-12-31 15:00:00 2010-12-31 13:00:00 1056631140 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1056631140_1057156620.npz'] -2010-12-31 15:00:00 2011-12-31 13:00:00 1057156740 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1057156740_1057682220.npz'] -2011-12-31 15:00:00 2012-12-31 13:00:00 1057682340 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1057682340_1058209260.npz'] -2012-12-31 13:00:00 2013-12-31 13:00:00 1058209260 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1058209260_1058734860.npz'] -2013-12-31 13:00:00 2014-12-31 13:00:00 1058734860 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1058734860_1059260460.npz'] -2014-12-31 13:00:00 2015-02-26 22:00:00 1059260460 1059343080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/327_CL(IMC)_1059260460_1059343080.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.388349453608195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_32_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_32_CL(IMC).out deleted file mode 100644 index c4c379a2f844b019048ce18c2d6ddb5a72049274..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_32_CL(IMC).out +++ /dev/null @@ -1,9 +0,0 @@ -32_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2017-08-07 15:00:00 2017-12-31 12:00:00 1060628580 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/32_CL(IMC)_1060628580_1060838640.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/32_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/32_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/32_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011957879861195881 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_330_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_330_CL(IMC).out deleted file mode 100644 index 17b52f858c48def570d35e4d035d49d3185c053f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_330_CL(IMC).out +++ /dev/null @@ -1,548 +0,0 @@ -330_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1984-08-09 06:00:00 1984-08-13 09:00:00 1043274600 1043280540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz -'StationConcatenate' object has no attribute 'existing_data' -1984-08-13 09:00:00 1984-08-13 10:00:00 1043280540 1043280600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz'] -1984-08-13 10:00:00 1984-08-13 17:00:00 1043280600 1043281020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz -1984-08-13 17:00:00 1984-08-13 18:00:00 1043281020 1043281080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz'] -1984-08-13 18:00:00 1984-08-17 12:00:00 1043281080 1043286480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz -1984-08-17 12:00:00 1984-08-17 13:00:00 1043286480 1043286540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -1984-08-17 14:00:00 1984-08-18 12:00:00 1043286600 1043287920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz -1984-08-18 12:00:00 1984-08-18 13:00:00 1043287920 1043287980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -1984-08-18 14:00:00 1984-08-19 12:00:00 1043288040 1043289360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz -1984-08-19 12:00:00 1984-08-19 13:00:00 1043289360 1043289420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -1984-08-19 14:00:00 1984-09-12 07:00:00 1043289480 1043323620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz -1984-09-12 07:00:00 1984-09-12 23:00:00 1043323620 1043324580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz'] -1984-09-12 23:00:00 1984-12-13 21:00:00 1043324580 1043456940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz -1984-12-13 21:00:00 1984-12-13 22:00:00 1043456940 1043457000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -1984-12-13 22:00:00 1984-12-13 23:00:00 1043457000 1043457060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz'] -1984-12-13 23:00:00 1984-12-31 12:00:00 1043457060 1043482320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043274600_1043482320.npz -1984-12-31 14:00:00 1985-04-20 17:00:00 1043482440 1043641020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-04-20 17:00:00 1985-04-20 21:00:00 1043641020 1043641260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-04-20 21:00:00 1985-04-25 13:00:00 1043641260 1043647980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-04-25 13:00:00 1985-04-25 14:00:00 1043647980 1043648040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-04-25 14:00:00 1985-05-12 20:00:00 1043648040 1043672880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-05-12 20:00:00 1985-05-12 21:00:00 1043672880 1043672940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-05-12 21:00:00 1985-05-16 16:00:00 1043672940 1043678400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-05-16 16:00:00 1985-05-16 21:00:00 1043678400 1043678700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-05-16 21:00:00 1985-05-25 16:00:00 1043678700 1043691360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-05-25 16:00:00 1985-05-25 17:00:00 1043691360 1043691420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-05-25 17:00:00 1985-05-25 18:00:00 1043691420 1043691480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-05-25 18:00:00 1985-05-25 22:00:00 1043691480 1043691720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-05-25 22:00:00 1985-05-27 03:00:00 1043691720 1043693460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-05-27 03:00:00 1985-05-27 04:00:00 1043693460 1043693520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-05-27 04:00:00 1985-05-27 05:00:00 1043693520 1043693580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz'] -1985-05-27 05:00:00 1985-05-27 21:00:00 1043693580 1043694540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-05-27 21:00:00 1985-05-27 22:00:00 1043694540 1043694600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz'] -1985-05-27 22:00:00 1985-06-07 19:00:00 1043694600 1043710260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-06-07 19:00:00 1985-06-07 21:00:00 1043710260 1043710380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-06-07 21:00:00 1985-06-17 03:00:00 1043710380 1043723700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-06-17 04:00:00 1985-06-17 05:00:00 1043723760 1043723820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz'] -1985-06-17 05:00:00 1985-06-17 14:00:00 1043723820 1043724360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-06-17 14:00:00 1985-06-17 15:00:00 1043724360 1043724420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz'] -1985-06-17 15:00:00 1985-06-21 13:00:00 1043724420 1043730060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-06-21 14:00:00 1985-06-21 15:00:00 1043730120 1043730180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-06-21 15:00:00 1985-06-22 11:00:00 1043730180 1043731380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-06-22 12:00:00 1985-06-22 23:00:00 1043731440 1043732100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-06-22 23:00:00 1985-12-08 13:00:00 1043732100 1043974860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-12-08 13:00:00 1985-12-08 15:00:00 1043974860 1043974980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-12-08 15:00:00 1985-12-11 22:00:00 1043974980 1043979720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-12-12 01:00:00 1985-12-12 02:00:00 1043979900 1043979960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-12-12 02:00:00 1985-12-12 23:00:00 1043979960 1043981220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-12-12 23:00:00 1985-12-13 01:00:00 1043981220 1043981340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-12-13 01:00:00 1985-12-13 23:00:00 1043981340 1043982660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-12-13 23:00:00 1985-12-14 01:00:00 1043982660 1043982780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-12-14 01:00:00 1985-12-14 22:00:00 1043982780 1043984040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-12-14 22:00:00 1985-12-14 23:00:00 1043984040 1043984100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz'] -1985-12-14 23:00:00 1985-12-15 00:00:00 1043984100 1043984160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-12-15 00:00:00 1985-12-15 13:00:00 1043984160 1043984940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-12-15 13:00:00 1985-12-15 14:00:00 1043984940 1043985000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -1985-12-15 14:00:00 1985-12-15 22:00:00 1043985000 1043985480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-12-15 22:00:00 1985-12-15 23:00:00 1043985480 1043985540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz'] -1985-12-16 00:00:00 1985-12-31 12:00:00 1043985600 1044007920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1043482440_1044007920:dup1.npz -1985-12-31 14:00:00 1986-01-19 13:00:00 1044008040 1044035340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-01-19 14:00:00 1986-01-19 15:00:00 1044035400 1044035460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-01-19 15:00:00 1986-01-20 13:00:00 1044035460 1044036780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-01-20 14:00:00 1986-01-20 15:00:00 1044036840 1044036900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-01-20 15:00:00 1986-01-24 19:00:00 1044036900 1044042900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-01-24 19:00:00 1986-01-24 20:00:00 1044042900 1044042960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-01-24 20:00:00 1986-01-26 13:00:00 1044042960 1044045420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-01-26 14:00:00 1986-01-26 15:00:00 1044045480 1044045540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-01-26 15:00:00 1986-02-05 16:00:00 1044045540 1044060000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-02-05 16:00:00 1986-02-05 17:00:00 1044060000 1044060060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-02-05 17:00:00 1986-02-06 13:00:00 1044060060 1044061260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-02-06 14:00:00 1986-02-06 15:00:00 1044061320 1044061380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-02-06 15:00:00 1986-02-17 01:00:00 1044061380 1044076380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-02-17 01:00:00 1986-02-17 02:00:00 1044076380 1044076440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-02-17 03:00:00 1986-02-19 01:00:00 1044076500 1044079260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-02-19 01:00:00 1986-02-19 09:00:00 1044079260 1044079740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-02-19 09:00:00 1986-03-24 13:00:00 1044079740 1044127500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-03-24 14:00:00 1986-03-24 15:00:00 1044127560 1044127620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-03-24 15:00:00 1986-03-31 13:00:00 1044127620 1044137580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-03-31 14:00:00 1986-03-31 15:00:00 1044137640 1044137700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-03-31 15:00:00 1986-04-01 13:00:00 1044137700 1044139020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-01 14:00:00 1986-04-01 15:00:00 1044139080 1044139140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-01 15:00:00 1986-04-02 13:00:00 1044139140 1044140460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-02 14:00:00 1986-04-02 18:00:00 1044140520 1044140760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-02 18:00:00 1986-04-03 01:00:00 1044140760 1044141180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-03 01:00:00 1986-04-03 03:00:00 1044141180 1044141300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-03 03:00:00 1986-04-03 13:00:00 1044141300 1044141900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-07 14:00:00 1986-04-07 15:00:00 1044147720 1044147780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-07 15:00:00 1986-04-08 13:00:00 1044147780 1044149100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-08 14:00:00 1986-04-08 15:00:00 1044149160 1044149220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-08 15:00:00 1986-04-09 13:00:00 1044149220 1044150540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-09 14:00:00 1986-04-09 15:00:00 1044150600 1044150660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-09 15:00:00 1986-04-09 21:00:00 1044150660 1044151020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-09 21:00:00 1986-04-09 22:00:00 1044151020 1044151080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-09 22:00:00 1986-04-10 13:00:00 1044151080 1044151980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-10 14:00:00 1986-04-10 15:00:00 1044152040 1044152100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-10 15:00:00 1986-04-11 13:00:00 1044152100 1044153420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-11 14:00:00 1986-04-11 15:00:00 1044153480 1044153540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-11 15:00:00 1986-04-12 13:00:00 1044153540 1044154860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-12 14:00:00 1986-04-12 15:00:00 1044154920 1044154980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-12 15:00:00 1986-04-13 13:00:00 1044154980 1044156300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-13 14:00:00 1986-04-13 15:00:00 1044156360 1044156420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-13 15:00:00 1986-04-14 01:00:00 1044156420 1044157020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-14 01:00:00 1986-04-14 02:00:00 1044157020 1044157080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-14 02:00:00 1986-04-14 13:00:00 1044157080 1044157740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-14 14:00:00 1986-04-14 15:00:00 1044157800 1044157860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-14 15:00:00 1986-04-15 13:00:00 1044157860 1044159180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-15 14:00:00 1986-04-15 15:00:00 1044159240 1044159300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-15 15:00:00 1986-04-16 13:00:00 1044159300 1044160620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-16 14:00:00 1986-04-16 15:00:00 1044160680 1044160740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-16 15:00:00 1986-04-17 13:00:00 1044160740 1044162060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-17 14:00:00 1986-04-17 15:00:00 1044162120 1044162180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-17 15:00:00 1986-04-18 13:00:00 1044162180 1044163500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-18 14:00:00 1986-04-18 15:00:00 1044163560 1044163620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-18 15:00:00 1986-04-18 19:00:00 1044163620 1044163860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-18 19:00:00 1986-04-18 20:00:00 1044163860 1044163920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-04-18 20:00:00 1986-04-19 13:00:00 1044163920 1044164940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-19 14:00:00 1986-04-19 15:00:00 1044165000 1044165060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-19 15:00:00 1986-04-20 13:00:00 1044165060 1044166380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-20 14:00:00 1986-04-20 15:00:00 1044166440 1044166500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-20 15:00:00 1986-04-21 04:00:00 1044166500 1044167280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-21 04:00:00 1986-04-21 05:00:00 1044167280 1044167340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-21 05:00:00 1986-04-22 13:00:00 1044167340 1044169260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-22 14:00:00 1986-04-22 15:00:00 1044169320 1044169380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-22 15:00:00 1986-04-23 13:00:00 1044169380 1044170700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-23 14:00:00 1986-04-23 15:00:00 1044170760 1044170820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-23 15:00:00 1986-04-24 01:00:00 1044170820 1044171420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-24 01:00:00 1986-04-24 02:00:00 1044171420 1044171480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-04-24 02:00:00 1986-04-24 03:00:00 1044171480 1044171540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-24 03:00:00 1986-04-24 13:00:00 1044171540 1044172140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-24 14:00:00 1986-04-24 15:00:00 1044172200 1044172260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-24 15:00:00 1986-04-25 03:00:00 1044172260 1044172980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-25 03:00:00 1986-04-25 04:00:00 1044172980 1044173040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-04-25 04:00:00 1986-04-25 13:00:00 1044173040 1044173580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-25 14:00:00 1986-04-25 15:00:00 1044173640 1044173700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-25 15:00:00 1986-04-26 13:00:00 1044173700 1044175020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-26 14:00:00 1986-04-26 15:00:00 1044175080 1044175140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-26 15:00:00 1986-04-26 19:00:00 1044175140 1044175380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-26 19:00:00 1986-04-26 20:00:00 1044175380 1044175440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-04-26 20:00:00 1986-04-27 13:00:00 1044175440 1044176460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-04-27 14:00:00 1986-04-27 15:00:00 1044176520 1044176580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-04-27 15:00:00 1986-04-28 13:00:00 1044176580 1044177900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-08-19 13:00:00 1986-08-19 14:00:00 1044340620 1044340680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-08-19 14:00:00 1986-08-20 13:00:00 1044340680 1044342060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-08-20 13:00:00 1986-08-20 14:00:00 1044342060 1044342120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-08-20 14:00:00 1986-08-21 12:00:00 1044342120 1044343440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-08-21 12:00:00 1986-08-21 13:00:00 1044343440 1044343500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-08-21 14:00:00 1986-08-22 13:00:00 1044343560 1044344940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-08-22 14:00:00 1986-08-22 15:00:00 1044345000 1044345060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-08-22 15:00:00 1986-08-23 13:00:00 1044345060 1044346380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-08-23 14:00:00 1986-08-23 15:00:00 1044346440 1044346500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-08-23 15:00:00 1986-08-24 13:00:00 1044346500 1044347820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-08-24 14:00:00 1986-08-24 15:00:00 1044347880 1044347940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-08-24 15:00:00 1986-08-25 12:00:00 1044347940 1044349200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-08-25 12:00:00 1986-08-25 13:00:00 1044349200 1044349260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-08-25 13:00:00 1986-08-26 04:00:00 1044349260 1044350160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-08-26 05:00:00 1986-08-26 06:00:00 1044350220 1044350280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-08-26 06:00:00 1986-08-28 13:00:00 1044350280 1044353580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-08-28 14:00:00 1986-08-28 15:00:00 1044353640 1044353700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-08-28 15:00:00 1986-08-31 13:00:00 1044353700 1044357900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-08-31 13:00:00 1986-08-31 14:00:00 1044357900 1044357960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-08-31 15:00:00 1986-09-01 13:00:00 1044358020 1044359340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-01 13:00:00 1986-09-01 14:00:00 1044359340 1044359400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-09-01 15:00:00 1986-09-02 22:00:00 1044359460 1044361320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-02 23:00:00 1986-09-03 00:00:00 1044361380 1044361440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-09-03 00:00:00 1986-09-04 05:00:00 1044361440 1044363180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-04 06:00:00 1986-09-04 07:00:00 1044363240 1044363300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-09-04 07:00:00 1986-09-04 10:00:00 1044363300 1044363480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-04 10:00:00 1986-09-04 11:00:00 1044363480 1044363540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-09-04 11:00:00 1986-09-05 13:00:00 1044363540 1044365100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-05 14:00:00 1986-09-05 15:00:00 1044365160 1044365220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-09-05 15:00:00 1986-09-06 13:00:00 1044365220 1044366540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-06 14:00:00 1986-09-06 15:00:00 1044366600 1044366660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-09-06 15:00:00 1986-09-08 12:00:00 1044366660 1044369360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-08 12:00:00 1986-09-08 13:00:00 1044369360 1044369420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-09-08 14:00:00 1986-09-09 12:00:00 1044369480 1044370800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-09 12:00:00 1986-09-09 13:00:00 1044370800 1044370860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-09-09 14:00:00 1986-09-13 12:00:00 1044370920 1044376560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-13 12:00:00 1986-09-13 13:00:00 1044376560 1044376620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-09-13 14:00:00 1986-09-14 12:00:00 1044376680 1044378000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-14 12:00:00 1986-09-14 13:00:00 1044378000 1044378060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-09-14 14:00:00 1986-09-21 12:00:00 1044378120 1044388080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-21 12:00:00 1986-09-21 13:00:00 1044388080 1044388140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-09-21 14:00:00 1986-09-27 05:00:00 1044388200 1044396300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-27 05:00:00 1986-09-27 06:00:00 1044396300 1044396360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-09-27 06:00:00 1986-09-27 21:00:00 1044396360 1044397260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-27 21:00:00 1986-09-28 01:00:00 1044397260 1044397500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-09-28 01:00:00 1986-09-28 22:00:00 1044397500 1044398760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-28 22:00:00 1986-09-28 23:00:00 1044398760 1044398820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-09-28 23:00:00 1986-09-29 05:00:00 1044398820 1044399180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-29 05:00:00 1986-09-29 06:00:00 1044399180 1044399240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-09-29 06:00:00 1986-09-29 12:00:00 1044399240 1044399600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-29 12:00:00 1986-09-29 13:00:00 1044399600 1044399660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-09-29 14:00:00 1986-09-30 12:00:00 1044399720 1044401040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-09-30 12:00:00 1986-09-30 13:00:00 1044401040 1044401100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-09-30 14:00:00 1986-10-01 23:00:00 1044401160 1044403140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-02 00:00:00 1986-10-02 01:00:00 1044403200 1044403260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-02 01:00:00 1986-10-02 13:00:00 1044403260 1044403980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-02 14:00:00 1986-10-02 15:00:00 1044404040 1044404100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-02 15:00:00 1986-10-03 13:00:00 1044404100 1044405420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-03 14:00:00 1986-10-03 15:00:00 1044405480 1044405540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-03 15:00:00 1986-10-04 13:00:00 1044405540 1044406860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-04 14:00:00 1986-10-04 15:00:00 1044406920 1044406980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-04 15:00:00 1986-10-05 13:00:00 1044406980 1044408300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-05 14:00:00 1986-10-05 15:00:00 1044408360 1044408420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-05 15:00:00 1986-10-07 13:00:00 1044408420 1044411180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-07 13:00:00 1986-10-07 14:00:00 1044411180 1044411240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-07 14:00:00 1986-10-20 04:00:00 1044411240 1044429360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-20 04:00:00 1986-10-20 05:00:00 1044429360 1044429420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-20 05:00:00 1986-10-20 13:00:00 1044429420 1044429900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-20 14:00:00 1986-10-20 15:00:00 1044429960 1044430020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-20 15:00:00 1986-10-23 01:00:00 1044430020 1044433500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-23 01:00:00 1986-10-23 02:00:00 1044433500 1044433560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-23 02:00:00 1986-10-23 13:00:00 1044433560 1044434220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-23 14:00:00 1986-10-23 15:00:00 1044434280 1044434340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-23 15:00:00 1986-10-24 13:00:00 1044434340 1044435660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-24 14:00:00 1986-10-24 15:00:00 1044435720 1044435780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-24 15:00:00 1986-10-28 13:00:00 1044435780 1044441420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-28 14:00:00 1986-10-28 15:00:00 1044441480 1044441540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-28 15:00:00 1986-10-29 13:00:00 1044441540 1044442860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-29 14:00:00 1986-10-29 15:00:00 1044442920 1044442980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-29 15:00:00 1986-10-30 13:00:00 1044442980 1044444300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-10-30 14:00:00 1986-10-30 15:00:00 1044444360 1044444420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-10-30 15:00:00 1986-11-10 03:00:00 1044444420 1044459540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-11-10 03:00:00 1986-11-10 04:00:00 1044459540 1044459600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-11-10 05:00:00 1986-11-20 04:00:00 1044459660 1044474000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-11-20 04:00:00 1986-11-28 03:00:00 1044474000 1044485460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-11-28 04:00:00 1986-12-05 04:00:00 1044485520 1044495600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-12-05 04:00:00 1986-12-05 09:00:00 1044495600 1044495900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-12-05 09:00:00 1986-12-06 02:00:00 1044495900 1044496920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-12-06 02:00:00 1986-12-06 03:00:00 1044496920 1044496980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz'] -1986-12-06 03:00:00 1986-12-15 01:00:00 1044496980 1044509820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1986-12-15 01:00:00 1986-12-15 02:00:00 1044509820 1044509880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -1986-12-15 02:00:00 1986-12-19 03:00:00 1044509880 1044515700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1044008040_1044515700:dup1.npz -1988-03-07 00:00:00 1988-04-01 21:00:00 1045154880 1045192140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-04-01 21:00:00 1988-04-01 22:00:00 1045192140 1045192200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -1988-04-01 22:00:00 1988-04-03 12:00:00 1045192200 1045194480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-04-03 12:00:00 1988-04-03 13:00:00 1045194480 1045194540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz'] -1988-04-03 14:00:00 1988-04-06 01:00:00 1045194600 1045198140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-04-06 01:00:00 1988-04-06 02:00:00 1045198140 1045198200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz'] -1988-04-06 03:00:00 1988-04-08 04:00:00 1045198260 1045201200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-04-08 04:00:00 1988-04-08 05:00:00 1045201200 1045201260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -1988-04-08 05:00:00 1988-06-15 13:00:00 1045201260 1045299660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-06-15 13:00:00 1988-06-17 04:00:00 1045299660 1045302000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -1988-06-18 06:00:00 1988-06-20 13:00:00 1045303560 1045306860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-06-21 23:00:00 1988-06-22 00:00:00 1045308900 1045308960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz'] -1988-06-22 00:00:00 1988-06-22 13:00:00 1045308960 1045309740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-06-22 14:00:00 1988-06-22 15:00:00 1045309800 1045309860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz'] -1988-06-22 15:00:00 1988-06-22 21:00:00 1045309860 1045310220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-06-22 21:00:00 1988-06-22 22:00:00 1045310220 1045310280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -1988-06-23 01:00:00 1988-06-23 03:00:00 1045310460 1045310580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz'] -1988-06-23 03:00:00 1988-06-23 13:00:00 1045310580 1045311180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-06-23 14:00:00 1988-06-23 15:00:00 1045311240 1045311300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz'] -1988-06-23 15:00:00 1988-06-24 05:00:00 1045311300 1045312140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-06-24 05:00:00 1988-06-24 06:00:00 1045312140 1045312200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz'] -1988-06-24 08:00:00 1988-06-24 13:00:00 1045312320 1045312620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-06-24 13:00:00 1988-06-25 13:00:00 1045312620 1045314060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -1988-06-25 13:00:00 1988-06-29 13:00:00 1045314060 1045319820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-06-29 13:00:00 1988-07-31 13:00:00 1045319820 1045365900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -1988-07-31 13:00:00 1988-12-31 13:00:00 1045365900 1045586220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045154880_1045586220:dup1.npz -1988-12-31 13:00:00 1989-06-05 20:00:00 1045586220 1045811280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045586220_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045586220_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045586220_1046111820:dup1.npz -1989-06-06 04:00:00 1989-06-06 09:00:00 1045811760 1045812060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045586220_1046111820:dup1.npz'] -1989-06-06 09:00:00 1989-12-31 13:00:00 1045812060 1046111820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045586220_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045586220_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1045586220_1046111820:dup1.npz -1989-12-31 13:00:00 1990-12-31 13:00:00 1046111820 1046637420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1046111820_1046637420.npz'] -1990-12-31 13:00:00 1991-12-24 00:00:00 1046637420 1047152160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1046637420_1047152160.npz'] -1992-01-02 05:00:00 1992-12-21 05:00:00 1047165420 1047675180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1047165420_1047675180.npz'] -1993-01-06 04:00:00 1993-12-30 06:00:00 1047698160 1048213800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1047698160_1048213800.npz'] -1994-01-03 04:00:00 1994-12-31 13:00:00 1048219440 1048741260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1048219440_1048741260.npz'] -1994-12-31 14:00:00 1995-12-31 13:00:00 1048741320 1049266860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1048741320_1049266860.npz'] -2001-12-31 14:00:00 2002-12-31 13:00:00 1052423400 1052948940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1052423400_1052948940.npz'] -2002-12-31 14:00:00 2003-12-31 13:00:00 1052949000 1053474540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1052949000_1053474540.npz'] -2003-12-31 14:00:00 2004-12-31 12:00:00 1053474600 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1053474600_1054001520.npz'] -2004-12-31 14:00:00 2005-12-25 10:00:00 1054001640 1054518360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1054001640_1054518360.npz'] -2006-01-10 06:00:00 2006-12-31 13:00:00 1054541160 1055052780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1054541160_1055052780.npz'] -2006-12-31 14:00:00 2007-12-31 13:00:00 1055052840 1055578380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1055052840_1055578380.npz'] -2007-12-31 14:00:00 2008-12-31 13:00:00 1055578440 1056105420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1055578440_1056105420.npz'] -2008-12-31 14:00:00 2009-12-31 13:00:00 1056105480 1056631020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1056105480_1056631020.npz'] -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1056631080_1057156620.npz'] -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1057156680_1057682220.npz'] -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1057682280_1058209260.npz'] -2012-12-31 13:00:00 2013-12-31 13:00:00 1058209260 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1058209260_1058734860.npz'] -2013-12-31 13:00:00 2014-12-31 13:00:00 1058734860 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1058734860_1059260460.npz'] -2014-12-31 13:00:00 2015-12-31 13:00:00 1059260460 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1059260460_1059786060.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/330_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.4692618250846863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_331_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_331_CL(IMC).out deleted file mode 100644 index 98130a3f522d4394011037dfb255fbae3d92abbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_331_CL(IMC).out +++ /dev/null @@ -1,518 +0,0 @@ -331_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1981-03-04 13:00:00 1981-03-26 00:00:00 1041469260 1041500160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1041469260_1041500160.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1982-04-28 01:00:00 1982-04-28 02:00:00 1042073340 1042073400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-04-28 02:00:00 1982-04-28 13:00:00 1042073400 1042074060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-04-28 14:00:00 1982-04-28 15:00:00 1042074120 1042074180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-04-28 15:00:00 1982-04-29 13:00:00 1042074180 1042075500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-04-29 13:00:00 1982-04-29 15:00:00 1042075500 1042075620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-04-29 15:00:00 1982-04-30 13:00:00 1042075620 1042076940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-04-30 14:00:00 1982-04-30 15:00:00 1042077000 1042077060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-04-30 15:00:00 1982-05-04 04:00:00 1042077060 1042082160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-05-04 04:00:00 1982-05-04 05:00:00 1042082160 1042082220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-05-04 05:00:00 1982-05-04 13:00:00 1042082220 1042082700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-05-04 14:00:00 1982-05-04 15:00:00 1042082760 1042082820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-05-04 15:00:00 1982-05-05 13:00:00 1042082820 1042084140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-05-05 13:00:00 1982-05-05 15:00:00 1042084140 1042084260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-05-05 15:00:00 1982-05-06 13:00:00 1042084260 1042085580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-05-06 13:00:00 1982-05-06 15:00:00 1042085580 1042085700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-05-06 15:00:00 1982-05-07 13:00:00 1042085700 1042087020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-05-07 13:00:00 1982-05-07 15:00:00 1042087020 1042087140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-05-07 15:00:00 1982-05-08 13:00:00 1042087140 1042088460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-05-08 13:00:00 1982-05-08 15:00:00 1042088460 1042088580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-05-08 15:00:00 1982-05-09 13:00:00 1042088580 1042089900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-05-09 13:00:00 1982-05-09 15:00:00 1042089900 1042090020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-05-09 15:00:00 1982-05-11 13:00:00 1042090020 1042092780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-05-11 13:00:00 1982-05-11 15:00:00 1042092780 1042092900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-05-11 15:00:00 1982-05-13 13:00:00 1042092900 1042095660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-05-13 13:00:00 1982-05-13 15:00:00 1042095660 1042095780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-05-13 15:00:00 1982-05-14 13:00:00 1042095780 1042097100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-05-14 13:00:00 1982-05-14 15:00:00 1042097100 1042097220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-05-14 15:00:00 1982-07-01 23:00:00 1042097220 1042166820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-01 23:00:00 1982-07-02 00:00:00 1042166820 1042166880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-07-02 00:00:00 1982-07-03 13:00:00 1042166880 1042169100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-03 13:00:00 1982-07-03 14:00:00 1042169100 1042169160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-03 14:00:00 1982-07-06 05:00:00 1042169160 1042172940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-06 05:00:00 1982-07-06 06:00:00 1042172940 1042173000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-07-06 07:00:00 1982-07-06 13:00:00 1042173060 1042173420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-06 14:00:00 1982-07-06 15:00:00 1042173480 1042173540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-06 15:00:00 1982-07-12 13:00:00 1042173540 1042182060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-12 14:00:00 1982-07-12 15:00:00 1042182120 1042182180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-12 15:00:00 1982-07-15 03:00:00 1042182180 1042185780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-15 03:00:00 1982-07-15 04:00:00 1042185780 1042185840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-15 04:00:00 1982-07-15 21:00:00 1042185840 1042186860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-15 21:00:00 1982-07-15 22:00:00 1042186860 1042186920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-07-15 22:00:00 1982-07-15 23:00:00 1042186920 1042186980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-15 23:00:00 1982-07-16 00:00:00 1042186980 1042187040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-16 00:00:00 1982-07-16 01:00:00 1042187040 1042187100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-19 01:00:00 1982-07-19 13:00:00 1042191420 1042192140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-19 13:00:00 1982-07-19 15:00:00 1042192140 1042192260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-19 15:00:00 1982-07-20 13:00:00 1042192260 1042193580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-20 14:00:00 1982-07-20 15:00:00 1042193640 1042193700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-20 15:00:00 1982-07-21 00:00:00 1042193700 1042194240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-21 00:00:00 1982-07-23 02:00:00 1042194240 1042197240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-07-23 02:00:00 1982-07-24 13:00:00 1042197240 1042199340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-24 14:00:00 1982-07-24 15:00:00 1042199400 1042199460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-24 15:00:00 1982-07-26 04:00:00 1042199460 1042201680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-26 04:00:00 1982-07-26 05:00:00 1042201680 1042201740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-28 02:00:00 1982-07-29 13:00:00 1042204440 1042206540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-29 14:00:00 1982-07-29 15:00:00 1042206600 1042206660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-29 15:00:00 1982-07-29 23:00:00 1042206660 1042207140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-29 23:00:00 1982-07-30 02:00:00 1042207140 1042207320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-30 02:00:00 1982-07-30 12:00:00 1042207320 1042207920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-30 12:00:00 1982-07-30 13:00:00 1042207920 1042207980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-30 14:00:00 1982-07-31 13:00:00 1042208040 1042209420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-07-31 13:00:00 1982-07-31 14:00:00 1042209420 1042209480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-07-31 14:00:00 1982-08-01 13:00:00 1042209480 1042210860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-01 13:00:00 1982-08-01 14:00:00 1042210860 1042210920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-01 14:00:00 1982-08-02 00:00:00 1042210920 1042211520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-02 00:00:00 1982-08-02 01:00:00 1042211520 1042211580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-02 01:00:00 1982-08-03 02:00:00 1042211580 1042213080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-03 02:00:00 1982-08-03 05:00:00 1042213080 1042213260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-03 05:00:00 1982-08-06 05:00:00 1042213260 1042217580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-06 05:00:00 1982-08-06 06:00:00 1042217580 1042217640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-06 06:00:00 1982-08-06 10:00:00 1042217640 1042217880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-06 10:00:00 1982-08-06 11:00:00 1042217880 1042217940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-06 11:00:00 1982-08-07 09:00:00 1042217940 1042219260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-07 09:00:00 1982-08-07 10:00:00 1042219260 1042219320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-07 10:00:00 1982-08-07 12:00:00 1042219320 1042219440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-07 12:00:00 1982-08-07 13:00:00 1042219440 1042219500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-08-07 14:00:00 1982-08-08 00:00:00 1042219560 1042220160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-08 00:00:00 1982-08-08 01:00:00 1042220160 1042220220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-08 01:00:00 1982-08-09 07:00:00 1042220220 1042222020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-09 07:00:00 1982-08-09 08:00:00 1042222020 1042222080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-09 08:00:00 1982-08-11 04:00:00 1042222080 1042224720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-11 04:00:00 1982-08-11 05:00:00 1042224720 1042224780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-11 05:00:00 1982-08-11 14:00:00 1042224780 1042225320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-11 14:00:00 1982-08-11 15:00:00 1042225320 1042225380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-11 15:00:00 1982-08-11 18:00:00 1042225380 1042225560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-11 18:00:00 1982-08-11 19:00:00 1042225560 1042225620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-11 19:00:00 1982-08-13 13:00:00 1042225620 1042228140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-13 13:00:00 1982-08-13 14:00:00 1042228140 1042228200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-13 14:00:00 1982-08-14 13:00:00 1042228200 1042229580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-14 13:00:00 1982-08-14 14:00:00 1042229580 1042229640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-14 14:00:00 1982-08-15 13:00:00 1042229640 1042231020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-15 13:00:00 1982-08-15 14:00:00 1042231020 1042231080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-15 14:00:00 1982-08-17 08:00:00 1042231080 1042233600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-17 08:00:00 1982-08-17 10:00:00 1042233600 1042233720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-17 10:00:00 1982-08-18 15:00:00 1042233720 1042235460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-18 15:00:00 1982-08-18 16:00:00 1042235460 1042235520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-08-18 16:00:00 1982-08-18 21:00:00 1042235520 1042235820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-18 21:00:00 1982-08-18 22:00:00 1042235820 1042235880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-08-18 22:00:00 1982-08-18 23:00:00 1042235880 1042235940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-18 23:00:00 1982-08-20 13:00:00 1042235940 1042238220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-20 14:00:00 1982-08-20 15:00:00 1042238280 1042238340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-20 15:00:00 1982-08-22 13:00:00 1042238340 1042241100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-22 14:00:00 1982-08-22 15:00:00 1042241160 1042241220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-22 15:00:00 1982-08-22 16:00:00 1042241220 1042241280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-08-22 16:00:00 1982-08-23 13:00:00 1042241280 1042242540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-23 14:00:00 1982-08-23 15:00:00 1042242600 1042242660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-23 15:00:00 1982-08-23 16:00:00 1042242660 1042242720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-08-23 16:00:00 1982-08-25 07:00:00 1042242720 1042245060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-08-25 07:00:00 1982-08-25 08:00:00 1042245060 1042245120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-08-25 08:00:00 1982-08-26 00:00:00 1042245120 1042246080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-20 13:00:00 1982-09-20 14:00:00 1042282860 1042282920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-09-20 14:00:00 1982-09-20 15:00:00 1042282920 1042282980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-20 15:00:00 1982-09-20 16:00:00 1042282980 1042283040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-09-20 16:00:00 1982-09-21 03:00:00 1042283040 1042283700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-21 03:00:00 1982-09-21 04:00:00 1042283700 1042283760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-09-21 05:00:00 1982-09-21 13:00:00 1042283820 1042284300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-21 14:00:00 1982-09-21 15:00:00 1042284360 1042284420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-09-21 15:00:00 1982-09-22 03:00:00 1042284420 1042285140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-22 03:00:00 1982-09-22 04:00:00 1042285140 1042285200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-09-22 04:00:00 1982-09-22 13:00:00 1042285200 1042285740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-22 14:00:00 1982-09-22 15:00:00 1042285800 1042285860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-09-22 15:00:00 1982-09-23 13:00:00 1042285860 1042287180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-23 14:00:00 1982-09-23 15:00:00 1042287240 1042287300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-09-23 15:00:00 1982-09-24 13:00:00 1042287300 1042288620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-24 14:00:00 1982-09-24 15:00:00 1042288680 1042288740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-09-24 15:00:00 1982-09-25 13:00:00 1042288740 1042290060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-25 14:00:00 1982-09-25 15:00:00 1042290120 1042290180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-09-25 15:00:00 1982-09-26 07:00:00 1042290180 1042291140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-26 07:00:00 1982-09-26 08:00:00 1042291140 1042291200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -1982-09-26 08:00:00 1982-09-26 13:00:00 1042291200 1042291500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-26 14:00:00 1982-09-26 15:00:00 1042291560 1042291620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-09-26 15:00:00 1982-09-28 02:00:00 1042291620 1042293720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-28 02:00:00 1982-09-28 03:00:00 1042293720 1042293780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-09-28 03:00:00 1982-09-28 12:00:00 1042293780 1042294320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-09-28 12:00:00 1982-09-28 13:00:00 1042294320 1042294380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-17 04:00:00 1982-11-18 07:00:00 1042365840 1042367460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-18 07:00:00 1982-11-18 09:00:00 1042367460 1042367580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-18 09:00:00 1982-11-18 22:00:00 1042367580 1042368360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-18 23:00:00 1982-11-19 00:00:00 1042368420 1042368480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-19 00:00:00 1982-11-19 07:00:00 1042368480 1042368900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-19 07:00:00 1982-11-19 09:00:00 1042368900 1042369020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-19 09:00:00 1982-11-19 13:00:00 1042369020 1042369260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-19 14:00:00 1982-11-19 15:00:00 1042369320 1042369380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-19 15:00:00 1982-11-20 06:00:00 1042369380 1042370280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-20 06:00:00 1982-11-20 09:00:00 1042370280 1042370460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-20 09:00:00 1982-11-20 13:00:00 1042370460 1042370700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-20 14:00:00 1982-11-20 15:00:00 1042370760 1042370820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-20 15:00:00 1982-11-21 06:00:00 1042370820 1042371720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-21 06:00:00 1982-11-21 09:00:00 1042371720 1042371900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-21 09:00:00 1982-11-21 15:00:00 1042371900 1042372260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-21 15:00:00 1982-11-21 16:00:00 1042372260 1042372320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-21 16:00:00 1982-11-22 07:00:00 1042372320 1042373220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-22 07:00:00 1982-11-22 09:00:00 1042373220 1042373340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-22 09:00:00 1982-11-22 13:00:00 1042373340 1042373580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-22 14:00:00 1982-11-22 15:00:00 1042373640 1042373700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-22 15:00:00 1982-11-23 07:00:00 1042373700 1042374660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-23 07:00:00 1982-11-23 09:00:00 1042374660 1042374780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-23 09:00:00 1982-11-23 13:00:00 1042374780 1042375020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-23 14:00:00 1982-11-23 15:00:00 1042375080 1042375140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-23 15:00:00 1982-11-24 06:00:00 1042375140 1042376040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-24 06:00:00 1982-11-24 08:00:00 1042376040 1042376160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-24 08:00:00 1982-11-24 13:00:00 1042376160 1042376460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-24 14:00:00 1982-11-24 15:00:00 1042376520 1042376580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-24 15:00:00 1982-11-25 06:00:00 1042376580 1042377480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-25 06:00:00 1982-11-25 09:00:00 1042377480 1042377660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-25 09:00:00 1982-11-25 13:00:00 1042377660 1042377900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-25 14:00:00 1982-11-25 15:00:00 1042377960 1042378020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-25 15:00:00 1982-11-26 03:00:00 1042378020 1042378740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-26 03:00:00 1982-11-26 04:00:00 1042378740 1042378800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-26 04:00:00 1982-11-26 06:00:00 1042378800 1042378920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-26 06:00:00 1982-11-26 09:00:00 1042378920 1042379100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-26 09:00:00 1982-11-27 06:00:00 1042379100 1042380360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-27 06:00:00 1982-11-27 09:00:00 1042380360 1042380540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-27 09:00:00 1982-11-28 07:00:00 1042380540 1042381860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-28 07:00:00 1982-11-28 08:00:00 1042381860 1042381920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-28 08:00:00 1982-11-28 13:00:00 1042381920 1042382220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1982-11-28 13:00:00 1982-11-28 14:00:00 1042382220 1042382280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz'] -1982-11-28 14:00:00 1982-11-30 00:00:00 1042382280 1042384320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073400_1042384320.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042073340_1042384320.npz -1983-02-27 14:00:00 1983-02-27 18:00:00 1042513320 1042513560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz -1983-02-27 18:00:00 1983-02-27 19:00:00 1042513560 1042513620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740.npz'] -1983-02-27 19:00:00 1983-02-27 23:00:00 1042513620 1042513860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz -1983-02-28 07:00:00 1983-02-28 08:00:00 1042514340 1042514400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz'] -1983-02-28 08:00:00 1983-02-28 09:00:00 1042514400 1042514460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz -1983-02-28 09:00:00 1983-02-28 10:00:00 1042514460 1042514520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740.npz'] -1983-02-28 10:00:00 1983-02-28 13:00:00 1042514520 1042514700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz -1983-03-02 14:00:00 1983-03-03 13:00:00 1042517640 1042519020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz'] -1983-07-19 03:00:00 1983-12-16 13:00:00 1042717140 1042933740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042513320_1042933740:dup1.npz -1984-01-07 13:00:00 1984-03-21 22:00:00 1042965420 1043072520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz -1984-03-21 23:00:00 1984-03-26 01:00:00 1043072580 1043078460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz'] -1984-03-26 02:00:00 1984-04-25 20:00:00 1043078520 1043122800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz -1984-04-25 20:00:00 1984-04-25 21:00:00 1043122800 1043122860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz'] -1984-04-25 21:00:00 1984-05-01 02:00:00 1043122860 1043130360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz -1984-05-01 03:00:00 1984-05-01 04:00:00 1043130420 1043130480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz'] -1984-05-01 04:00:00 1984-05-21 13:00:00 1043130480 1043159820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz -1984-05-21 13:00:00 1984-05-22 06:00:00 1043159820 1043160840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz'] -1984-05-22 13:00:00 1984-11-05 03:00:00 1043161260 1043401140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz -1984-11-05 03:00:00 1984-11-05 05:00:00 1043401140 1043401260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz'] -1984-11-05 06:00:00 1984-12-22 13:00:00 1043401320 1043469420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1042965420_1043469420:dup1.npz -1985-01-09 15:00:00 1985-04-23 13:00:00 1043495460 1043645100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1043495460_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1043495460_1044007980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1043495460_1044007980.npz -1985-05-21 23:00:00 1985-05-22 13:00:00 1043686020 1043686860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1043495460_1044007980:dup1.npz'] -1985-05-22 13:00:00 1985-06-16 13:00:00 1043686860 1043722860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1043495460_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1043495460_1044007980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1043495460_1044007980.npz -1985-06-16 13:00:00 1985-06-17 13:00:00 1043722860 1043724300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1043495460_1044007980.npz'] -1985-06-17 13:00:00 1985-12-31 13:00:00 1043724300 1044007980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1043495460_1044007980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1043495460_1044007980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1043495460_1044007980.npz -1985-12-31 13:00:00 1986-03-01 14:00:00 1044007980 1044094440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044529260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz -1986-03-01 15:00:00 1986-03-01 16:00:00 1044094500 1044094560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044529260.npz'] -1986-03-01 16:00:00 1986-03-13 13:00:00 1044094560 1044111660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044529260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz -1986-03-13 13:00:00 1986-03-14 13:00:00 1044111660 1044113100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz'] -1986-03-14 13:00:00 1986-10-28 21:00:00 1044113100 1044441900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044529260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz -1986-10-28 21:00:00 1986-11-04 23:00:00 1044441900 1044452100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz'] -1986-11-04 23:00:00 1986-11-09 13:00:00 1044452100 1044458700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044529260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz -1986-11-09 13:00:00 1986-12-16 13:00:00 1044458700 1044511980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz'] -1986-12-18 13:00:00 1986-12-28 13:00:00 1044514860 1044529260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044529260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz -1986-12-28 13:00:00 1986-12-29 02:00:00 1044529260 1044530040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044007980_1044530040.npz'] -1987-01-27 13:00:00 1987-02-16 13:00:00 1044572460 1044601260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120.npz -1987-02-16 23:00:00 1987-02-17 13:00:00 1044601860 1044602700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120.npz'] -1987-02-17 13:00:00 1987-02-26 13:00:00 1044602700 1044615660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120.npz -1987-02-26 13:00:00 1987-02-28 13:00:00 1044615660 1044618540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120.npz'] -1987-02-28 13:00:00 1987-03-01 13:00:00 1044618540 1044619980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120.npz -1987-03-01 13:00:00 1987-03-02 13:00:00 1044619980 1044621420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120.npz'] -1987-03-02 13:00:00 1987-12-31 12:00:00 1044621420 1045059120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1044572460_1045059120.npz -1987-12-31 14:00:00 1988-07-25 00:00:00 1045059240 1045356480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz -1988-07-25 00:00:00 1988-07-25 01:00:00 1045356480 1045356540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220.npz'] -1988-07-25 01:00:00 1988-07-25 02:00:00 1045356540 1045356600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz'] -1988-07-25 02:00:00 1988-07-28 06:00:00 1045356600 1045361160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz -1988-07-28 06:00:00 1988-07-28 07:00:00 1045361160 1045361220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz'] -1988-07-28 07:00:00 1988-08-29 00:00:00 1045361220 1045406880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz -1988-08-29 01:00:00 1988-08-29 02:00:00 1045406940 1045407000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz'] -1988-08-29 02:00:00 1988-08-30 01:00:00 1045407000 1045408380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz -1988-08-31 05:00:00 1988-09-01 23:00:00 1045410060 1045412580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz'] -1988-09-02 06:00:00 1988-09-21 19:00:00 1045413000 1045441140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz -1988-09-21 19:00:00 1988-09-23 01:00:00 1045441140 1045442940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220.npz'] -1988-09-23 02:00:00 1988-09-30 01:00:00 1045443000 1045453020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz -1988-09-30 02:00:00 1988-09-30 03:00:00 1045453080 1045453140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220.npz'] -1988-09-30 03:00:00 1988-12-31 13:00:00 1045453140 1045586220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045059240_1045586220:dup1.npz -1988-12-31 14:00:00 1989-01-03 13:00:00 1045586280 1045590540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz -1989-01-03 13:00:00 1989-01-03 14:00:00 1045590540 1045590600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820.npz'] -1989-01-03 14:00:00 1989-01-03 22:00:00 1045590600 1045591080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz -1989-01-04 01:00:00 1989-01-04 04:00:00 1045591260 1045591440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz'] -1989-01-04 04:00:00 1989-01-31 22:00:00 1045591440 1045631400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz -1989-02-01 02:00:00 1989-02-01 03:00:00 1045631640 1045631700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz'] -1989-02-01 03:00:00 1989-04-10 22:00:00 1045631700 1045730760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz -1989-04-11 03:00:00 1989-04-11 04:00:00 1045731060 1045731120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz'] -1989-04-11 04:00:00 1989-06-27 10:00:00 1045731120 1045842360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz -1989-06-27 10:00:00 1989-06-27 11:00:00 1045842360 1045842420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz'] -1989-06-27 11:00:00 1989-12-31 13:00:00 1045842420 1046111820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1045586280_1046111820:dup1.npz -1989-12-31 14:00:00 1990-12-31 13:00:00 1046111880 1046637420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1046111880_1046637420.npz'] -1990-12-31 13:00:00 1991-12-31 13:00:00 1046637420 1047163020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1046637420_1047163020.npz'] -1991-12-31 13:00:00 1992-12-31 13:00:00 1047163020 1047690060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1047163020_1047690060.npz'] -1993-01-07 06:00:00 1993-12-31 13:00:00 1047699720 1048215660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1047699720_1048215660.npz'] -1993-12-31 13:00:00 1994-12-31 13:00:00 1048215660 1048741260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1048215660_1048741260.npz'] -1994-12-31 13:00:00 1995-12-31 13:00:00 1048741260 1049266860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1048741260_1049266860.npz'] -2001-12-31 14:00:00 2002-12-31 13:00:00 1052423400 1052948940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1052423400_1052948940.npz'] -2002-12-31 14:00:00 2003-12-31 09:00:00 1052949000 1053474300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1052949000_1053474300.npz'] -2003-12-31 14:00:00 2004-12-31 13:00:00 1053474600 1054001580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1053474600_1054001580.npz'] -2004-12-31 15:00:00 2005-12-31 13:00:00 1054001700 1054527180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1054001700_1054527180.npz'] -2005-12-31 15:00:00 2006-12-31 13:00:00 1054527300 1055052780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1054527300_1055052780.npz'] -2006-12-31 15:00:00 2007-12-31 13:00:00 1055052900 1055578380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1055052900_1055578380.npz'] -2007-12-31 15:00:00 2008-12-31 13:00:00 1055578500 1056105420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1055578500_1056105420.npz'] -2008-12-31 15:00:00 2009-12-31 13:00:00 1056105540 1056631020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1056105540_1056631020.npz'] -2009-12-31 15:00:00 2010-12-31 13:00:00 1056631140 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1056631140_1057156620.npz'] -2010-12-31 15:00:00 2011-12-31 13:00:00 1057156740 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1057156740_1057682220.npz'] -2011-12-31 15:00:00 2012-11-25 13:00:00 1057682340 1058157420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1057682340_1058157420.npz'] -2013-02-26 02:00:00 2013-12-31 13:00:00 1058290680 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1058290680_1058734860.npz'] -2013-12-31 13:00:00 2014-12-31 13:00:00 1058734860 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1058734860_1059260460.npz'] -2014-12-31 13:00:00 2015-12-31 13:00:00 1059260460 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1059260460_1059786060.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/331_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.4503849824269613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_332_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_332_CL(IMC).out deleted file mode 100644 index 5429329508f1b58eb8433011c12b2d8adab47972..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_332_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -332_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.051634101072947185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_335_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_335_CL(IMC).out deleted file mode 100644 index 8eddefa67cafd566b529f7d27bc4d878ad19bde7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_335_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -335_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03984058698018392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_336_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_336_CL(IMC).out deleted file mode 100644 index 487b61238a65c84be535029e6e6309bd3ed147fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_336_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -336_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016846664746602378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_337_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_337_CL(IMC).out deleted file mode 100644 index b98cd92f6a6c8cf9de40e7880feb3669159c9487..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_337_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -337_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.018294147650400796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_338_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_338_CL(IMC).out deleted file mode 100644 index fe74ed3b8a92b98fa2ec97ce9dd2eff3df31428e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_338_CL(IMC).out +++ /dev/null @@ -1,142 +0,0 @@ -338_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1983-07-08 02:00:00 1983-07-19 16:00:00 1042701240 1042717920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042701240_1042955340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042701240_1042955340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042701240_1042955340:dup1.npz -'StationConcatenate' object has no attribute 'existing_data' -1983-07-19 16:00:00 1983-07-22 01:00:00 1042717920 1042721340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042701240_1042955340:dup1.npz'] -1983-08-03 05:00:00 1983-09-16 00:00:00 1042738860 1042801920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042701240_1042955340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042701240_1042955340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042701240_1042955340:dup1.npz -1983-09-19 14:00:00 1983-09-20 01:00:00 1042807080 1042807740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042701240_1042955340:dup1.npz'] -1983-09-20 03:00:00 1983-12-31 13:00:00 1042807860 1042955340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042701240_1042955340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042701240_1042955340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042701240_1042955340:dup1.npz -1983-12-31 13:00:00 1984-09-02 21:00:00 1042955340 1043310060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz -1984-09-02 21:00:00 1984-09-02 22:00:00 1043310060 1043310120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380.npz'] -1984-09-02 22:00:00 1984-09-18 21:00:00 1043310120 1043333100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz -1984-09-18 21:00:00 1984-09-18 22:00:00 1043333100 1043333160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380.npz'] -1984-09-18 22:00:00 1984-10-03 21:00:00 1043333160 1043354700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz -1984-10-03 21:00:00 1984-10-03 22:00:00 1043354700 1043354760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380.npz'] -1984-10-03 22:00:00 1984-10-11 21:00:00 1043354760 1043366220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz -1984-10-11 21:00:00 1984-10-11 22:00:00 1043366220 1043366280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380.npz'] -1984-10-11 22:00:00 1984-10-22 01:00:00 1043366280 1043380860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz -1984-10-22 02:00:00 1984-10-23 01:00:00 1043380920 1043382300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz'] -1984-10-23 01:00:00 1984-12-31 13:00:00 1043382300 1043482380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1042955340_1043482380:dup1.npz -1984-12-31 13:00:00 1985-06-30 22:00:00 1043482380 1043743560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1043482380_1043992140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1043482380_1043992140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1043482380_1043992140:dup1.npz -1985-06-30 22:00:00 1985-07-02 06:00:00 1043743560 1043745480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1043482380_1043992140:dup1.npz'] -1985-07-02 06:00:00 1985-12-06 13:00:00 1043745480 1043971980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1043482380_1043992140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1043482380_1043992140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1043482380_1043992140:dup1.npz -1985-12-10 06:00:00 1985-12-10 13:00:00 1043977320 1043977740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1043482380_1043992140.npz'] -1985-12-10 13:00:00 1985-12-20 13:00:00 1043977740 1043992140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1043482380_1043992140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1043482380_1043992140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1043482380_1043992140:dup1.npz -1985-12-31 13:00:00 1986-01-07 13:00:00 1044007980 1044018060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520.npz -1986-01-07 13:00:00 1986-01-08 13:00:00 1044018060 1044019500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520:dup1.npz'] -1986-01-08 13:00:00 1986-01-27 13:00:00 1044019500 1044046860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520.npz -1986-01-27 13:00:00 1986-01-28 13:00:00 1044046860 1044048300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520:dup1.npz'] -1986-01-28 13:00:00 1986-07-22 13:00:00 1044048300 1044300300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520.npz -1986-07-22 13:00:00 1986-07-23 13:00:00 1044300300 1044301740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520:dup1.npz'] -1986-07-23 13:00:00 1986-07-24 13:00:00 1044301740 1044303180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520.npz -1986-07-24 13:00:00 1986-07-30 13:00:00 1044303180 1044311820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520.npz'] -1986-07-30 13:00:00 1986-12-31 12:00:00 1044311820 1044533520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044007980_1044533520.npz -1986-12-31 13:00:00 1987-01-04 13:00:00 1044533580 1044539340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz -1987-01-04 13:00:00 1987-01-07 13:00:00 1044539340 1044543660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz'] -1987-01-07 13:00:00 1987-04-30 13:00:00 1044543660 1044706380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz -1987-04-30 13:00:00 1987-05-04 13:00:00 1044706380 1044712140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz'] -1987-05-04 13:00:00 1987-08-21 03:00:00 1044712140 1044868500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz -1987-08-21 04:00:00 1987-08-21 05:00:00 1044868560 1044868620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -1987-08-21 05:00:00 1987-08-22 13:00:00 1044868620 1044870540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz -1987-08-22 13:00:00 1987-08-22 14:00:00 1044870540 1044870600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -1987-08-22 15:00:00 1987-08-23 23:00:00 1044870660 1044872580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz -1987-08-23 23:00:00 1987-08-24 00:00:00 1044872580 1044872640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz'] -1987-08-24 01:00:00 1987-10-04 13:00:00 1044872700 1044932460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz -1987-10-04 13:00:00 1987-10-04 15:00:00 1044932460 1044932580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -1987-10-04 15:00:00 1987-10-04 21:00:00 1044932580 1044932940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz -1987-10-04 21:00:00 1987-10-04 22:00:00 1044932940 1044933000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -1987-10-04 22:00:00 1987-10-05 01:00:00 1044933000 1044933180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz -1987-10-05 01:00:00 1987-10-05 02:00:00 1044933180 1044933240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -1987-10-28 01:00:00 1987-12-31 12:00:00 1044966300 1045059120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1044533580_1045059120.npz -1987-12-31 13:00:00 1988-08-07 14:00:00 1045059180 1045376040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045059180_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045059180_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045059180_1045586220.npz -1988-08-12 10:00:00 1988-08-15 01:00:00 1045383000 1045386780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045059180_1045586220.npz'] -1988-08-15 02:00:00 1988-10-20 22:00:00 1045386840 1045483080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045059180_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045059180_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045059180_1045586220.npz -1988-10-20 23:00:00 1988-10-21 00:00:00 1045483140 1045483200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045059180_1045586220.npz'] -1988-10-21 00:00:00 1988-12-31 13:00:00 1045483200 1045586220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045059180_1045586220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045059180_1045586220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045059180_1045586220.npz -1988-12-31 13:00:00 1989-02-02 23:00:00 1045586220 1045634340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045586220_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045586220_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045586220_1046111820:dup1.npz -1989-02-02 23:00:00 1989-02-03 00:00:00 1045634340 1045634400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045586220_1046111820:dup1.npz'] -1989-02-03 00:00:00 1989-12-31 13:00:00 1045634400 1046111820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045586220_1046111820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045586220_1046111820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1045586220_1046111820:dup1.npz -1989-12-31 14:00:00 1990-12-31 13:00:00 1046111880 1046637420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1046111880_1046637420.npz'] -1990-12-31 14:00:00 1991-12-30 18:00:00 1046637480 1047161880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1046637480_1047161880.npz'] -1992-01-02 04:00:00 1992-12-31 13:00:00 1047165360 1047690060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1047165360_1047690060.npz'] -1992-12-31 13:00:00 1993-12-31 13:00:00 1047690060 1048215660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1047690060_1048215660.npz'] -1993-12-31 14:00:00 1994-11-07 01:00:00 1048215720 1048662780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1048215720_1048662780.npz'] -1995-01-09 02:00:00 1995-12-31 13:00:00 1048753560 1049266860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1048753560_1049266860.npz'] -2001-12-31 15:00:00 2002-12-31 11:00:00 1052423460 1052948820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1052423460_1052948820.npz'] -2002-12-31 15:00:00 2003-12-31 13:00:00 1052949060 1053474540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1052949060_1053474540.npz'] -2003-12-31 15:00:00 2004-12-31 13:00:00 1053474660 1054001580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1053474660_1054001580.npz'] -2004-12-31 15:00:00 2005-12-31 13:00:00 1054001700 1054527180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1054001700_1054527180.npz'] -2005-12-31 15:00:00 2006-12-31 13:00:00 1054527300 1055052780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1054527300_1055052780.npz'] -2006-12-31 14:00:00 2007-12-31 13:00:00 1055052840 1055578380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1055052840_1055578380.npz'] -2007-12-31 14:00:00 2008-12-31 13:00:00 1055578440 1056105420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1055578440_1056105420.npz'] -2008-12-31 14:00:00 2009-12-31 13:00:00 1056105480 1056631020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1056105480_1056631020.npz'] -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1056631080_1057156620.npz'] -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1057156680_1057682220.npz'] -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1057682280_1058209260.npz'] -2012-12-31 13:00:00 2013-12-31 13:00:00 1058209260 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1058209260_1058734860.npz'] -2013-12-31 13:00:00 2014-12-31 13:00:00 1058734860 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1058734860_1059260460.npz'] -2014-12-31 13:00:00 2015-03-25 23:00:00 1059260460 1059382020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/338_CL(IMC)_1059260460_1059382020.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.41819419066111246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_339_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_339_CL(IMC).out deleted file mode 100644 index 22dded8eeab4e534ecf6c21461c4faccc97c84e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_339_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -339_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.040275041262308756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_340_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_340_CL(IMC).out deleted file mode 100644 index 58fb5cb43f19dbd8ccc78303ecef8b48b3077e9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_340_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -340_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.07024209101994833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_342_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_342_CL(IMC).out deleted file mode 100644 index 7915c7ea5f8fd7b33fb8707ddf26e44cd5ec134d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_342_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -342_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02411673863728841 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_343_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_343_CL(IMC).out deleted file mode 100644 index 4763ef1f863161b033cca21a6a606ae8abb036db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_343_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -343_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004831850528717041 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_347_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_347_CL(IMC).out deleted file mode 100644 index a23e9ce32eabaf32c4cadc63db0d1e9cf933dbe6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_347_CL(IMC).out +++ /dev/null @@ -1,1243 +0,0 @@ -347_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1980-12-12 05:00:00 1980-12-12 12:00:00 1041350700 1041351120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz -'StationConcatenate' object has no attribute 'existing_data' -1980-12-12 12:00:00 1980-12-12 14:00:00 1041351120 1041351240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz'] -1980-12-12 14:00:00 1980-12-14 12:00:00 1041351240 1041354000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz -1980-12-14 12:00:00 1980-12-14 13:00:00 1041354000 1041354060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz'] -1980-12-14 13:00:00 1980-12-14 14:00:00 1041354060 1041354120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -1980-12-14 14:00:00 1980-12-15 12:00:00 1041354120 1041355440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz -1980-12-15 12:00:00 1980-12-15 13:00:00 1041355440 1041355500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz'] -1980-12-15 13:00:00 1980-12-16 12:00:00 1041355500 1041356880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz -1980-12-16 12:00:00 1980-12-16 13:00:00 1041356880 1041356940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz'] -1980-12-16 13:00:00 1980-12-16 14:00:00 1041356940 1041357000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -1980-12-16 14:00:00 1980-12-17 12:00:00 1041357000 1041358320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz -1980-12-17 12:00:00 1980-12-17 13:00:00 1041358320 1041358380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz'] -1980-12-17 13:00:00 1980-12-17 14:00:00 1041358380 1041358440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -1980-12-17 14:00:00 1980-12-18 12:00:00 1041358440 1041359760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz -1980-12-18 12:00:00 1980-12-18 13:00:00 1041359760 1041359820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz'] -1980-12-18 13:00:00 1980-12-18 14:00:00 1041359820 1041359880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -1980-12-18 14:00:00 1980-12-21 21:00:00 1041359880 1041364620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz -1980-12-21 21:00:00 1980-12-21 22:00:00 1041364620 1041364680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz'] -1980-12-21 22:00:00 1980-12-23 03:00:00 1041364680 1041366420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz -1980-12-23 03:00:00 1980-12-23 04:00:00 1041366420 1041366480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041366480.npz'] -1980-12-23 04:00:00 1980-12-31 00:00:00 1041366480 1041377760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041350700_1041377760.npz'] -1981-03-11 13:00:00 1981-03-13 06:00:00 1041479340 1041481800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-03-13 07:00:00 1981-03-13 08:00:00 1041481860 1041481920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-03-13 08:00:00 1981-03-15 22:00:00 1041481920 1041485640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-03-15 22:00:00 1981-03-15 23:00:00 1041485640 1041485700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-03-15 23:00:00 1981-03-18 06:00:00 1041485700 1041489000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-03-18 06:00:00 1981-03-18 07:00:00 1041489000 1041489060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-03-18 07:00:00 1981-03-20 07:00:00 1041489060 1041491940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-03-20 07:00:00 1981-03-20 08:00:00 1041491940 1041492000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-03-20 08:00:00 1981-03-22 22:00:00 1041492000 1041495720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-03-22 22:00:00 1981-03-22 23:00:00 1041495720 1041495780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-03-22 23:00:00 1981-03-24 09:00:00 1041495780 1041497820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-03-25 13:00:00 1981-03-27 02:00:00 1041499500 1041501720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-03-27 02:00:00 1981-03-27 23:00:00 1041501720 1041502980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-03-27 23:00:00 1981-03-28 02:00:00 1041502980 1041503160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-03-28 02:00:00 1981-03-31 22:00:00 1041503160 1041508680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-03-31 22:00:00 1981-03-31 23:00:00 1041508680 1041508740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-04-10 07:00:00 1981-04-15 19:00:00 1041522180 1041530100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-04-15 19:00:00 1981-04-15 21:00:00 1041530100 1041530220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-04-15 21:00:00 1981-04-18 04:00:00 1041530220 1041533520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-04-18 04:00:00 1981-04-18 05:00:00 1041533520 1041533580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-04-18 05:00:00 1981-04-29 05:00:00 1041533580 1041549420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-04-29 05:00:00 1981-04-29 07:00:00 1041549420 1041549540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-04-29 07:00:00 1981-04-29 13:00:00 1041549540 1041549900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-04-29 13:00:00 1981-04-29 14:00:00 1041549900 1041549960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-04-29 14:00:00 1981-04-30 13:00:00 1041549960 1041551340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-04-30 13:00:00 1981-04-30 14:00:00 1041551340 1041551400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-04-30 14:00:00 1981-05-01 13:00:00 1041551400 1041552780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-05-01 13:00:00 1981-05-01 14:00:00 1041552780 1041552840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-05-01 14:00:00 1981-05-05 04:00:00 1041552840 1041558000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-05-05 05:00:00 1981-05-05 06:00:00 1041558060 1041558120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-05-05 06:00:00 1981-05-05 13:00:00 1041558120 1041558540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-05-05 13:00:00 1981-05-05 14:00:00 1041558540 1041558600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-05-05 14:00:00 1981-05-06 06:00:00 1041558600 1041559560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-05-22 03:00:00 1981-05-22 04:00:00 1041582420 1041582480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-05-22 08:00:00 1981-05-26 12:00:00 1041582720 1041588720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-05-26 12:00:00 1981-05-26 22:00:00 1041588720 1041589320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-05-26 22:00:00 1981-05-26 23:00:00 1041589320 1041589380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-05-26 23:00:00 1981-05-27 13:00:00 1041589380 1041590220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-05-27 14:00:00 1981-05-29 06:00:00 1041590280 1041592680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-05-29 06:00:00 1981-05-29 07:00:00 1041592680 1041592740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-05-29 07:00:00 1981-05-29 13:00:00 1041592740 1041593100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-05-29 13:00:00 1981-05-29 15:00:00 1041593100 1041593220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-05-29 15:00:00 1981-05-30 13:00:00 1041593220 1041594540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-05-30 13:00:00 1981-05-30 14:00:00 1041594540 1041594600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-05-30 14:00:00 1981-05-31 13:00:00 1041594600 1041595980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-05-31 13:00:00 1981-05-31 14:00:00 1041595980 1041596040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-05-31 14:00:00 1981-06-01 13:00:00 1041596040 1041597420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-01 13:00:00 1981-06-01 14:00:00 1041597420 1041597480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-06-01 14:00:00 1981-06-02 13:00:00 1041597480 1041598860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-02 13:00:00 1981-06-02 14:00:00 1041598860 1041598920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-06-02 14:00:00 1981-06-02 22:00:00 1041598920 1041599400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-02 22:00:00 1981-06-02 23:00:00 1041599400 1041599460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-06-02 23:00:00 1981-06-03 12:00:00 1041599460 1041600240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-03 12:00:00 1981-06-03 13:00:00 1041600240 1041600300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-06-03 14:00:00 1981-06-04 12:00:00 1041600360 1041601680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-04 12:00:00 1981-06-04 13:00:00 1041601680 1041601740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-06-04 14:00:00 1981-06-05 13:00:00 1041601800 1041603180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-05 13:00:00 1981-06-05 14:00:00 1041603180 1041603240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-06-05 14:00:00 1981-06-06 12:00:00 1041603240 1041604560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-06 12:00:00 1981-06-06 13:00:00 1041604560 1041604620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-06-06 14:00:00 1981-06-09 13:00:00 1041604680 1041608940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-09 13:00:00 1981-06-09 14:00:00 1041608940 1041609000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-06-09 14:00:00 1981-06-11 12:00:00 1041609000 1041611760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-11 12:00:00 1981-06-11 13:00:00 1041611760 1041611820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-06-11 14:00:00 1981-06-15 12:00:00 1041611880 1041617520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-15 12:00:00 1981-06-15 13:00:00 1041617520 1041617580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-06-15 14:00:00 1981-06-21 13:00:00 1041617640 1041626220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-21 14:00:00 1981-06-22 22:00:00 1041626280 1041628200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-06-22 22:00:00 1981-06-22 23:00:00 1041628200 1041628260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-06-22 23:00:00 1981-06-23 00:00:00 1041628260 1041628320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-06-23 00:00:00 1981-06-24 06:00:00 1041628320 1041630120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-07-03 07:00:00 1981-07-03 13:00:00 1041643140 1041643500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-07-03 14:00:00 1981-07-04 12:00:00 1041643560 1041644880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-07-04 12:00:00 1981-07-04 13:00:00 1041644880 1041644940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-07-04 14:00:00 1981-07-10 12:00:00 1041645000 1041653520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-07-10 12:00:00 1981-07-10 14:00:00 1041653520 1041653640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-07-10 14:00:00 1981-07-14 12:00:00 1041653640 1041659280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-07-14 13:00:00 1981-07-14 14:00:00 1041659340 1041659400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-07-14 14:00:00 1981-07-16 12:00:00 1041659400 1041662160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-07-16 12:00:00 1981-07-16 13:00:00 1041662160 1041662220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-07-16 13:00:00 1981-07-17 12:00:00 1041662220 1041663600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-07-17 13:00:00 1981-07-17 14:00:00 1041663660 1041663720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-07-17 14:00:00 1981-07-18 12:00:00 1041663720 1041665040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-07-18 12:00:00 1981-07-18 13:00:00 1041665040 1041665100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-07-18 14:00:00 1981-07-19 12:00:00 1041665160 1041666480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-07-19 12:00:00 1981-07-19 13:00:00 1041666480 1041666540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-07-19 14:00:00 1981-07-22 13:00:00 1041666600 1041670860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-07-22 13:00:00 1981-07-22 14:00:00 1041670860 1041670920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-07-22 14:00:00 1981-07-23 13:00:00 1041670920 1041672300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-07-23 13:00:00 1981-07-23 14:00:00 1041672300 1041672360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-07-23 14:00:00 1981-07-24 04:00:00 1041672360 1041673200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-07-24 04:00:00 1981-07-25 12:00:00 1041673200 1041675120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-08-14 06:00:00 1981-08-14 14:00:00 1041703560 1041704040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-08-14 14:00:00 1981-08-15 13:00:00 1041704040 1041705420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-08-15 13:00:00 1981-08-15 14:00:00 1041705420 1041705480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-08-15 14:00:00 1981-08-21 05:00:00 1041705480 1041713580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-08-21 05:00:00 1981-08-21 06:00:00 1041713580 1041713640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-08-21 06:00:00 1981-08-21 13:00:00 1041713640 1041714060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-08-24 07:00:00 1981-08-24 08:00:00 1041718020 1041718080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-08-24 08:00:00 1981-08-31 09:00:00 1041718080 1041728220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-08-31 09:00:00 1981-08-31 10:00:00 1041728220 1041728280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-08-31 22:00:00 1981-09-02 01:00:00 1041729000 1041730620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-02 01:00:00 1981-09-02 02:00:00 1041730620 1041730680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-09-02 02:00:00 1981-09-03 13:00:00 1041730680 1041732780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-03 13:00:00 1981-09-03 14:00:00 1041732780 1041732840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-09-03 14:00:00 1981-09-07 12:00:00 1041732840 1041738480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-07 12:00:00 1981-09-07 13:00:00 1041738480 1041738540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-09-07 13:00:00 1981-09-10 13:00:00 1041738540 1041742860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-10 13:00:00 1981-09-10 14:00:00 1041742860 1041742920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-09-10 14:00:00 1981-09-12 13:00:00 1041742920 1041745740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-12 13:00:00 1981-09-12 14:00:00 1041745740 1041745800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-09-12 14:00:00 1981-09-13 13:00:00 1041745800 1041747180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-13 13:00:00 1981-09-13 14:00:00 1041747180 1041747240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-09-13 14:00:00 1981-09-14 13:00:00 1041747240 1041748620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-14 13:00:00 1981-09-14 14:00:00 1041748620 1041748680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-09-14 14:00:00 1981-09-15 13:00:00 1041748680 1041750060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-15 13:00:00 1981-09-15 14:00:00 1041750060 1041750120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-09-15 14:00:00 1981-09-16 13:00:00 1041750120 1041751500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-16 13:00:00 1981-09-16 14:00:00 1041751500 1041751560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-09-16 14:00:00 1981-09-17 13:00:00 1041751560 1041752940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-17 13:00:00 1981-09-17 14:00:00 1041752940 1041753000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-09-17 14:00:00 1981-09-20 19:00:00 1041753000 1041757620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-20 19:00:00 1981-09-20 20:00:00 1041757620 1041757680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-09-21 23:00:00 1981-09-22 03:00:00 1041759300 1041759540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-09-22 03:00:00 1981-09-23 02:00:00 1041759540 1041760920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-09-23 02:00:00 1981-09-23 04:00:00 1041760920 1041761040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-09-23 04:00:00 1981-10-02 13:00:00 1041761040 1041774540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-02 13:00:00 1981-10-02 14:00:00 1041774540 1041774600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-02 14:00:00 1981-10-08 23:00:00 1041774600 1041783780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-08 23:00:00 1981-10-09 10:00:00 1041783780 1041784440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-09 10:00:00 1981-10-09 12:00:00 1041784440 1041784560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-09 12:00:00 1981-10-09 13:00:00 1041784560 1041784620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-10-09 13:00:00 1981-10-10 23:00:00 1041784620 1041786660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-10 23:00:00 1981-10-11 08:00:00 1041786660 1041787200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-11 08:00:00 1981-10-11 22:00:00 1041787200 1041788040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-11 22:00:00 1981-10-12 23:00:00 1041788040 1041789540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-13 01:00:00 1981-10-14 05:00:00 1041789660 1041791340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-14 07:00:00 1981-10-14 08:00:00 1041791460 1041791520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-14 08:00:00 1981-10-15 13:00:00 1041791520 1041793260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-15 14:00:00 1981-10-15 15:00:00 1041793320 1041793380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-15 15:00:00 1981-10-16 13:00:00 1041793380 1041794700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-16 14:00:00 1981-10-16 15:00:00 1041794760 1041794820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-16 15:00:00 1981-10-18 13:00:00 1041794820 1041797580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-18 14:00:00 1981-10-18 15:00:00 1041797640 1041797700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-18 15:00:00 1981-10-19 13:00:00 1041797700 1041799020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-19 14:00:00 1981-10-19 15:00:00 1041799080 1041799140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-19 15:00:00 1981-10-20 13:00:00 1041799140 1041800460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-20 14:00:00 1981-10-20 15:00:00 1041800520 1041800580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-20 15:00:00 1981-10-23 13:00:00 1041800580 1041804780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-23 13:00:00 1981-10-23 14:00:00 1041804780 1041804840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-23 14:00:00 1981-10-25 13:00:00 1041804840 1041807660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-25 13:00:00 1981-10-25 14:00:00 1041807660 1041807720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-25 15:00:00 1981-10-28 12:00:00 1041807780 1041811920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-28 12:00:00 1981-10-28 13:00:00 1041811920 1041811980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-28 14:00:00 1981-10-29 12:00:00 1041812040 1041813360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-29 12:00:00 1981-10-29 13:00:00 1041813360 1041813420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-10-29 14:00:00 1981-10-31 12:00:00 1041813480 1041816240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-10-31 12:00:00 1981-10-31 13:00:00 1041816240 1041816300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-10-31 14:00:00 1981-11-04 12:00:00 1041816360 1041822000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-04 12:00:00 1981-11-04 13:00:00 1041822000 1041822060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-11-04 14:00:00 1981-11-06 12:00:00 1041822120 1041824880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-06 13:00:00 1981-11-06 14:00:00 1041824940 1041825000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-06 14:00:00 1981-11-08 12:00:00 1041825000 1041827760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-08 13:00:00 1981-11-08 14:00:00 1041827820 1041827880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-08 14:00:00 1981-11-09 12:00:00 1041827880 1041829200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-09 13:00:00 1981-11-09 14:00:00 1041829260 1041829320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-09 14:00:00 1981-11-10 12:00:00 1041829320 1041830640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-10 12:00:00 1981-11-10 13:00:00 1041830640 1041830700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-11-10 13:00:00 1981-11-11 12:00:00 1041830700 1041832080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-11 12:00:00 1981-11-11 14:00:00 1041832080 1041832200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-11 14:00:00 1981-11-12 07:00:00 1041832200 1041833220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-12 07:00:00 1981-11-12 08:00:00 1041833220 1041833280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-12 08:00:00 1981-11-12 12:00:00 1041833280 1041833520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-12 12:00:00 1981-11-12 13:00:00 1041833520 1041833580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-12 14:00:00 1981-11-14 12:00:00 1041833640 1041836400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-14 14:00:00 1981-11-15 22:00:00 1041836520 1041838440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-11-15 23:00:00 1981-11-16 00:00:00 1041838500 1041838560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-16 00:00:00 1981-11-17 12:00:00 1041838560 1041840720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-17 12:00:00 1981-11-17 13:00:00 1041840720 1041840780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-11-17 14:00:00 1981-11-19 12:00:00 1041840840 1041843600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-19 12:00:00 1981-11-19 13:00:00 1041843600 1041843660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-19 14:00:00 1981-11-20 00:00:00 1041843720 1041844320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-20 00:00:00 1981-11-20 07:00:00 1041844320 1041844740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-20 07:00:00 1981-11-20 12:00:00 1041844740 1041845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-20 12:00:00 1981-11-20 20:00:00 1041845040 1041845520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-20 20:00:00 1981-11-21 07:00:00 1041845520 1041846180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-21 07:00:00 1981-11-21 09:00:00 1041846180 1041846300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-21 09:00:00 1981-11-21 12:00:00 1041846300 1041846480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-21 12:00:00 1981-11-21 13:00:00 1041846480 1041846540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-21 14:00:00 1981-11-22 15:00:00 1041846600 1041848100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-22 15:00:00 1981-11-22 20:00:00 1041848100 1041848400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-11-22 20:00:00 1981-11-23 06:00:00 1041848400 1041849000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-23 06:00:00 1981-11-23 08:00:00 1041849000 1041849120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-11-23 08:00:00 1981-11-23 12:00:00 1041849120 1041849360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-23 12:00:00 1981-11-23 13:00:00 1041849360 1041849420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-11-23 14:00:00 1981-11-24 13:00:00 1041849480 1041850860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-24 13:00:00 1981-11-24 14:00:00 1041850860 1041850920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-11-24 14:00:00 1981-11-26 12:00:00 1041850920 1041853680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-26 12:00:00 1981-11-26 13:00:00 1041853680 1041853740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-11-26 14:00:00 1981-11-27 04:00:00 1041853800 1041854640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-11-27 04:00:00 1981-11-27 05:00:00 1041854640 1041854700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz'] -1981-11-27 05:00:00 1981-12-01 04:00:00 1041854700 1041860400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-01 04:00:00 1981-12-01 05:00:00 1041860400 1041860460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-01 06:00:00 1981-12-01 16:00:00 1041860520 1041861120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-01 16:00:00 1981-12-01 17:00:00 1041861120 1041861180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-01 17:00:00 1981-12-03 03:00:00 1041861180 1041863220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-03 03:00:00 1981-12-03 06:00:00 1041863220 1041863400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-03 06:00:00 1981-12-09 03:00:00 1041863400 1041871860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-09 03:00:00 1981-12-09 10:00:00 1041871860 1041872280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-09 10:00:00 1981-12-09 13:00:00 1041872280 1041872460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-09 14:00:00 1981-12-10 13:00:00 1041872520 1041873900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-10 14:00:00 1981-12-10 16:00:00 1041873960 1041874080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-10 16:00:00 1981-12-10 22:00:00 1041874080 1041874440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-10 22:00:00 1981-12-11 13:00:00 1041874440 1041875340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-11 14:00:00 1981-12-13 13:00:00 1041875400 1041878220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-13 14:00:00 1981-12-13 15:00:00 1041878280 1041878340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-13 15:00:00 1981-12-13 19:00:00 1041878340 1041878580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-13 19:00:00 1981-12-24 12:00:00 1041878580 1041894000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-24 13:00:00 1981-12-24 14:00:00 1041894060 1041894120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-24 14:00:00 1981-12-26 09:00:00 1041894120 1041896700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-26 09:00:00 1981-12-26 10:00:00 1041896700 1041896760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-26 10:00:00 1981-12-26 19:00:00 1041896760 1041897300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-26 19:00:00 1981-12-26 20:00:00 1041897300 1041897360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-26 20:00:00 1981-12-27 05:00:00 1041897360 1041897900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-27 05:00:00 1981-12-27 06:00:00 1041897900 1041897960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-27 06:00:00 1981-12-27 09:00:00 1041897960 1041898140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1981-12-27 09:00:00 1981-12-27 10:00:00 1041898140 1041898200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -1981-12-27 10:00:00 1981-12-27 22:00:00 1041898200 1041898920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041479340_1041898920:dup1.npz -1982-01-04 00:00:00 1982-01-06 18:00:00 1041909120 1041913080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-06 18:00:00 1982-01-06 22:00:00 1041913080 1041913320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-06 22:00:00 1982-01-09 15:00:00 1041913320 1041917220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-09 15:00:00 1982-01-09 23:00:00 1041917220 1041917700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-09 23:00:00 1982-01-10 06:00:00 1041917700 1041918120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-10 06:00:00 1982-01-10 09:00:00 1041918120 1041918300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-10 09:00:00 1982-01-10 13:00:00 1041918300 1041918540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-10 14:00:00 1982-01-10 15:00:00 1041918600 1041918660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-10 15:00:00 1982-01-11 00:00:00 1041918660 1041919200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-11 00:00:00 1982-01-11 01:00:00 1041919200 1041919260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-11 01:00:00 1982-01-11 04:00:00 1041919260 1041919440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-11 04:00:00 1982-01-11 11:00:00 1041919440 1041919860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-11 11:00:00 1982-01-11 22:00:00 1041919860 1041920520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-11 23:00:00 1982-01-12 00:00:00 1041920580 1041920640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-12 00:00:00 1982-01-12 16:00:00 1041920640 1041921600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-12 16:00:00 1982-01-12 22:00:00 1041921600 1041921960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-12 22:00:00 1982-01-14 12:00:00 1041921960 1041924240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-14 12:00:00 1982-01-14 13:00:00 1041924240 1041924300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-01-14 14:00:00 1982-01-14 19:00:00 1041924360 1041924660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-14 19:00:00 1982-01-14 20:00:00 1041924660 1041924720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-14 20:00:00 1982-01-15 12:00:00 1041924720 1041925680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-15 12:00:00 1982-01-15 13:00:00 1041925680 1041925740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-01-15 14:00:00 1982-01-18 12:00:00 1041925800 1041930000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-18 12:00:00 1982-01-18 13:00:00 1041930000 1041930060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-01-18 14:00:00 1982-01-19 04:00:00 1041930120 1041930960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-19 04:00:00 1982-01-19 10:00:00 1041930960 1041931320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-19 10:00:00 1982-01-22 12:00:00 1041931320 1041935760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-22 12:00:00 1982-01-22 13:00:00 1041935760 1041935820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-01-22 14:00:00 1982-01-23 12:00:00 1041935880 1041937200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-23 12:00:00 1982-01-23 13:00:00 1041937200 1041937260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-01-23 14:00:00 1982-01-24 02:00:00 1041937320 1041938040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-24 02:00:00 1982-01-24 07:00:00 1041938040 1041938340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-24 07:00:00 1982-01-24 13:00:00 1041938340 1041938700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-24 14:00:00 1982-01-24 15:00:00 1041938760 1041938820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-24 15:00:00 1982-01-28 07:00:00 1041938820 1041944100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-28 07:00:00 1982-01-28 08:00:00 1041944100 1041944160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-01-28 08:00:00 1982-01-28 13:00:00 1041944160 1041944460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-01-28 14:00:00 1982-01-28 15:00:00 1041944520 1041944580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-01-28 15:00:00 1982-02-01 07:00:00 1041944580 1041949860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-01 07:00:00 1982-02-01 08:00:00 1041949860 1041949920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-02-01 08:00:00 1982-02-01 13:00:00 1041949920 1041950220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-01 14:00:00 1982-02-01 15:00:00 1041950280 1041950340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-02-01 15:00:00 1982-02-02 07:00:00 1041950340 1041951300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-02 07:00:00 1982-02-02 08:00:00 1041951300 1041951360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-02-02 08:00:00 1982-02-03 04:00:00 1041951360 1041952560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-03 04:00:00 1982-02-04 04:00:00 1041952560 1041954000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-02-08 07:00:00 1982-02-08 19:00:00 1041959940 1041960660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-08 19:00:00 1982-02-08 22:00:00 1041960660 1041960840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-02-08 22:00:00 1982-02-13 13:00:00 1041960840 1041967500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-13 13:00:00 1982-02-13 14:00:00 1041967500 1041967560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-02-13 14:00:00 1982-02-13 17:00:00 1041967560 1041967740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-13 17:00:00 1982-02-13 19:00:00 1041967740 1041967860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-02-13 19:00:00 1982-02-14 12:00:00 1041967860 1041968880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-14 12:00:00 1982-02-14 13:00:00 1041968880 1041968940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-02-14 14:00:00 1982-02-15 19:00:00 1041969000 1041970740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-15 19:00:00 1982-02-15 21:00:00 1041970740 1041970860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-02-15 21:00:00 1982-02-16 13:00:00 1041970860 1041971820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-16 14:00:00 1982-02-16 15:00:00 1041971880 1041971940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-02-16 15:00:00 1982-02-17 12:00:00 1041971940 1041973200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-17 12:00:00 1982-02-17 13:00:00 1041973200 1041973260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-02-17 14:00:00 1982-02-18 13:00:00 1041973320 1041974700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-18 14:00:00 1982-02-18 15:00:00 1041974760 1041974820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-02-18 15:00:00 1982-02-19 08:00:00 1041974820 1041975840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-19 08:00:00 1982-02-19 09:00:00 1041975840 1041975900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-02-19 09:00:00 1982-02-22 07:00:00 1041975900 1041980100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-22 07:00:00 1982-02-22 08:00:00 1041980100 1041980160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-02-22 08:00:00 1982-02-22 13:00:00 1041980160 1041980460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-22 14:00:00 1982-02-22 15:00:00 1041980520 1041980580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-02-22 15:00:00 1982-02-23 13:00:00 1041980580 1041981900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-02-23 14:00:00 1982-03-02 02:00:00 1041981960 1041991320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-03-02 03:00:00 1982-03-10 19:00:00 1041991380 1042003860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-10 19:00:00 1982-03-10 20:00:00 1042003860 1042003920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-10 20:00:00 1982-03-10 21:00:00 1042003920 1042003980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-10 21:00:00 1982-03-10 22:00:00 1042003980 1042004040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-10 23:00:00 1982-03-12 06:00:00 1042004100 1042005960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-12 06:00:00 1982-03-12 07:00:00 1042005960 1042006020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-03-12 08:00:00 1982-03-12 12:00:00 1042006080 1042006320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-12 13:00:00 1982-03-12 14:00:00 1042006380 1042006440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-12 14:00:00 1982-03-13 12:00:00 1042006440 1042007760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-13 13:00:00 1982-03-13 14:00:00 1042007820 1042007880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-13 14:00:00 1982-03-14 12:00:00 1042007880 1042009200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-14 13:00:00 1982-03-14 14:00:00 1042009260 1042009320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-14 14:00:00 1982-03-15 12:00:00 1042009320 1042010640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-15 12:00:00 1982-03-15 13:00:00 1042010640 1042010700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-03-15 14:00:00 1982-03-15 15:00:00 1042010760 1042010820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-15 15:00:00 1982-03-17 13:00:00 1042010820 1042013580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-17 14:00:00 1982-03-17 15:00:00 1042013640 1042013700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-17 15:00:00 1982-03-18 12:00:00 1042013700 1042014960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-18 12:00:00 1982-03-18 13:00:00 1042014960 1042015020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-03-18 14:00:00 1982-03-18 15:00:00 1042015080 1042015140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-18 15:00:00 1982-03-19 12:00:00 1042015140 1042016400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-19 12:00:00 1982-03-19 13:00:00 1042016400 1042016460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-03-19 14:00:00 1982-03-19 15:00:00 1042016520 1042016580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-19 15:00:00 1982-03-20 12:00:00 1042016580 1042017840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-20 12:00:00 1982-03-20 13:00:00 1042017840 1042017900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-03-20 14:00:00 1982-03-20 15:00:00 1042017960 1042018020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-20 15:00:00 1982-03-21 13:00:00 1042018020 1042019340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-21 14:00:00 1982-03-21 15:00:00 1042019400 1042019460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-21 15:00:00 1982-03-22 13:00:00 1042019460 1042020780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-22 14:00:00 1982-03-22 15:00:00 1042020840 1042020900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-22 15:00:00 1982-03-23 13:00:00 1042020900 1042022220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-23 14:00:00 1982-03-23 15:00:00 1042022280 1042022340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-23 15:00:00 1982-03-24 13:00:00 1042022340 1042023660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-24 14:00:00 1982-03-24 15:00:00 1042023720 1042023780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-24 15:00:00 1982-03-25 13:00:00 1042023780 1042025100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-25 14:00:00 1982-03-25 15:00:00 1042025160 1042025220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-25 15:00:00 1982-03-26 13:00:00 1042025220 1042026540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-26 14:00:00 1982-03-26 15:00:00 1042026600 1042026660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-26 15:00:00 1982-03-27 12:00:00 1042026660 1042027920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-27 12:00:00 1982-03-27 13:00:00 1042027920 1042027980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-03-27 14:00:00 1982-03-28 12:00:00 1042028040 1042029360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-28 12:00:00 1982-03-28 13:00:00 1042029360 1042029420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-03-28 14:00:00 1982-03-28 15:00:00 1042029480 1042029540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-28 15:00:00 1982-03-29 12:00:00 1042029540 1042030800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-29 12:00:00 1982-03-29 13:00:00 1042030800 1042030860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-03-29 14:00:00 1982-03-29 15:00:00 1042030920 1042030980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-29 15:00:00 1982-03-30 13:00:00 1042030980 1042032300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-30 14:00:00 1982-03-30 15:00:00 1042032360 1042032420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-30 15:00:00 1982-03-31 12:00:00 1042032420 1042033680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-03-31 12:00:00 1982-03-31 13:00:00 1042033680 1042033740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-03-31 14:00:00 1982-03-31 15:00:00 1042033800 1042033860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-03-31 15:00:00 1982-04-02 13:00:00 1042033860 1042036620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-04-02 14:00:00 1982-04-02 15:00:00 1042036680 1042036740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-04-02 15:00:00 1982-04-03 13:00:00 1042036740 1042038060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-04-03 14:00:00 1982-04-03 15:00:00 1042038120 1042038180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-04-03 15:00:00 1982-04-04 07:00:00 1042038180 1042039140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-04-04 07:00:00 1982-04-05 05:00:00 1042039140 1042040460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-04-05 05:00:00 1982-07-23 13:00:00 1042040460 1042197900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-07-23 14:00:00 1982-07-23 15:00:00 1042197960 1042198020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-07-23 15:00:00 1982-07-26 02:00:00 1042198020 1042201560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-07-26 02:00:00 1982-07-26 06:00:00 1042201560 1042201800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-07-26 08:00:00 1982-07-26 13:00:00 1042201920 1042202220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-07-26 14:00:00 1982-07-26 16:00:00 1042202280 1042202400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-07-26 16:00:00 1982-07-27 12:00:00 1042202400 1042203600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-07-27 12:00:00 1982-07-27 13:00:00 1042203600 1042203660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-07-27 14:00:00 1982-07-28 23:00:00 1042203720 1042205700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-07-28 23:00:00 1982-07-30 07:00:00 1042205700 1042207620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-07-30 07:00:00 1982-07-30 08:00:00 1042207620 1042207680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-07-30 08:00:00 1982-07-31 13:00:00 1042207680 1042209420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-07-31 14:00:00 1982-07-31 15:00:00 1042209480 1042209540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-07-31 15:00:00 1982-08-01 13:00:00 1042209540 1042210860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-08-01 14:00:00 1982-08-01 15:00:00 1042210920 1042210980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-08-01 15:00:00 1982-08-03 11:00:00 1042210980 1042213620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-08-03 11:00:00 1982-08-03 12:00:00 1042213620 1042213680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-08-03 13:00:00 1982-08-04 11:00:00 1042213740 1042215060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-08-04 11:00:00 1982-08-04 12:00:00 1042215060 1042215120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-08-04 13:00:00 1982-08-05 12:00:00 1042215180 1042216560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-08-05 12:00:00 1982-08-05 13:00:00 1042216560 1042216620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-08-05 14:00:00 1982-08-12 12:00:00 1042216680 1042226640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-08-12 12:00:00 1982-08-12 13:00:00 1042226640 1042226700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-08-12 14:00:00 1982-09-13 22:00:00 1042226760 1042273320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-09-17 07:00:00 1982-09-17 08:00:00 1042278180 1042278240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-09-17 08:00:00 1982-09-19 04:00:00 1042278240 1042280880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-09-22 07:00:00 1982-09-22 08:00:00 1042285380 1042285440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-09-22 08:00:00 1982-09-22 17:00:00 1042285440 1042285980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-09-22 17:00:00 1982-09-22 19:00:00 1042285980 1042286100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-09-22 19:00:00 1982-09-23 04:00:00 1042286100 1042286640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-09-23 04:00:00 1982-09-23 05:00:00 1042286640 1042286700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-09-23 05:00:00 1982-09-27 09:00:00 1042286700 1042292700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-09-27 09:00:00 1982-09-27 10:00:00 1042292700 1042292760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-09-27 10:00:00 1982-09-27 15:00:00 1042292760 1042293060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-09-27 15:00:00 1982-09-27 16:00:00 1042293060 1042293120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-09-27 16:00:00 1982-09-28 00:00:00 1042293120 1042293600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-09-28 00:00:00 1982-09-28 02:00:00 1042293600 1042293720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-09-28 02:00:00 1982-09-28 03:00:00 1042293720 1042293780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-09-28 03:00:00 1982-09-28 04:00:00 1042293780 1042293840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-09-28 04:00:00 1982-09-28 13:00:00 1042293840 1042294380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-09-28 14:00:00 1982-09-28 15:00:00 1042294440 1042294500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-09-28 15:00:00 1982-09-29 05:00:00 1042294500 1042295340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-09-29 05:00:00 1982-09-29 06:00:00 1042295340 1042295400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-09-29 06:00:00 1982-09-30 03:00:00 1042295400 1042296660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-09-30 03:00:00 1982-09-30 04:00:00 1042296660 1042296720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-09-30 04:00:00 1982-10-01 13:00:00 1042296720 1042298700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-01 14:00:00 1982-10-01 15:00:00 1042298760 1042298820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-01 15:00:00 1982-10-01 16:00:00 1042298820 1042298880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-10-01 16:00:00 1982-10-04 13:00:00 1042298880 1042303020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-04 13:00:00 1982-10-04 14:00:00 1042303020 1042303080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-04 14:00:00 1982-10-05 23:00:00 1042303080 1042305060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-05 23:00:00 1982-10-06 00:00:00 1042305060 1042305120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-10-06 00:00:00 1982-10-08 06:00:00 1042305120 1042308360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-08 06:00:00 1982-10-11 01:00:00 1042308360 1042312380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-11 01:00:00 1982-10-11 22:00:00 1042312380 1042313640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-11 22:00:00 1982-10-11 23:00:00 1042313640 1042313700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-11 23:00:00 1982-10-12 12:00:00 1042313700 1042314480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-12 12:00:00 1982-10-12 13:00:00 1042314480 1042314540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-10-12 14:00:00 1982-10-13 03:00:00 1042314600 1042315380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-13 03:00:00 1982-10-13 06:00:00 1042315380 1042315560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-13 06:00:00 1982-10-13 12:00:00 1042315560 1042315920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-13 12:00:00 1982-10-13 13:00:00 1042315920 1042315980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-10-13 14:00:00 1982-10-13 16:00:00 1042316040 1042316160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-13 16:00:00 1982-10-13 19:00:00 1042316160 1042316340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-13 19:00:00 1982-10-14 01:00:00 1042316340 1042316700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-14 01:00:00 1982-10-14 04:00:00 1042316700 1042316880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-14 04:00:00 1982-10-14 12:00:00 1042316880 1042317360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-14 12:00:00 1982-10-14 13:00:00 1042317360 1042317420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-10-14 13:00:00 1982-10-14 14:00:00 1042317420 1042317480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-14 14:00:00 1982-10-15 01:00:00 1042317480 1042318140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-15 01:00:00 1982-10-15 03:00:00 1042318140 1042318260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-15 03:00:00 1982-10-15 13:00:00 1042318260 1042318860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-15 14:00:00 1982-10-15 15:00:00 1042318920 1042318980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-15 15:00:00 1982-10-16 18:00:00 1042318980 1042320600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-16 18:00:00 1982-10-17 09:00:00 1042320600 1042321500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-17 09:00:00 1982-10-17 13:00:00 1042321500 1042321740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-17 14:00:00 1982-10-17 15:00:00 1042321800 1042321860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-17 15:00:00 1982-10-19 12:00:00 1042321860 1042324560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-19 12:00:00 1982-10-19 13:00:00 1042324560 1042324620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-10-19 14:00:00 1982-10-19 15:00:00 1042324680 1042324740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-19 15:00:00 1982-10-20 02:00:00 1042324740 1042325400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-20 02:00:00 1982-10-20 04:00:00 1042325400 1042325520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-20 04:00:00 1982-10-21 05:00:00 1042325520 1042327020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-21 05:00:00 1982-10-21 12:00:00 1042327020 1042327440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-21 12:00:00 1982-10-21 13:00:00 1042327440 1042327500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-21 14:00:00 1982-10-22 06:00:00 1042327560 1042328520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-29 07:00:00 1982-10-29 12:00:00 1042338660 1042338960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-29 12:00:00 1982-10-29 13:00:00 1042338960 1042339020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-10-29 14:00:00 1982-10-30 12:00:00 1042339080 1042340400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-30 12:00:00 1982-10-30 13:00:00 1042340400 1042340460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-10-30 14:00:00 1982-10-30 15:00:00 1042340520 1042340580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-30 16:00:00 1982-10-30 17:00:00 1042340640 1042340700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-30 17:00:00 1982-10-30 19:00:00 1042340700 1042340820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-30 19:00:00 1982-10-30 21:00:00 1042340820 1042340940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-30 21:00:00 1982-10-30 23:00:00 1042340940 1042341060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-30 23:00:00 1982-10-31 02:00:00 1042341060 1042341240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-31 02:00:00 1982-10-31 12:00:00 1042341240 1042341840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-31 12:00:00 1982-10-31 13:00:00 1042341840 1042341900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-10-31 14:00:00 1982-10-31 18:00:00 1042341960 1042342200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-10-31 18:00:00 1982-10-31 20:00:00 1042342200 1042342320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-10-31 20:00:00 1982-11-01 18:00:00 1042342320 1042343640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-11-01 18:00:00 1982-11-01 23:00:00 1042343640 1042343940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-11-01 23:00:00 1982-11-02 12:00:00 1042343940 1042344720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-11-02 12:00:00 1982-11-02 13:00:00 1042344720 1042344780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-11-02 13:00:00 1982-11-02 20:00:00 1042344780 1042345200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-11-02 20:00:00 1982-11-02 23:00:00 1042345200 1042345380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-11-02 23:00:00 1982-11-03 21:00:00 1042345380 1042346700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-11-03 21:00:00 1982-11-03 22:00:00 1042346700 1042346760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-11-03 23:00:00 1982-11-06 02:00:00 1042346820 1042349880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-11-06 02:00:00 1982-11-06 09:00:00 1042349880 1042350300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-11-06 09:00:00 1982-11-06 13:00:00 1042350300 1042350540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-11-06 13:00:00 1982-11-06 14:00:00 1042350540 1042350600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-11-06 14:00:00 1982-11-06 18:00:00 1042350600 1042350840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-11-06 18:00:00 1982-11-07 01:00:00 1042350840 1042351260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-11-07 01:00:00 1982-11-07 05:00:00 1042351260 1042351500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-11-07 05:00:00 1982-11-07 06:00:00 1042351500 1042351560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-11-07 06:00:00 1982-11-07 10:00:00 1042351560 1042351800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-11-07 10:00:00 1982-11-07 11:00:00 1042351800 1042351860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz'] -1982-11-07 11:00:00 1982-11-07 14:00:00 1042351860 1042352040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-11-07 14:00:00 1982-11-07 15:00:00 1042352040 1042352100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-11-07 15:00:00 1982-11-07 16:00:00 1042352100 1042352160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1982-11-07 16:00:00 1982-11-07 19:00:00 1042352160 1042352340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -1982-11-07 19:00:00 1982-11-07 22:00:00 1042352340 1042352520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1041909120_1042352520:dup1.npz -1983-01-21 14:00:00 1983-01-24 22:00:00 1042460040 1042464840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-01-24 22:00:00 1983-01-25 13:00:00 1042464840 1042465740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-01-25 13:00:00 1983-01-25 14:00:00 1042465740 1042465800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-01-25 14:00:00 1983-01-27 13:00:00 1042465800 1042468620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-01-27 13:00:00 1983-01-27 14:00:00 1042468620 1042468680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-01-27 14:00:00 1983-01-28 06:00:00 1042468680 1042469640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-01-28 06:00:00 1983-01-28 07:00:00 1042469640 1042469700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-01-28 07:00:00 1983-01-28 13:00:00 1042469700 1042470060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-01-28 13:00:00 1983-01-28 14:00:00 1042470060 1042470120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-01-28 14:00:00 1983-02-07 13:00:00 1042470120 1042484460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-05 23:00:00 1983-07-06 00:00:00 1042698180 1042698240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-06 00:00:00 1983-07-06 12:00:00 1042698240 1042698960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-06 13:00:00 1983-07-06 14:00:00 1042699020 1042699080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-06 14:00:00 1983-07-07 12:00:00 1042699080 1042700400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-07 13:00:00 1983-07-07 14:00:00 1042700460 1042700520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-07 14:00:00 1983-07-08 07:00:00 1042700520 1042701540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-08 07:00:00 1983-07-08 08:00:00 1042701540 1042701600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-07-08 08:00:00 1983-07-08 12:00:00 1042701600 1042701840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-08 13:00:00 1983-07-08 14:00:00 1042701900 1042701960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-08 14:00:00 1983-07-09 12:00:00 1042701960 1042703280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-09 13:00:00 1983-07-09 14:00:00 1042703340 1042703400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-09 14:00:00 1983-07-10 12:00:00 1042703400 1042704720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-10 13:00:00 1983-07-10 14:00:00 1042704780 1042704840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-10 14:00:00 1983-07-11 12:00:00 1042704840 1042706160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-11 13:00:00 1983-07-11 14:00:00 1042706220 1042706280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-11 14:00:00 1983-07-12 12:00:00 1042706280 1042707600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-12 13:00:00 1983-07-12 14:00:00 1042707660 1042707720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-12 14:00:00 1983-07-13 12:00:00 1042707720 1042709040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-13 13:00:00 1983-07-13 14:00:00 1042709100 1042709160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-13 14:00:00 1983-07-15 12:00:00 1042709160 1042711920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-15 13:00:00 1983-07-15 14:00:00 1042711980 1042712040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-15 14:00:00 1983-07-16 12:00:00 1042712040 1042713360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-16 13:00:00 1983-07-16 14:00:00 1042713420 1042713480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-16 14:00:00 1983-07-17 12:00:00 1042713480 1042714800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-17 13:00:00 1983-07-17 14:00:00 1042714860 1042714920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-17 14:00:00 1983-07-18 12:00:00 1042714920 1042716240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-18 13:00:00 1983-07-18 14:00:00 1042716300 1042716360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-18 14:00:00 1983-07-19 03:00:00 1042716360 1042717140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-22 06:00:00 1983-07-22 07:00:00 1042721640 1042721700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-22 07:00:00 1983-07-22 12:00:00 1042721700 1042722000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-22 13:00:00 1983-07-22 14:00:00 1042722060 1042722120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-22 14:00:00 1983-07-23 12:00:00 1042722120 1042723440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-23 13:00:00 1983-07-23 14:00:00 1042723500 1042723560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-23 14:00:00 1983-07-24 12:00:00 1042723560 1042724880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-24 14:00:00 1983-07-24 22:00:00 1042725000 1042725480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-07-24 22:00:00 1983-07-25 00:00:00 1042725480 1042725600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-25 00:00:00 1983-07-25 01:00:00 1042725600 1042725660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-07-25 01:00:00 1983-07-25 12:00:00 1042725660 1042726320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-25 13:00:00 1983-07-25 14:00:00 1042726380 1042726440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-25 14:00:00 1983-07-26 12:00:00 1042726440 1042727760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-26 13:00:00 1983-07-26 14:00:00 1042727820 1042727880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-26 14:00:00 1983-07-26 22:00:00 1042727880 1042728360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-26 22:00:00 1983-07-27 01:00:00 1042728360 1042728540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-07-27 01:00:00 1983-07-27 12:00:00 1042728540 1042729200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-27 12:00:00 1983-07-27 13:00:00 1042729200 1042729260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-27 13:00:00 1983-07-28 00:00:00 1042729260 1042729920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-28 00:00:00 1983-07-28 01:00:00 1042729920 1042729980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-07-28 01:00:00 1983-07-28 12:00:00 1042729980 1042730640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-28 12:00:00 1983-07-28 14:00:00 1042730640 1042730760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-28 14:00:00 1983-07-29 06:00:00 1042730760 1042731720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-29 06:00:00 1983-07-29 07:00:00 1042731720 1042731780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-07-29 07:00:00 1983-07-29 12:00:00 1042731780 1042732080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-29 13:00:00 1983-07-29 14:00:00 1042732140 1042732200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-29 14:00:00 1983-07-30 12:00:00 1042732200 1042733520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-30 13:00:00 1983-07-30 14:00:00 1042733580 1042733640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-30 14:00:00 1983-07-31 12:00:00 1042733640 1042734960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-07-31 13:00:00 1983-07-31 14:00:00 1042735020 1042735080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-07-31 14:00:00 1983-08-01 12:00:00 1042735080 1042736400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-01 13:00:00 1983-08-01 14:00:00 1042736460 1042736520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-08-01 14:00:00 1983-08-02 12:00:00 1042736520 1042737840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-02 13:00:00 1983-08-02 14:00:00 1042737900 1042737960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-08-02 14:00:00 1983-08-03 12:00:00 1042737960 1042739280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-03 13:00:00 1983-08-03 14:00:00 1042739340 1042739400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-08-03 14:00:00 1983-08-03 21:00:00 1042739400 1042739820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-03 21:00:00 1983-08-03 22:00:00 1042739820 1042739880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-08-03 22:00:00 1983-08-04 12:00:00 1042739880 1042740720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-04 13:00:00 1983-08-04 14:00:00 1042740780 1042740840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-08-04 14:00:00 1983-08-05 06:00:00 1042740840 1042741800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-05 06:00:00 1983-08-05 07:00:00 1042741800 1042741860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-05 07:00:00 1983-08-05 12:00:00 1042741860 1042742160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-05 13:00:00 1983-08-05 14:00:00 1042742220 1042742280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-08-05 14:00:00 1983-08-06 12:00:00 1042742280 1042743600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-06 13:00:00 1983-08-06 14:00:00 1042743660 1042743720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-08-06 14:00:00 1983-08-07 12:00:00 1042743720 1042745040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-11 23:00:00 1983-08-12 00:00:00 1042751460 1042751520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-12 00:00:00 1983-08-12 12:00:00 1042751520 1042752240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-12 12:00:00 1983-08-12 13:00:00 1042752240 1042752300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-12 14:00:00 1983-08-13 12:00:00 1042752360 1042753680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-13 12:00:00 1983-08-13 13:00:00 1042753680 1042753740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-13 14:00:00 1983-08-14 12:00:00 1042753800 1042755120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-14 12:00:00 1983-08-14 13:00:00 1042755120 1042755180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-14 14:00:00 1983-08-15 19:00:00 1042755240 1042756980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-15 19:00:00 1983-08-15 20:00:00 1042756980 1042757040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-15 20:00:00 1983-08-15 21:00:00 1042757040 1042757100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-15 21:00:00 1983-08-15 22:00:00 1042757100 1042757160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-15 22:00:00 1983-08-15 23:00:00 1042757160 1042757220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-08-15 23:00:00 1983-08-16 02:00:00 1042757220 1042757400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-16 02:00:00 1983-08-16 03:00:00 1042757400 1042757460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-16 03:00:00 1983-08-18 10:00:00 1042757460 1042760760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-18 10:00:00 1983-08-18 11:00:00 1042760760 1042760820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-18 11:00:00 1983-08-19 15:00:00 1042760820 1042762500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-19 15:00:00 1983-08-19 16:00:00 1042762500 1042762560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-19 16:00:00 1983-08-20 08:00:00 1042762560 1042763520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-20 08:00:00 1983-08-20 09:00:00 1042763520 1042763580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-20 09:00:00 1983-08-22 02:00:00 1042763580 1042766040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-22 02:00:00 1983-08-22 03:00:00 1042766040 1042766100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-22 03:00:00 1983-08-23 18:00:00 1042766100 1042768440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-23 18:00:00 1983-08-23 19:00:00 1042768440 1042768500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-23 19:00:00 1983-08-24 13:00:00 1042768500 1042769580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-25 01:00:00 1983-08-25 02:00:00 1042770300 1042770360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-08-25 02:00:00 1983-08-25 14:00:00 1042770360 1042771080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-25 14:00:00 1983-08-25 15:00:00 1042771080 1042771140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-25 15:00:00 1983-08-26 22:00:00 1042771140 1042773000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-26 22:00:00 1983-08-26 23:00:00 1042773000 1042773060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-26 23:00:00 1983-08-30 02:00:00 1042773060 1042777560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-30 02:00:00 1983-08-30 03:00:00 1042777560 1042777620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-30 03:00:00 1983-08-31 12:00:00 1042777620 1042779600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-08-31 12:00:00 1983-08-31 13:00:00 1042779600 1042779660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-08-31 14:00:00 1983-09-01 12:00:00 1042779720 1042781040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-09-01 12:00:00 1983-09-01 13:00:00 1042781040 1042781100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-09-01 14:00:00 1983-09-01 23:00:00 1042781160 1042781700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-09-02 00:00:00 1983-10-04 23:00:00 1042781760 1042829220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-11-08 00:00:00 1983-11-08 13:00:00 1042878240 1042879020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-11-08 13:00:00 1983-11-08 14:00:00 1042879020 1042879080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-11-08 14:00:00 1983-11-08 15:00:00 1042879080 1042879140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1983-11-08 15:00:00 1983-11-09 12:00:00 1042879140 1042880400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-11-09 12:00:00 1983-11-09 13:00:00 1042880400 1042880460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -1983-11-09 14:00:00 1983-11-10 11:00:00 1042880520 1042881780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042464840_1042881780.npz -1983-11-10 11:00:00 1983-11-10 12:00:00 1042881780 1042881840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1042460040_1042881840.npz'] -1984-02-02 03:00:00 1984-02-14 13:00:00 1043002260 1043020140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1043002260_1043020140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1043002260_1043030760.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1043002260_1043030760.npz -1984-02-14 14:00:00 1984-02-21 22:00:00 1043020200 1043030760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/347_CL(IMC)_1043002260_1043030760.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.537268873055776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_34_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_34_CL(IMC).out deleted file mode 100644 index ced40525466ea57eb4bfd1b83689bd1438f86e5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_34_CL(IMC).out +++ /dev/null @@ -1,16 +0,0 @@ -34_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2014-07-30 05:00:00 2014-12-31 12:00:00 1059038220 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/34_CL(IMC)_1059038220_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/34_CL(IMC)_1059038220_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/34_CL(IMC)_1059038220_1059260400.npz -'StationConcatenate' object has no attribute 'existing_data' -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/34_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/34_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/34_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/34_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/34_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/34_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/34_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/34_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03682168324788412 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_352_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_352_CL(IMC).out deleted file mode 100644 index 94ba172a5967c8480c54cc02a5d2b9e936dd09aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_352_CL(IMC).out +++ /dev/null @@ -1,421 +0,0 @@ -352_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1995-12-31 16:00:00 1996-06-13 03:00:00 1049267040 1049503860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1049267040_1049794020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1049267040_1049794020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1049267040_1049794020:dup1.npz -'StationConcatenate' object has no attribute 'existing_data' -1996-06-13 03:00:00 1996-06-13 04:00:00 1049503860 1049503920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1049267040_1049794020:dup1.npz'] -1996-06-13 04:00:00 1996-12-31 15:00:00 1049503920 1049794020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1049267040_1049794020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1049267040_1049794020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1049267040_1049794020:dup1.npz -1996-12-31 15:00:00 1997-12-31 15:00:00 1049794020 1050319620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1049794020_1050319620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1049794020_1050319620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1049794020_1050319620.npz -1997-12-31 15:00:00 1998-12-23 02:00:00 1050319620 1050832920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1050319620_1050845220:dup1.npz -1998-12-23 07:00:00 1998-12-23 23:00:00 1050833220 1050834180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1050319620_1050845220:dup1.npz'] -1998-12-23 23:00:00 1998-12-31 15:00:00 1050834180 1050845220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1050319620_1050845220:dup1.npz -1998-12-31 15:00:00 1999-12-31 15:00:00 1050845220 1051370820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1050845220_1051370820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1050845220_1051370820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1050845220_1051370820.npz -1999-12-31 15:00:00 2000-12-31 15:00:00 1051370820 1051897860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1051370820_1051897860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1051370820_1051897860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1051370820_1051897860.npz -2000-12-31 15:00:00 2001-12-31 15:00:00 1051897860 1052423460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1051897860_1052423460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1051897860_1052423460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1051897860_1052423460.npz -2001-12-31 15:00:00 2002-11-05 00:00:00 1052423460 1052867520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1052423460_1052949060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1052423460_1052949060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1052423460_1052949060.npz -2002-11-05 00:00:00 2002-11-05 01:00:00 1052867520 1052867580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1052423460_1052949060.npz'] -2002-11-05 04:00:00 2002-12-31 15:00:00 1052867760 1052949060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1052423460_1052949060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1052423460_1052949060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1052423460_1052949060.npz -2002-12-31 15:00:00 2003-12-31 15:00:00 1052949060 1053474660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1052949060_1053474660.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1052949060_1053474660:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1052949060_1053474660.npz -2003-12-31 15:00:00 2004-12-31 15:00:00 1053474660 1054001700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1053474660_1054001700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1053474660_1054001700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1053474660_1054001700.npz -2004-12-31 15:00:00 2005-04-30 16:00:00 1054001700 1054174560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054001700_1054527300.npz -2005-04-30 16:00:00 2005-05-16 05:00:00 1054174560 1054196940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054001700_1054527300.npz'] -2005-05-16 05:00:00 2005-11-22 23:00:00 1054196940 1054471620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054001700_1054527300.npz -2005-11-28 03:00:00 2005-11-28 04:00:00 1054479060 1054479120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054001700_1054527300.npz'] -2005-11-28 04:00:00 2005-12-31 15:00:00 1054479120 1054527300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054001700_1054527300.npz -2005-12-31 15:00:00 2006-12-31 15:00:00 1054527300 1055052900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1054527300_1055052900.npz -2006-12-31 15:00:00 2007-12-31 15:00:00 1055052900 1055578500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1055052900_1055578500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1055052900_1055578500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1055052900_1055578500.npz -2007-12-31 15:00:00 2008-10-24 00:00:00 1055578500 1056006720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1055578500_1056105540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1055578500_1056105540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1055578500_1056105540.npz -2008-10-24 00:00:00 2008-10-24 03:00:00 1056006720 1056006900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1055578500_1056105540.npz'] -2008-10-24 03:00:00 2008-12-31 15:00:00 1056006900 1056105540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1055578500_1056105540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1055578500_1056105540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1055578500_1056105540.npz -2008-12-31 15:00:00 2009-12-03 03:00:00 1056105540 1056590100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056105540_1056631140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056105540_1056631140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056105540_1056631140.npz -2009-12-03 05:00:00 2009-12-03 06:00:00 1056590220 1056590280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056105540_1056631140.npz'] -2009-12-03 06:00:00 2009-12-31 15:00:00 1056590280 1056631140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056105540_1056631140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056105540_1056631140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056105540_1056631140.npz -2009-12-31 15:00:00 2010-01-31 20:00:00 1056631140 1056676080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-01-31 20:00:00 2010-01-31 21:00:00 1056676080 1056676140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-01-31 21:00:00 2010-02-01 20:00:00 1056676140 1056677520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-01 20:00:00 2010-02-01 21:00:00 1056677520 1056677580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-01 21:00:00 2010-02-02 20:00:00 1056677580 1056678960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-02 20:00:00 2010-02-02 21:00:00 1056678960 1056679020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-02 21:00:00 2010-02-03 20:00:00 1056679020 1056680400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-03 20:00:00 2010-02-03 21:00:00 1056680400 1056680460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-03 21:00:00 2010-02-04 20:00:00 1056680460 1056681840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-04 20:00:00 2010-02-04 21:00:00 1056681840 1056681900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-04 21:00:00 2010-02-05 20:00:00 1056681900 1056683280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-05 20:00:00 2010-02-05 21:00:00 1056683280 1056683340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-05 21:00:00 2010-02-06 20:00:00 1056683340 1056684720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-06 20:00:00 2010-02-06 21:00:00 1056684720 1056684780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-06 21:00:00 2010-02-07 20:00:00 1056684780 1056686160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-07 20:00:00 2010-02-07 21:00:00 1056686160 1056686220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-07 21:00:00 2010-02-08 20:00:00 1056686220 1056687600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-08 20:00:00 2010-02-08 21:00:00 1056687600 1056687660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-08 21:00:00 2010-02-09 20:00:00 1056687660 1056689040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-09 20:00:00 2010-02-09 21:00:00 1056689040 1056689100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-09 21:00:00 2010-02-10 20:00:00 1056689100 1056690480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-10 20:00:00 2010-02-10 21:00:00 1056690480 1056690540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-10 21:00:00 2010-02-11 20:00:00 1056690540 1056691920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-11 20:00:00 2010-02-11 21:00:00 1056691920 1056691980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-11 21:00:00 2010-02-12 20:00:00 1056691980 1056693360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-12 20:00:00 2010-02-12 21:00:00 1056693360 1056693420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-12 21:00:00 2010-02-13 20:00:00 1056693420 1056694800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-13 20:00:00 2010-02-13 21:00:00 1056694800 1056694860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-13 21:00:00 2010-02-14 20:00:00 1056694860 1056696240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-14 20:00:00 2010-02-14 21:00:00 1056696240 1056696300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-14 21:00:00 2010-02-15 20:00:00 1056696300 1056697680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-15 20:00:00 2010-02-15 21:00:00 1056697680 1056697740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-15 21:00:00 2010-02-16 20:00:00 1056697740 1056699120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-16 20:00:00 2010-02-16 21:00:00 1056699120 1056699180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-16 21:00:00 2010-02-17 20:00:00 1056699180 1056700560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-17 20:00:00 2010-02-17 21:00:00 1056700560 1056700620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-17 21:00:00 2010-02-18 20:00:00 1056700620 1056702000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-18 20:00:00 2010-02-18 21:00:00 1056702000 1056702060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-18 21:00:00 2010-02-19 20:00:00 1056702060 1056703440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-19 20:00:00 2010-02-19 21:00:00 1056703440 1056703500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-19 21:00:00 2010-02-20 20:00:00 1056703500 1056704880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-20 20:00:00 2010-02-20 21:00:00 1056704880 1056704940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-20 21:00:00 2010-02-21 20:00:00 1056704940 1056706320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-21 20:00:00 2010-02-21 21:00:00 1056706320 1056706380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-21 21:00:00 2010-02-22 20:00:00 1056706380 1056707760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-22 20:00:00 2010-02-22 21:00:00 1056707760 1056707820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-22 21:00:00 2010-02-23 20:00:00 1056707820 1056709200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-23 20:00:00 2010-02-23 21:00:00 1056709200 1056709260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-23 21:00:00 2010-02-24 20:00:00 1056709260 1056710640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-24 20:00:00 2010-02-24 21:00:00 1056710640 1056710700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-24 21:00:00 2010-02-25 20:00:00 1056710700 1056712080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-25 20:00:00 2010-02-25 21:00:00 1056712080 1056712140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-25 21:00:00 2010-02-26 20:00:00 1056712140 1056713520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-26 20:00:00 2010-02-26 21:00:00 1056713520 1056713580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-26 21:00:00 2010-02-27 20:00:00 1056713580 1056714960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-02-27 20:00:00 2010-02-27 21:00:00 1056714960 1056715020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-02-27 21:00:00 2010-09-03 19:00:00 1056715020 1056985620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-09-03 19:00:00 2010-09-03 20:00:00 1056985620 1056985680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-09-03 20:00:00 2010-09-15 03:00:00 1056985680 1057001940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-09-15 03:00:00 2010-09-15 04:00:00 1057001940 1057002000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-09-15 04:00:00 2010-09-17 19:00:00 1057002000 1057005780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-09-17 19:00:00 2010-09-17 20:00:00 1057005780 1057005840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-09-17 20:00:00 2010-09-24 19:00:00 1057005840 1057015860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-09-24 19:00:00 2010-09-24 20:00:00 1057015860 1057015920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz'] -2010-09-24 20:00:00 2010-12-31 15:00:00 1057015920 1057156740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1056631140_1057156740.npz -2010-12-31 15:00:00 2011-11-11 00:00:00 1057156740 1057609440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1057156740_1057682340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1057156740_1057682340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1057156740_1057682340:dup1.npz -2011-11-11 00:00:00 2011-11-11 01:00:00 1057609440 1057609500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1057156740_1057682340:dup1.npz'] -2011-11-11 01:00:00 2011-12-31 15:00:00 1057609500 1057682340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1057156740_1057682340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1057156740_1057682340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1057156740_1057682340:dup1.npz -2011-12-31 15:00:00 2012-12-31 15:00:00 1057682340 1058209380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1057682340_1058209380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1057682340_1058209380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1057682340_1058209380.npz -2012-12-31 15:00:00 2013-12-31 15:00:00 1058209380 1058734980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058209380_1058734980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058209380_1058734980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058209380_1058734980.npz -2013-12-31 15:00:00 2014-04-03 03:00:00 1058734980 1058868180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-04-03 03:00:00 2014-04-03 04:00:00 1058868180 1058868240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-04-03 04:00:00 2014-04-07 02:00:00 1058868240 1058873880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-04-07 02:00:00 2014-04-07 03:00:00 1058873880 1058873940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-04-07 03:00:00 2014-04-09 07:00:00 1058873940 1058877060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-04-09 07:00:00 2014-04-09 08:00:00 1058877060 1058877120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-04-09 08:00:00 2014-04-10 06:00:00 1058877120 1058878440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-04-10 06:00:00 2014-04-10 07:00:00 1058878440 1058878500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-04-10 07:00:00 2014-04-11 06:00:00 1058878500 1058879880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-04-11 06:00:00 2014-04-11 07:00:00 1058879880 1058879940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-04-11 07:00:00 2014-04-19 19:00:00 1058879940 1058892180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-04-19 19:00:00 2014-04-19 20:00:00 1058892180 1058892240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-04-19 20:00:00 2014-04-19 22:00:00 1058892240 1058892360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-04-19 22:00:00 2014-04-19 23:00:00 1058892360 1058892420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-04-19 23:00:00 2014-04-21 02:00:00 1058892420 1058894040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-04-21 02:00:00 2014-04-21 03:00:00 1058894040 1058894100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-04-21 03:00:00 2014-04-23 20:00:00 1058894100 1058898000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-04-23 20:00:00 2014-04-23 21:00:00 1058898000 1058898060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-04-23 21:00:00 2014-05-23 19:00:00 1058898060 1058941140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-05-23 19:00:00 2014-05-23 20:00:00 1058941140 1058941200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-05-23 20:00:00 2014-06-17 20:00:00 1058941200 1058977200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-06-17 20:00:00 2014-06-17 21:00:00 1058977200 1058977260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-06-17 21:00:00 2014-07-05 20:00:00 1058977260 1059003120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-07-05 20:00:00 2014-07-05 21:00:00 1059003120 1059003180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-07-05 21:00:00 2014-07-05 22:00:00 1059003180 1059003240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-07-05 22:00:00 2014-07-05 23:00:00 1059003240 1059003300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-07-05 23:00:00 2014-07-21 19:00:00 1059003300 1059026100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-07-21 19:00:00 2014-07-21 20:00:00 1059026100 1059026160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-07-21 20:00:00 2014-08-03 20:00:00 1059026160 1059044880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-08-03 20:00:00 2014-08-03 21:00:00 1059044880 1059044940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-08-03 21:00:00 2014-08-13 20:00:00 1059044940 1059059280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-08-13 20:00:00 2014-08-13 21:00:00 1059059280 1059059340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-08-13 21:00:00 2014-08-21 20:00:00 1059059340 1059070800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-08-21 20:00:00 2014-08-21 21:00:00 1059070800 1059070860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-08-21 21:00:00 2014-08-28 21:00:00 1059070860 1059080940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-08-28 21:00:00 2014-08-28 22:00:00 1059080940 1059081000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-08-28 22:00:00 2014-08-29 20:00:00 1059081000 1059082320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-08-29 20:00:00 2014-08-29 21:00:00 1059082320 1059082380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-08-29 21:00:00 2014-08-29 22:00:00 1059082380 1059082440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-08-29 22:00:00 2014-08-29 23:00:00 1059082440 1059082500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-08-29 23:00:00 2014-08-31 20:00:00 1059082500 1059085200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-08-31 20:00:00 2014-08-31 21:00:00 1059085200 1059085260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-08-31 21:00:00 2014-09-01 19:00:00 1059085260 1059086580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-01 19:00:00 2014-09-01 20:00:00 1059086580 1059086640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-01 21:00:00 2014-09-03 04:00:00 1059086700 1059088560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-03 04:00:00 2014-09-03 05:00:00 1059088560 1059088620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-03 05:00:00 2014-09-03 17:00:00 1059088620 1059089340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-03 17:00:00 2014-09-03 22:00:00 1059089340 1059089640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-03 22:00:00 2014-09-04 20:00:00 1059089640 1059090960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-04 20:00:00 2014-09-04 21:00:00 1059090960 1059091020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-04 21:00:00 2014-09-08 02:00:00 1059091020 1059095640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-08 02:00:00 2014-09-08 03:00:00 1059095640 1059095700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-08 03:00:00 2014-09-08 04:00:00 1059095700 1059095760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-08 04:00:00 2014-09-08 05:00:00 1059095760 1059095820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-08 05:00:00 2014-09-08 11:00:00 1059095820 1059096180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-08 11:00:00 2014-09-08 12:00:00 1059096180 1059096240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-08 12:00:00 2014-09-08 20:00:00 1059096240 1059096720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-08 20:00:00 2014-09-08 21:00:00 1059096720 1059096780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz'] -2014-09-08 21:00:00 2014-09-14 21:00:00 1059096780 1059105420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-14 21:00:00 2014-09-14 22:00:00 1059105420 1059105480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-14 22:00:00 2014-09-16 17:00:00 1059105480 1059108060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-16 17:00:00 2014-09-16 19:00:00 1059108060 1059108180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-16 19:00:00 2014-09-16 20:00:00 1059108180 1059108240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-16 20:00:00 2014-09-16 22:00:00 1059108240 1059108360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-16 22:00:00 2014-09-22 05:00:00 1059108360 1059115980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-22 05:00:00 2014-09-22 06:00:00 1059115980 1059116040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-22 06:00:00 2014-09-26 07:00:00 1059116040 1059121860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-26 07:00:00 2014-09-26 09:00:00 1059121860 1059121980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-26 09:00:00 2014-09-28 03:00:00 1059121980 1059124500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-28 03:00:00 2014-09-28 06:00:00 1059124500 1059124680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-28 06:00:00 2014-09-30 03:00:00 1059124680 1059127380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-30 03:00:00 2014-09-30 05:00:00 1059127380 1059127500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-30 05:00:00 2014-09-30 06:00:00 1059127500 1059127560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-09-30 06:00:00 2014-09-30 07:00:00 1059127560 1059127620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-09-30 07:00:00 2014-10-01 06:00:00 1059127620 1059129000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-10-01 06:00:00 2014-10-01 07:00:00 1059129000 1059129060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-10-01 07:00:00 2014-10-02 17:00:00 1059129060 1059131100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-10-02 17:00:00 2014-10-02 19:00:00 1059131100 1059131220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-10-02 19:00:00 2014-10-04 04:00:00 1059131220 1059133200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-10-04 04:00:00 2014-10-04 06:00:00 1059133200 1059133320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-10-04 06:00:00 2014-10-04 22:00:00 1059133320 1059134280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-10-04 22:00:00 2014-10-04 23:00:00 1059134280 1059134340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-10-04 23:00:00 2014-10-10 20:00:00 1059134340 1059142800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-10-10 20:00:00 2014-10-10 21:00:00 1059142800 1059142860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-10-10 21:00:00 2014-10-11 01:00:00 1059142860 1059143100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-10-11 01:00:00 2014-10-11 03:00:00 1059143100 1059143220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-10-11 03:00:00 2014-10-11 05:00:00 1059143220 1059143340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-10-11 05:00:00 2014-10-11 06:00:00 1059143340 1059143400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-10-11 06:00:00 2014-10-12 19:00:00 1059143400 1059145620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-10-12 19:00:00 2014-10-12 20:00:00 1059145620 1059145680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-10-12 20:00:00 2014-10-25 20:00:00 1059145680 1059164400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-10-25 20:00:00 2014-10-25 22:00:00 1059164400 1059164520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -2014-10-25 22:00:00 2014-12-31 15:00:00 1059164520 1059260580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1058734980_1059260580:dup1.npz -2014-12-31 15:00:00 2015-12-31 15:00:00 1059260580 1059786180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1059260580_1059786180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1059260580_1059786180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1059260580_1059786180.npz -2015-12-31 15:00:00 2016-12-31 15:00:00 1059786180 1060313220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1059786180_1060313220.npz'] -2016-12-31 15:00:00 2017-12-31 15:00:00 1060313220 1060838820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1060313220_1060838820.npz'] -2019-12-31 15:00:00 2020-07-27 17:00:00 1061890020 1062191100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1061890020_1062417060.npz -2020-07-27 17:00:00 2020-07-27 18:00:00 1062191100 1062191160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1061890020_1062417060.npz'] -2020-07-27 18:00:00 2020-12-31 15:00:00 1062191160 1062417060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1061890020_1062417060.npz -2020-12-31 15:00:00 2021-06-30 16:00:00 1062417060 1062677760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1062417060_1062677760.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1062417060_1062677760:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/352_CL(IMC)_1062417060_1062677760.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -1.031012765566508 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_354_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_354_CL(IMC).out deleted file mode 100644 index 7ec00c1906e266cf12795754a79d5604f6225b31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_354_CL(IMC).out +++ /dev/null @@ -1,121 +0,0 @@ -354_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1995-12-31 16:00:00 1996-03-18 02:00:00 1049267040 1049378520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020.npz -'StationConcatenate' object has no attribute 'existing_data' -1996-03-18 02:00:00 1996-03-18 03:00:00 1049378520 1049378580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020:dup1.npz'] -1996-03-18 03:00:00 1996-03-19 01:00:00 1049378580 1049379900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020.npz -1996-03-19 01:00:00 1996-03-19 03:00:00 1049379900 1049380020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020.npz'] -1996-03-19 03:00:00 1996-06-26 03:00:00 1049380020 1049522580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020.npz -1996-06-26 03:00:00 1996-06-26 04:00:00 1049522580 1049522640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020:dup1.npz'] -1996-06-26 06:00:00 1996-12-31 15:00:00 1049522760 1049794020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049267040_1049794020.npz -1996-12-31 15:00:00 1997-12-31 15:00:00 1049794020 1050319620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049794020_1050319620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049794020_1050319620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1049794020_1050319620.npz -1997-12-31 15:00:00 1998-02-10 02:00:00 1050319620 1050377880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1050319620_1050845220:dup1.npz -1998-02-10 02:00:00 1998-02-10 03:00:00 1050377880 1050377940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1050319620_1050845220:dup1.npz'] -1998-02-10 03:00:00 1998-12-31 15:00:00 1050377940 1050845220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1050319620_1050845220:dup1.npz -1998-12-31 15:00:00 1999-12-31 15:00:00 1050845220 1051370820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1050845220_1051370820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1050845220_1051370820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1050845220_1051370820.npz -1999-12-31 15:00:00 2000-12-31 15:00:00 1051370820 1051897860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051370820_1051897860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051370820_1051897860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051370820_1051897860.npz -2000-12-31 15:00:00 2001-06-07 13:00:00 1051897860 1052125260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz -2001-06-07 13:00:00 2001-06-07 15:00:00 1052125260 1052125380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz'] -2001-06-07 15:00:00 2001-06-21 13:00:00 1052125380 1052145420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz -2001-06-21 13:00:00 2001-06-21 14:00:00 1052145420 1052145480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz'] -2001-06-21 14:00:00 2001-06-22 13:00:00 1052145480 1052146860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz -2001-06-22 13:00:00 2001-06-22 16:00:00 1052146860 1052147040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz'] -2001-06-22 16:00:00 2001-06-27 14:00:00 1052147040 1052154120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz -2001-06-27 14:00:00 2001-06-27 18:00:00 1052154120 1052154360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz'] -2001-06-27 18:00:00 2001-12-31 15:00:00 1052154360 1052423460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1051897860_1052423460.npz -2001-12-31 15:00:00 2002-12-31 15:00:00 1052423460 1052949060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1052423460_1052949060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1052423460_1052949060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1052423460_1052949060.npz -2002-12-31 15:00:00 2003-12-31 15:00:00 1052949060 1053474660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1052949060_1053474660.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1052949060_1053474660:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1052949060_1053474660.npz -2003-12-31 15:00:00 2004-12-31 15:00:00 1053474660 1054001700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1053474660_1054001700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1053474660_1054001700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1053474660_1054001700.npz -2004-12-31 15:00:00 2005-12-31 15:00:00 1054001700 1054527300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1054001700_1054527300.npz -2005-12-31 15:00:00 2006-08-26 05:00:00 1054527300 1054869420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1054527300_1055052900:dup1.npz -2006-08-26 05:00:00 2006-08-26 08:00:00 1054869420 1054869600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1054527300_1055052900:dup1.npz'] -2006-08-26 08:00:00 2006-12-31 15:00:00 1054869600 1055052900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1054527300_1055052900:dup1.npz -2006-12-31 15:00:00 2007-07-18 02:00:00 1055052900 1055338680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1055052900_1055578500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1055052900_1055578500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1055052900_1055578500:dup1.npz -2007-07-18 02:00:00 2007-07-18 06:00:00 1055338680 1055338920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1055052900_1055578500:dup1.npz'] -2007-07-18 08:00:00 2007-12-31 15:00:00 1055339040 1055578500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1055052900_1055578500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1055052900_1055578500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1055052900_1055578500:dup1.npz -2007-12-31 15:00:00 2008-12-31 15:00:00 1055578500 1056105540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1055578500_1056105540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1055578500_1056105540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1055578500_1056105540.npz -2008-12-31 15:00:00 2009-12-31 15:00:00 1056105540 1056631140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1056105540_1056631140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1056105540_1056631140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1056105540_1056631140.npz -2009-12-31 15:00:00 2010-09-02 04:00:00 1056631140 1056983280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1056631140_1057156740.npz -2010-09-02 04:00:00 2010-09-02 05:00:00 1056983280 1056983340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1056631140_1057156740.npz'] -2010-09-02 05:00:00 2010-12-31 15:00:00 1056983340 1057156740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1056631140_1057156740.npz -2010-12-31 15:00:00 2011-12-31 15:00:00 1057156740 1057682340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1057156740_1057682340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1057156740_1057682340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1057156740_1057682340.npz -2011-12-31 15:00:00 2012-12-31 15:00:00 1057682340 1058209380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1057682340_1058209380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1057682340_1058209380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1057682340_1058209380.npz -2012-12-31 15:00:00 2013-05-11 07:00:00 1058209380 1058397540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1058209380_1058734980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1058209380_1058734980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1058209380_1058734980:dup1.npz -2013-05-11 08:00:00 2013-05-11 09:00:00 1058397600 1058397660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1058209380_1058734980:dup1.npz'] -2013-05-11 09:00:00 2013-12-31 15:00:00 1058397660 1058734980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1058209380_1058734980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1058209380_1058734980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1058209380_1058734980:dup1.npz -2013-12-31 15:00:00 2014-12-31 15:00:00 1058734980 1059260580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1058734980_1059260580.npz -2014-12-31 15:00:00 2015-12-31 15:00:00 1059260580 1059786180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1059260580_1059786180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1059260580_1059786180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1059260580_1059786180.npz -2015-12-31 15:00:00 2016-12-31 15:00:00 1059786180 1060313220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1059786180_1060313220.npz'] -2016-12-31 15:00:00 2017-12-31 15:00:00 1060313220 1060838820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1060313220_1060838820.npz'] -2019-12-31 15:00:00 2020-12-31 15:00:00 1061890020 1062417060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1061890020_1062417060.npz -2020-12-31 15:00:00 2021-06-30 16:00:00 1062417060 1062677760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1062417060_1062677760.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1062417060_1062677760:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/354_CL(IMC)_1062417060_1062677760.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.6550797740618388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_357_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_357_CL(IMC).out deleted file mode 100644 index b8b0be5b81e2cf68443cd13a7d0825d71630f709..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_357_CL(IMC).out +++ /dev/null @@ -1,15 +0,0 @@ -357_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2019-12-31 15:00:00 2020-11-08 18:00:00 1061890020 1062340920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/357_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/357_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/357_CL(IMC)_1061890020_1062417060.npz -'StationConcatenate' object has no attribute 'existing_data' -2020-11-08 18:00:00 2020-11-08 19:00:00 1062340920 1062340980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/357_CL(IMC)_1061890020_1062417060.npz'] -2020-11-08 19:00:00 2020-12-31 15:00:00 1062340980 1062417060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/357_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/357_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/357_CL(IMC)_1061890020_1062417060.npz -2020-12-31 15:00:00 2021-06-30 16:00:00 1062417060 1062677760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/357_CL(IMC)_1062417060_1062677760.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/357_CL(IMC)_1062417060_1062677760:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/357_CL(IMC)_1062417060_1062677760.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.08978610038757324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_358_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_358_CL(IMC).out deleted file mode 100644 index 4059411ef23fd6ac79ee55e6d8783e504f140334..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_358_CL(IMC).out +++ /dev/null @@ -1,173 +0,0 @@ -358_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1995-12-31 16:00:00 1996-12-31 15:00:00 1049267040 1049794020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1049267040_1049794020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1049267040_1049794020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1049267040_1049794020.npz -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 15:00:00 1997-12-31 15:00:00 1049794020 1050319620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1049794020_1050319620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1049794020_1050319620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1049794020_1050319620.npz -1997-12-31 15:00:00 1998-02-03 01:00:00 1050319620 1050367740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050319620_1050845220:dup1.npz -1998-02-03 01:00:00 1998-02-03 02:00:00 1050367740 1050367800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050319620_1050845220:dup1.npz'] -1998-02-03 02:00:00 1998-12-31 15:00:00 1050367800 1050845220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050319620_1050845220:dup1.npz -1998-12-31 15:00:00 1999-09-09 06:00:00 1050845220 1051207560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050845220_1051370820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050845220_1051370820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050845220_1051370820:dup1.npz -1999-09-09 06:00:00 1999-09-09 07:00:00 1051207560 1051207620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050845220_1051370820:dup1.npz'] -1999-09-09 11:00:00 1999-12-31 15:00:00 1051207860 1051370820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050845220_1051370820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050845220_1051370820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1050845220_1051370820:dup1.npz -1999-12-31 15:00:00 2000-05-06 02:00:00 1051370820 1051552920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1051370820_1051897860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1051370820_1051897860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1051370820_1051897860:dup1.npz -2000-05-06 02:00:00 2000-05-06 03:00:00 1051552920 1051552980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1051370820_1051897860:dup1.npz'] -2000-05-06 03:00:00 2000-12-31 15:00:00 1051552980 1051897860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1051370820_1051897860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1051370820_1051897860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1051370820_1051897860:dup1.npz -2000-12-31 15:00:00 2001-12-31 15:00:00 1051897860 1052423460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1051897860_1052423460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1051897860_1052423460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1051897860_1052423460.npz -2001-12-31 15:00:00 2002-12-31 15:00:00 1052423460 1052949060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1052423460_1052949060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1052423460_1052949060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1052423460_1052949060.npz -2002-12-31 15:00:00 2003-12-31 15:00:00 1052949060 1053474660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1052949060_1053474660.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1052949060_1053474660:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1052949060_1053474660.npz -2003-12-31 15:00:00 2004-12-31 15:00:00 1053474660 1054001700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1053474660_1054001700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1053474660_1054001700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1053474660_1054001700.npz -2004-12-31 15:00:00 2005-05-10 07:00:00 1054001700 1054188420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz -2005-05-13 04:00:00 2005-05-14 16:00:00 1054192560 1054194720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -2005-05-14 16:00:00 2005-07-05 11:00:00 1054194720 1054269300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz -2005-07-05 21:00:00 2005-07-05 23:00:00 1054269900 1054270020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300.npz'] -2005-07-05 23:00:00 2005-07-28 06:00:00 1054270020 1054302120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz -2005-07-28 07:00:00 2005-07-28 09:00:00 1054302180 1054302300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -2005-07-28 09:00:00 2005-08-12 15:00:00 1054302300 1054324260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz -2005-08-12 16:00:00 2005-08-12 19:00:00 1054324320 1054324500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -2005-08-12 19:00:00 2005-08-16 11:00:00 1054324500 1054329780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz -2005-08-16 13:00:00 2005-08-16 16:00:00 1054329900 1054330080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -2005-08-16 16:00:00 2005-09-27 10:00:00 1054330080 1054390200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz -2005-09-29 05:00:00 2005-09-29 14:00:00 1054392780 1054393320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300.npz'] -2005-09-29 14:00:00 2005-11-03 06:00:00 1054393320 1054443240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz -2005-11-03 06:00:00 2005-11-04 02:00:00 1054443240 1054444440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300.npz'] -2005-11-04 04:00:00 2005-12-31 15:00:00 1054444560 1054527300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054001700_1054527300:dup1.npz -2005-12-31 15:00:00 2006-06-08 02:00:00 1054527300 1054755480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900.npz -2006-06-08 02:00:00 2006-06-08 03:00:00 1054755480 1054755540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900.npz'] -2006-06-08 03:00:00 2006-09-06 00:00:00 1054755540 1054884960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900.npz -2006-09-06 02:00:00 2006-09-06 03:00:00 1054885080 1054885140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900.npz'] -2006-09-06 03:00:00 2006-10-11 07:00:00 1054885140 1054935780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900.npz -2006-10-11 07:00:00 2006-10-11 08:00:00 1054935780 1054935840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900.npz'] -2006-10-11 08:00:00 2006-12-31 15:00:00 1054935840 1055052900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1054527300_1055052900.npz -2006-12-31 15:00:00 2007-01-25 00:00:00 1055052900 1055088000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055052900_1055578500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055052900_1055578500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055052900_1055578500.npz -2007-01-25 03:00:00 2007-01-25 04:00:00 1055088180 1055088240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055052900_1055578500.npz'] -2007-01-25 04:00:00 2007-12-31 15:00:00 1055088240 1055578500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055052900_1055578500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055052900_1055578500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055052900_1055578500.npz -2007-12-31 15:00:00 2008-05-17 23:00:00 1055578500 1055777700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055578500_1056105540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055578500_1056105540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055578500_1056105540.npz -2008-05-17 23:00:00 2008-05-18 00:00:00 1055777700 1055777760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055578500_1056105540.npz'] -2008-05-18 00:00:00 2008-12-31 15:00:00 1055777760 1056105540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055578500_1056105540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055578500_1056105540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1055578500_1056105540.npz -2008-12-31 15:00:00 2009-01-14 01:00:00 1056105540 1056124860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056105540_1056631140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056105540_1056631140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056105540_1056631140:dup1.npz -2009-01-14 01:00:00 2009-01-14 03:00:00 1056124860 1056124980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056105540_1056631140:dup1.npz'] -2009-01-14 03:00:00 2009-12-31 15:00:00 1056124980 1056631140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056105540_1056631140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056105540_1056631140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056105540_1056631140:dup1.npz -2009-12-31 15:00:00 2010-07-01 17:00:00 1056631140 1056893340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz -2010-07-01 17:00:00 2010-07-01 19:00:00 1056893340 1056893460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz'] -2010-07-01 19:00:00 2010-08-02 22:00:00 1056893460 1056939720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz -2010-08-02 22:00:00 2010-08-03 00:00:00 1056939720 1056939840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz'] -2010-08-03 00:00:00 2010-09-03 04:00:00 1056939840 1056984720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz -2010-09-03 04:00:00 2010-09-03 05:00:00 1056984720 1056984780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz'] -2010-09-03 05:00:00 2010-09-17 07:00:00 1056984780 1057005060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz -2010-09-17 07:00:00 2010-09-17 09:00:00 1057005060 1057005180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz'] -2010-09-17 11:00:00 2010-09-21 03:00:00 1057005300 1057010580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz -2010-09-21 03:00:00 2010-09-21 05:00:00 1057010580 1057010700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz'] -2010-09-21 05:00:00 2010-10-17 11:00:00 1057010700 1057048500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz -2010-10-17 11:00:00 2010-10-17 12:00:00 1057048500 1057048560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz'] -2010-10-17 12:00:00 2010-11-26 20:00:00 1057048560 1057106640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz -2010-11-26 20:00:00 2010-11-26 21:00:00 1057106640 1057106700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz'] -2010-11-26 21:00:00 2010-12-24 20:00:00 1057106700 1057146960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz -2010-12-24 20:00:00 2010-12-24 21:00:00 1057146960 1057147020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz'] -2010-12-24 21:00:00 2010-12-27 20:00:00 1057147020 1057151280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz -2010-12-27 20:00:00 2010-12-27 21:00:00 1057151280 1057151340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz'] -2010-12-27 21:00:00 2010-12-31 15:00:00 1057151340 1057156740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1056631140_1057156740.npz -2010-12-31 15:00:00 2011-12-31 15:00:00 1057156740 1057682340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1057156740_1057682340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1057156740_1057682340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1057156740_1057682340.npz -2011-12-31 15:00:00 2012-12-31 15:00:00 1057682340 1058209380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1057682340_1058209380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1057682340_1058209380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1057682340_1058209380.npz -2012-12-31 15:00:00 2013-12-31 15:00:00 1058209380 1058734980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1058209380_1058734980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1058209380_1058734980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1058209380_1058734980.npz -2013-12-31 15:00:00 2014-12-31 15:00:00 1058734980 1059260580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1058734980_1059260580.npz -2014-12-31 15:00:00 2015-12-31 15:00:00 1059260580 1059786180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1059260580_1059786180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1059260580_1059786180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1059260580_1059786180.npz -2015-12-31 15:00:00 2016-12-31 15:00:00 1059786180 1060313220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1059786180_1060313220.npz'] -2016-12-31 15:00:00 2017-03-20 05:00:00 1060313220 1060426380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1060313220_1060426380.npz'] -2020-02-03 03:00:00 2020-12-31 15:00:00 1061938260 1062417060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1061938260_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1061938260_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1061938260_1062417060.npz -2020-12-31 15:00:00 2021-06-30 16:00:00 1062417060 1062677760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1062417060_1062677760.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1062417060_1062677760:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/358_CL(IMC)_1062417060_1062677760.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.8084505518277486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_359_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_359_CL(IMC).out deleted file mode 100644 index aa63c8d12608aeb084f75a11e8ab99158cf9e0e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_359_CL(IMC).out +++ /dev/null @@ -1,170 +0,0 @@ -359_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1995-12-31 16:00:00 1996-12-31 15:00:00 1049267040 1049794020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1049267040_1049794020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1049267040_1049794020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1049267040_1049794020.npz -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 15:00:00 1997-12-31 15:00:00 1049794020 1050319620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1049794020_1050319620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1049794020_1050319620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1049794020_1050319620.npz -1997-12-31 15:00:00 1998-12-31 15:00:00 1050319620 1050845220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1050319620_1050845220.npz -1998-12-31 15:00:00 1999-12-31 15:00:00 1050845220 1051370820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1050845220_1051370820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1050845220_1051370820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1050845220_1051370820.npz -1999-12-31 15:00:00 2000-01-13 23:00:00 1051370820 1051390020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1051370820_1051897860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1051370820_1051897860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1051370820_1051897860.npz -2000-01-14 06:00:00 2000-01-14 07:00:00 1051390440 1051390500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1051370820_1051897860.npz'] -2000-01-14 07:00:00 2000-12-31 15:00:00 1051390500 1051897860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1051370820_1051897860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1051370820_1051897860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1051370820_1051897860.npz -2000-12-31 15:00:00 2001-12-31 15:00:00 1051897860 1052423460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1051897860_1052423460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1051897860_1052423460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1051897860_1052423460.npz -2001-12-31 15:00:00 2002-12-31 15:00:00 1052423460 1052949060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1052423460_1052949060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1052423460_1052949060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1052423460_1052949060.npz -2002-12-31 15:00:00 2003-01-29 04:00:00 1052949060 1052990160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1052949060_1053474660.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1052949060_1053474660:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1052949060_1053474660:dup1.npz -2003-01-29 06:00:00 2003-01-29 07:00:00 1052990280 1052990340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1052949060_1053474660:dup1.npz'] -2003-01-29 07:00:00 2003-12-31 15:00:00 1052990340 1053474660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1052949060_1053474660.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1052949060_1053474660:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1052949060_1053474660:dup1.npz -2003-12-31 15:00:00 2004-12-31 15:00:00 1053474660 1054001700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1053474660_1054001700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1053474660_1054001700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1053474660_1054001700.npz -2004-12-31 15:00:00 2005-02-16 15:00:00 1054001700 1054069380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054001700_1054527300.npz -2005-02-16 15:00:00 2005-02-16 16:00:00 1054069380 1054069440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054001700_1054527300.npz'] -2005-02-17 03:00:00 2005-12-31 15:00:00 1054070100 1054527300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054001700_1054527300.npz -2005-12-31 15:00:00 2006-10-28 16:00:00 1054527300 1054960800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054527300_1055052900.npz -2006-11-01 06:00:00 2006-11-01 07:00:00 1054965960 1054966020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054527300_1055052900:dup1.npz'] -2006-11-01 07:00:00 2006-11-01 08:00:00 1054966020 1054966080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054527300_1055052900.npz'] -2006-11-01 08:00:00 2006-12-31 15:00:00 1054966080 1055052900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1054527300_1055052900.npz -2006-12-31 15:00:00 2007-12-31 15:00:00 1055052900 1055578500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1055052900_1055578500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1055052900_1055578500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1055052900_1055578500.npz -2007-12-31 15:00:00 2008-12-30 10:00:00 1055578500 1056103800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1055578500_1056105540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1055578500_1056105540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1055578500_1056105540.npz -2008-12-30 23:00:00 2008-12-31 00:00:00 1056104580 1056104640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1055578500_1056105540.npz'] -2008-12-31 00:00:00 2008-12-31 15:00:00 1056104640 1056105540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1055578500_1056105540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1055578500_1056105540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1055578500_1056105540.npz -2008-12-31 15:00:00 2009-12-31 15:00:00 1056105540 1056631140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056105540_1056631140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056105540_1056631140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056105540_1056631140.npz -2009-12-31 15:00:00 2010-05-12 22:00:00 1056631140 1056821640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-05-12 22:00:00 2010-05-12 23:00:00 1056821640 1056821700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-05-12 23:00:00 2010-05-13 20:00:00 1056821700 1056822960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-05-13 20:00:00 2010-05-13 21:00:00 1056822960 1056823020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -2010-05-13 21:00:00 2010-05-13 22:00:00 1056823020 1056823080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-05-13 22:00:00 2010-05-14 20:00:00 1056823080 1056824400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-05-14 20:00:00 2010-05-14 21:00:00 1056824400 1056824460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -2010-05-14 21:00:00 2010-05-14 22:00:00 1056824460 1056824520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-05-14 22:00:00 2010-05-14 23:00:00 1056824520 1056824580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-05-14 23:00:00 2010-05-15 00:00:00 1056824580 1056824640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-05-15 00:00:00 2010-05-15 20:00:00 1056824640 1056825840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-05-15 20:00:00 2010-05-15 21:00:00 1056825840 1056825900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -2010-05-15 21:00:00 2010-05-16 00:00:00 1056825900 1056826080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-05-16 00:00:00 2010-05-16 22:00:00 1056826080 1056827400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-05-16 22:00:00 2010-05-16 23:00:00 1056827400 1056827460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-05-16 23:00:00 2010-05-17 19:00:00 1056827460 1056828660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-05-17 19:00:00 2010-05-17 20:00:00 1056828660 1056828720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-05-17 20:00:00 2010-05-17 21:00:00 1056828720 1056828780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -2010-05-17 21:00:00 2010-05-18 22:00:00 1056828780 1056830280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-05-18 22:00:00 2010-05-18 23:00:00 1056830280 1056830340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-05-18 23:00:00 2010-05-19 20:00:00 1056830340 1056831600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-05-19 20:00:00 2010-05-19 21:00:00 1056831600 1056831660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -2010-05-19 21:00:00 2010-05-19 22:00:00 1056831660 1056831720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-05-19 22:00:00 2010-05-19 23:00:00 1056831720 1056831780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-05-19 23:00:00 2010-05-26 19:00:00 1056831780 1056841620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-05-26 19:00:00 2010-05-26 20:00:00 1056841620 1056841680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-05-26 20:00:00 2010-12-21 09:00:00 1056841680 1057141980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-12-21 09:00:00 2010-12-21 10:00:00 1057141980 1057142040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-12-21 12:00:00 2010-12-21 20:00:00 1057142160 1057142640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-12-21 20:00:00 2010-12-21 21:00:00 1057142640 1057142700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-12-21 21:00:00 2010-12-24 02:00:00 1057142700 1057145880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-12-24 02:00:00 2010-12-24 03:00:00 1057145880 1057145940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz'] -2010-12-24 03:00:00 2010-12-31 15:00:00 1057145940 1057156740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1056631140_1057156740.npz -2010-12-31 15:00:00 2011-12-31 15:00:00 1057156740 1057682340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1057156740_1057682340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1057156740_1057682340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1057156740_1057682340.npz -2011-12-31 15:00:00 2012-12-31 15:00:00 1057682340 1058209380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1057682340_1058209380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1057682340_1058209380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1057682340_1058209380.npz -2012-12-31 15:00:00 2013-12-31 15:00:00 1058209380 1058734980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1058209380_1058734980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1058209380_1058734980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1058209380_1058734980.npz -2013-12-31 15:00:00 2014-12-31 15:00:00 1058734980 1059260580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1058734980_1059260580.npz -2014-12-31 15:00:00 2015-01-13 01:00:00 1059260580 1059278460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180:dup1.npz -2015-01-13 01:00:00 2015-01-13 02:00:00 1059278460 1059278520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180:dup1.npz'] -2015-01-13 02:00:00 2015-02-22 20:00:00 1059278520 1059337200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180:dup1.npz -2015-02-22 20:00:00 2015-02-22 21:00:00 1059337200 1059337260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180:dup1.npz'] -2015-02-22 21:00:00 2015-10-24 22:00:00 1059337260 1059688680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180:dup1.npz -2015-10-24 22:00:00 2015-10-24 23:00:00 1059688680 1059688740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180:dup1.npz'] -2015-10-24 23:00:00 2015-12-31 15:00:00 1059688740 1059786180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059260580_1059786180:dup1.npz -2015-12-31 15:00:00 2016-12-31 15:00:00 1059786180 1060313220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1059786180_1060313220.npz'] -2016-12-31 15:00:00 2017-12-31 15:00:00 1060313220 1060838820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1060313220_1060838820.npz'] -2019-12-31 15:00:00 2020-12-31 15:00:00 1061890020 1062417060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1061890020_1062417060.npz -2020-12-31 15:00:00 2021-01-03 13:00:00 1062417060 1062421260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1062417060_1062677760.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1062417060_1062677760:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1062417060_1062677760.npz -2021-01-03 13:00:00 2021-01-03 14:00:00 1062421260 1062421320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1062417060_1062677760.npz'] -2021-01-03 14:00:00 2021-06-30 16:00:00 1062421320 1062677760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1062417060_1062677760.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1062417060_1062677760:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/359_CL(IMC)_1062417060_1062677760.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.7399628678957622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_35_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_35_CL(IMC).out deleted file mode 100644 index 000cb764d534a24bd44490af7aa2d3df7dbdd885..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_35_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -35_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2020-07-29 15:00:00 2020-12-31 13:00:00 1062193860 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/35_CL(IMC)_1062193860_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/35_CL(IMC)_1062193860_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/35_CL(IMC)_1062193860_1062416940.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0075692852338155115 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_360_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_360_CL(IMC).out deleted file mode 100644 index dc8a8f3ad5dd555cfb431450c8d22d6b4fbce09f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_360_CL(IMC).out +++ /dev/null @@ -1,93 +0,0 @@ -360_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2000-03-08 06:00:00 2000-12-31 15:00:00 1051468200 1051897860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1051468200_1051897860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1051468200_1051897860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1051468200_1051897860.npz -'StationConcatenate' object has no attribute 'existing_data' -2000-12-31 15:00:00 2001-12-31 15:00:00 1051897860 1052423460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1051897860_1052423460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1051897860_1052423460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1051897860_1052423460.npz -2001-12-31 15:00:00 2002-12-31 15:00:00 1052423460 1052949060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1052423460_1052949060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1052423460_1052949060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1052423460_1052949060.npz -2002-12-31 15:00:00 2003-12-31 15:00:00 1052949060 1053474660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1052949060_1053474660.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1052949060_1053474660:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1052949060_1053474660.npz -2003-12-31 15:00:00 2004-08-08 19:00:00 1053474660 1053793140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1053474660_1054001700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1053474660_1054001700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1053474660_1054001700.npz -2004-08-08 19:00:00 2004-08-08 20:00:00 1053793140 1053793200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1053474660_1054001700.npz'] -2004-08-08 20:00:00 2004-12-31 15:00:00 1053793200 1054001700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1053474660_1054001700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1053474660_1054001700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1053474660_1054001700.npz -2004-12-31 15:00:00 2005-12-13 04:00:00 1054001700 1054500720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1054001700_1054500720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1054001700_1054500720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1054001700_1054500720.npz -2006-01-06 08:00:00 2006-12-31 15:00:00 1054535520 1055052900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1054535520_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1054535520_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1054535520_1055052900.npz -2006-12-31 15:00:00 2007-01-01 22:00:00 1055052900 1055054760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1055052900_1055578500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1055052900_1055578500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1055052900_1055578500.npz -2007-01-01 22:00:00 2007-01-01 23:00:00 1055054760 1055054820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1055052900_1055578500.npz'] -2007-01-01 23:00:00 2007-12-31 15:00:00 1055054820 1055578500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1055052900_1055578500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1055052900_1055578500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1055052900_1055578500.npz -2007-12-31 15:00:00 2008-12-31 15:00:00 1055578500 1056105540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1055578500_1056105540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1055578500_1056105540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1055578500_1056105540.npz -2008-12-31 15:00:00 2009-12-31 15:00:00 1056105540 1056631140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056105540_1056631140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056105540_1056631140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056105540_1056631140.npz -2009-12-31 15:00:00 2010-09-01 04:00:00 1056631140 1056981840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740.npz -2010-09-01 04:00:00 2010-09-01 05:00:00 1056981840 1056981900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740.npz'] -2010-09-01 05:00:00 2010-09-07 04:00:00 1056981900 1056990480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740.npz -2010-09-07 04:00:00 2010-09-07 05:00:00 1056990480 1056990540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740.npz'] -2010-09-07 05:00:00 2010-11-16 03:00:00 1056990540 1057091220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740.npz -2010-11-16 03:00:00 2010-11-16 04:00:00 1057091220 1057091280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740.npz'] -2010-11-16 04:00:00 2010-12-31 15:00:00 1057091280 1057156740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1056631140_1057156740.npz -2010-12-31 15:00:00 2011-03-29 20:00:00 1057156740 1057283760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1057156740_1057682340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1057156740_1057682340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1057156740_1057682340:dup1.npz -2011-03-29 20:00:00 2011-03-29 21:00:00 1057283760 1057283820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1057156740_1057682340:dup1.npz'] -2011-03-29 21:00:00 2011-12-31 15:00:00 1057283820 1057682340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1057156740_1057682340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1057156740_1057682340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1057156740_1057682340:dup1.npz -2011-12-31 15:00:00 2012-12-31 04:00:00 1057682340 1058208720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1057682340_1058208720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1057682340_1058208720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1057682340_1058208720.npz -2013-01-02 04:00:00 2013-12-31 15:00:00 1058211600 1058734980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1058211600_1058734980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1058211600_1058734980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1058211600_1058734980.npz -2013-12-31 15:00:00 2014-12-31 15:00:00 1058734980 1059260580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1058734980_1059260580.npz -2014-12-31 15:00:00 2015-12-31 15:00:00 1059260580 1059786180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1059260580_1059786180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1059260580_1059786180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1059260580_1059786180.npz -2015-12-31 16:00:00 2016-12-31 15:00:00 1059786240 1060313220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1059786240_1060313220.npz'] -2016-12-31 15:00:00 2017-12-31 15:00:00 1060313220 1060838820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1060313220_1060838820.npz'] -2019-12-31 15:00:00 2020-02-28 18:00:00 1061890020 1061975160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1061890020_1062417060.npz -2020-02-28 18:00:00 2020-02-28 19:00:00 1061975160 1061975220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1061890020_1062417060.npz'] -2020-02-28 19:00:00 2020-05-11 21:00:00 1061975220 1062080460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1061890020_1062417060.npz -2020-05-11 21:00:00 2020-05-11 22:00:00 1062080460 1062080520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1061890020_1062417060:dup1.npz'] -2020-05-11 22:00:00 2020-12-31 15:00:00 1062080520 1062417060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1061890020_1062417060.npz -2020-12-31 15:00:00 2021-06-30 16:00:00 1062417060 1062677760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1062417060_1062677760.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1062417060_1062677760:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/360_CL(IMC)_1062417060_1062677760.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.48857394059499104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_361_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_361_CL(IMC).out deleted file mode 100644 index 522a09f877ce9a7a8fe5f7fac439dddea1f9f608..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_361_CL(IMC).out +++ /dev/null @@ -1,117 +0,0 @@ -361_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1995-12-31 16:00:00 1996-12-31 15:00:00 1049267040 1049794020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1049267040_1049794020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1049267040_1049794020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1049267040_1049794020.npz -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 15:00:00 1997-12-31 15:00:00 1049794020 1050319620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1049794020_1050319620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1049794020_1050319620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1049794020_1050319620.npz -1997-12-31 15:00:00 1998-06-03 22:00:00 1050319620 1050541800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050319620_1050845220.npz -1998-06-04 02:00:00 1998-06-04 03:00:00 1050542040 1050542100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050319620_1050845220.npz'] -1998-06-04 03:00:00 1998-12-10 23:00:00 1050542100 1050815460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050319620_1050845220.npz -1998-12-10 23:00:00 1998-12-11 00:00:00 1050815460 1050815520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050319620_1050845220:dup1.npz'] -1998-12-11 00:00:00 1998-12-31 15:00:00 1050815520 1050845220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050319620_1050845220.npz -1998-12-31 15:00:00 1999-08-11 03:00:00 1050845220 1051165620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050845220_1051370820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050845220_1051370820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050845220_1051370820.npz -1999-08-11 03:00:00 1999-08-11 05:00:00 1051165620 1051165740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050845220_1051370820.npz'] -1999-08-11 05:00:00 1999-12-31 15:00:00 1051165740 1051370820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050845220_1051370820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050845220_1051370820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1050845220_1051370820.npz -1999-12-31 15:00:00 2000-12-31 15:00:00 1051370820 1051897860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1051370820_1051897860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1051370820_1051897860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1051370820_1051897860.npz -2000-12-31 15:00:00 2001-12-31 15:00:00 1051897860 1052423460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1051897860_1052423460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1051897860_1052423460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1051897860_1052423460.npz -2001-12-31 15:00:00 2002-03-02 19:00:00 1052423460 1052511540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052423460_1052949060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052423460_1052949060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052423460_1052949060.npz -2002-03-05 06:00:00 2002-03-06 22:00:00 1052515080 1052517480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052423460_1052949060.npz'] -2002-03-08 03:00:00 2002-04-10 01:00:00 1052519220 1052566620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052423460_1052949060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052423460_1052949060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052423460_1052949060.npz -2002-04-10 01:00:00 2002-04-10 03:00:00 1052566620 1052566740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052423460_1052949060.npz'] -2002-04-10 03:00:00 2002-12-31 15:00:00 1052566740 1052949060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052423460_1052949060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052423460_1052949060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052423460_1052949060.npz -2002-12-31 15:00:00 2003-12-31 15:00:00 1052949060 1053474660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052949060_1053474660.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052949060_1053474660:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1052949060_1053474660.npz -2003-12-31 15:00:00 2004-07-11 16:00:00 1053474660 1053752640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1053474660_1054001640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1053474660_1054001640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1053474660_1054001640:dup1.npz -2004-07-11 16:00:00 2004-10-27 03:00:00 1053752640 1053907380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1053474660_1054001640:dup1.npz'] -2004-10-27 07:00:00 2004-11-04 02:00:00 1053907620 1053918840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1053474660_1054001640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1053474660_1054001640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1053474660_1054001640:dup1.npz -2004-11-04 04:00:00 2004-11-04 07:00:00 1053918960 1053919140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1053474660_1054001640.npz'] -2004-11-04 07:00:00 2004-12-31 14:00:00 1053919140 1054001640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1053474660_1054001640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1053474660_1054001640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1053474660_1054001640:dup1.npz -2005-01-04 16:00:00 2005-10-23 02:00:00 1054007520 1054427160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054007520_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054007520_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054007520_1054527300.npz -2005-10-23 02:00:00 2005-10-23 03:00:00 1054427160 1054427220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054007520_1054527300.npz'] -2005-10-23 03:00:00 2005-10-25 00:00:00 1054427220 1054429920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054007520_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054007520_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054007520_1054527300.npz -2005-10-26 12:00:00 2005-10-26 15:00:00 1054432080 1054432260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054007520_1054527300.npz'] -2005-10-26 15:00:00 2005-12-31 15:00:00 1054432260 1054527300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054007520_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054007520_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054007520_1054527300.npz -2005-12-31 15:00:00 2006-12-31 15:00:00 1054527300 1055052900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1054527300_1055052900.npz -2006-12-31 15:00:00 2007-12-31 15:00:00 1055052900 1055578500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1055052900_1055578500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1055052900_1055578500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1055052900_1055578500.npz -2007-12-31 15:00:00 2008-12-31 15:00:00 1055578500 1056105540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1055578500_1056105540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1055578500_1056105540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1055578500_1056105540.npz -2008-12-31 15:00:00 2009-12-31 15:00:00 1056105540 1056631140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1056105540_1056631140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1056105540_1056631140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1056105540_1056631140.npz -2009-12-31 15:00:00 2010-12-13 20:00:00 1056631140 1057131120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1056631140_1057156740.npz -2010-12-13 20:00:00 2010-12-13 21:00:00 1057131120 1057131180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1056631140_1057156740.npz'] -2010-12-13 21:00:00 2010-12-31 15:00:00 1057131180 1057156740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1056631140_1057156740.npz -2010-12-31 15:00:00 2011-12-31 15:00:00 1057156740 1057682340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1057156740_1057682340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1057156740_1057682340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1057156740_1057682340.npz -2011-12-31 15:00:00 2012-12-31 15:00:00 1057682340 1058209380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1057682340_1058209380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1057682340_1058209380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1057682340_1058209380.npz -2012-12-31 15:00:00 2013-12-31 15:00:00 1058209380 1058734980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1058209380_1058734980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1058209380_1058734980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1058209380_1058734980.npz -2013-12-31 15:00:00 2014-12-31 15:00:00 1058734980 1059260580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1058734980_1059260580.npz -2014-12-31 15:00:00 2015-12-31 15:00:00 1059260580 1059786180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1059260580_1059786180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1059260580_1059786180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1059260580_1059786180.npz -2015-12-31 15:00:00 2016-12-31 15:00:00 1059786180 1060313220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1059786180_1060313220.npz'] -2016-12-31 15:00:00 2017-12-31 15:00:00 1060313220 1060838820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1060313220_1060838820.npz'] -2019-12-31 15:00:00 2020-06-06 22:00:00 1061890020 1062117960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1061890020_1062417060.npz -2020-06-06 22:00:00 2020-06-06 23:00:00 1062117960 1062118020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1061890020_1062417060.npz'] -2020-06-06 23:00:00 2020-12-31 15:00:00 1062118020 1062417060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1061890020_1062417060.npz -2020-12-31 15:00:00 2021-06-30 16:00:00 1062417060 1062677760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1062417060_1062677760.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1062417060_1062677760:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/361_CL(IMC)_1062417060_1062677760.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.6532509684562683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_363_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_363_CL(IMC).out deleted file mode 100644 index 87910badafa01a68eef36208de41dc1a55da541e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_363_CL(IMC).out +++ /dev/null @@ -1,133 +0,0 @@ -363_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1995-12-31 16:00:00 1996-12-23 18:00:00 1049267040 1049782680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049267040_1049782680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049267040_1049782680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049267040_1049782680.npz -'StationConcatenate' object has no attribute 'existing_data' -1997-02-18 04:00:00 1997-12-04 01:00:00 1049863920 1050279900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049863920_1050319620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049863920_1050319620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049863920_1050319620.npz -1997-12-04 01:00:00 1997-12-04 03:00:00 1050279900 1050280020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049863920_1050319620.npz'] -1997-12-04 03:00:00 1997-12-05 01:00:00 1050280020 1050281340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049863920_1050319620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049863920_1050319620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049863920_1050319620.npz -1997-12-05 01:00:00 1997-12-05 03:00:00 1050281340 1050281460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049863920_1050319620:dup1.npz'] -1997-12-05 03:00:00 1997-12-31 15:00:00 1050281460 1050319620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049863920_1050319620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049863920_1050319620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1049863920_1050319620.npz -1997-12-31 15:00:00 1998-06-27 05:00:00 1050319620 1050575340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050319620_1050845220:dup1.npz -1998-06-27 05:00:00 1998-06-27 07:00:00 1050575340 1050575460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050319620_1050845220:dup1.npz'] -1998-06-27 07:00:00 1998-08-26 21:00:00 1050575460 1050662700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050319620_1050845220:dup1.npz -1998-08-26 21:00:00 1998-08-26 22:00:00 1050662700 1050662760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050319620_1050845220:dup1.npz'] -1998-08-26 22:00:00 1998-12-31 15:00:00 1050662760 1050845220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050319620_1050845220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050319620_1050845220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050319620_1050845220:dup1.npz -1998-12-31 15:00:00 1999-12-31 15:00:00 1050845220 1051370820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050845220_1051370820.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050845220_1051370820:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1050845220_1051370820.npz -1999-12-31 15:00:00 2000-12-31 15:00:00 1051370820 1051897860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1051370820_1051897860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1051370820_1051897860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1051370820_1051897860.npz -2000-12-31 15:00:00 2001-12-31 15:00:00 1051897860 1052423460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1051897860_1052423460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1051897860_1052423460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1051897860_1052423460.npz -2001-12-31 15:00:00 2002-12-31 15:00:00 1052423460 1052949060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1052423460_1052949060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1052423460_1052949060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1052423460_1052949060.npz -2002-12-31 15:00:00 2003-12-31 15:00:00 1052949060 1053474660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1052949060_1053474660.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1052949060_1053474660:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1052949060_1053474660.npz -2003-12-31 15:00:00 2004-12-31 15:00:00 1053474660 1054001700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1053474660_1054001700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1053474660_1054001700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1053474660_1054001700.npz -2004-12-31 15:00:00 2005-01-12 08:00:00 1054001700 1054018560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054001700_1054527300.npz -2005-01-12 08:00:00 2005-01-12 10:00:00 1054018560 1054018680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054001700_1054527300.npz'] -2005-01-12 10:00:00 2005-12-31 15:00:00 1054018680 1054527300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054001700_1054527300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054001700_1054527300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054001700_1054527300.npz -2005-12-31 15:00:00 2006-07-06 04:00:00 1054527300 1054795920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054527300_1055052900.npz -2006-07-06 04:00:00 2006-07-07 02:00:00 1054795920 1054797240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054527300_1055052900.npz'] -2006-07-07 02:00:00 2006-12-31 15:00:00 1054797240 1055052900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054527300_1055052900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054527300_1055052900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1054527300_1055052900.npz -2006-12-31 15:00:00 2007-07-14 16:00:00 1055052900 1055333760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1055052900_1055578500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1055052900_1055578500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1055052900_1055578500.npz -2007-07-14 16:00:00 2007-10-10 16:00:00 1055333760 1055460480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1055052900_1055578500.npz'] -2007-10-10 16:00:00 2007-12-31 15:00:00 1055460480 1055578500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1055052900_1055578500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1055052900_1055578500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1055052900_1055578500.npz -2007-12-31 15:00:00 2008-12-31 15:00:00 1055578500 1056105540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1055578500_1056105540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1055578500_1056105540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1055578500_1056105540.npz -2008-12-31 15:00:00 2009-12-31 15:00:00 1056105540 1056631140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056105540_1056631140.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056105540_1056631140:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056105540_1056631140.npz -2009-12-31 15:00:00 2010-08-30 20:00:00 1056631140 1056979920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740.npz -2010-08-30 20:00:00 2010-08-30 21:00:00 1056979920 1056979980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740.npz'] -2010-08-30 21:00:00 2010-09-23 05:00:00 1056979980 1057013580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740.npz -2010-09-23 05:00:00 2010-09-23 06:00:00 1057013580 1057013640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740.npz'] -2010-09-23 06:00:00 2010-11-22 00:00:00 1057013640 1057099680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740.npz -2010-11-22 00:00:00 2010-11-22 01:00:00 1057099680 1057099740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740.npz'] -2010-11-22 01:00:00 2010-12-31 15:00:00 1057099740 1057156740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1056631140_1057156740.npz -2010-12-31 15:00:00 2011-12-31 15:00:00 1057156740 1057682340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1057156740_1057682340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1057156740_1057682340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1057156740_1057682340.npz -2011-12-31 15:00:00 2012-12-31 15:00:00 1057682340 1058209380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1057682340_1058209380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1057682340_1058209380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1057682340_1058209380.npz -2012-12-31 15:00:00 2013-12-31 15:00:00 1058209380 1058734980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1058209380_1058734980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1058209380_1058734980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1058209380_1058734980.npz -2013-12-31 15:00:00 2014-12-31 15:00:00 1058734980 1059260580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1058734980_1059260580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1058734980_1059260580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1058734980_1059260580.npz -2014-12-31 15:00:00 2015-12-31 15:00:00 1059260580 1059786180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1059260580_1059786180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1059260580_1059786180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1059260580_1059786180.npz -2015-12-31 16:00:00 2016-12-31 15:00:00 1059786240 1060313220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1059786240_1060313220.npz'] -2016-12-31 15:00:00 2017-12-31 15:00:00 1060313220 1060838820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1060313220_1060838820.npz'] -2019-12-31 15:00:00 2020-06-30 19:00:00 1061890020 1062152340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz -2020-06-30 19:00:00 2020-06-30 20:00:00 1062152340 1062152400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz'] -2020-06-30 20:00:00 2020-07-07 12:00:00 1062152400 1062162000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz -2020-07-07 12:00:00 2020-07-07 13:00:00 1062162000 1062162060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz'] -2020-07-07 13:00:00 2020-07-16 03:00:00 1062162060 1062174420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz -2020-07-16 03:00:00 2020-07-16 04:00:00 1062174420 1062174480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz'] -2020-07-16 04:00:00 2020-07-22 16:00:00 1062174480 1062183840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz -2020-07-22 16:00:00 2020-07-22 19:00:00 1062183840 1062184020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz'] -2020-07-22 19:00:00 2020-12-31 15:00:00 1062184020 1062417060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1061890020_1062417060:dup1.npz -2020-12-31 15:00:00 2021-03-16 16:00:00 1062417060 1062525120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1062417060_1062677760.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1062417060_1062677760:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1062417060_1062677760.npz -2021-03-16 16:00:00 2021-03-16 18:00:00 1062525120 1062525240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1062417060_1062677760.npz'] -2021-03-16 18:00:00 2021-06-30 16:00:00 1062525240 1062677760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1062417060_1062677760.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1062417060_1062677760:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/363_CL(IMC)_1062417060_1062677760.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.6896313548088073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_366_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_366_CL(IMC).out deleted file mode 100644 index fb8cb6b5ae924ef8393c295686fe0e813f4882f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_366_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -366_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/366_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/366_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/366_CL(IMC)_1061889900_1062416940.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012573146820068359 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_368_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_368_CL(IMC).out deleted file mode 100644 index 516d1c4818adf401f21d7e771d5326871c40607b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_368_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -368_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2019-12-31 13:00:00 2020-06-28 23:00:00 1061889900 1062149700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/368_CL(IMC)_1061889900_1062149700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/368_CL(IMC)_1061889900_1062149700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/368_CL(IMC)_1061889900_1062149700.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01038732926050822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_369_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_369_CL(IMC).out deleted file mode 100644 index 3ab6f5f500ecaf143b4eac8547dcec6336c984ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_369_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -369_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2019-12-31 13:00:00 2020-03-23 21:00:00 1061889900 1062009900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/369_CL(IMC)_1061889900_1062009900.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/369_CL(IMC)_1061889900_1062009900:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/369_CL(IMC)_1061889900_1062009900.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010503125190734864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_370_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_370_CL(IMC).out deleted file mode 100644 index 2c4e4f90d4e65197740ddb2a8c39ca92e768d8ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_370_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -370_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/370_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/370_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/370_CL(IMC)_1061889900_1062416940.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012323268254597982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_372_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_372_CL(IMC).out deleted file mode 100644 index 535862fcdef93d95d09b1dd490fb4d759f0b9c4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_372_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -372_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/372_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/372_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/372_CL(IMC)_1061889900_1062416940.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012468059857686361 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_373_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_373_CL(IMC).out deleted file mode 100644 index c9f6cfe396a418e0d3aea55f5cd0a9609483408a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_373_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -373_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/373_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/373_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/373_CL(IMC)_1061889900_1062416940.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012552809715270997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_374_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_374_CL(IMC).out deleted file mode 100644 index 86be47a80ab36a3d2d9a64ec8a3d6cfc3d5bae80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_374_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -374_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/374_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/374_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/374_CL(IMC)_1061889900_1062416940.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020527863502502443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_375_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_375_CL(IMC).out deleted file mode 100644 index cd6b29de7d865aca33473903cd187f0aa846efa4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_375_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -375_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/375_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/375_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/375_CL(IMC)_1061889900_1062416940.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009274081389109293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_37_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_37_CL(IMC).out deleted file mode 100644 index 7402b2c06789aaf54aba013288dce5c0ae992c28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_37_CL(IMC).out +++ /dev/null @@ -1,25 +0,0 @@ -37_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2011-11-17 15:00:00 2011-12-31 12:00:00 1057618980 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1057618980_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1057618980_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1057618980_1057682160.npz -'StationConcatenate' object has no attribute 'existing_data' -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 14:00:00 2020-12-31 13:00:00 1061889960 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1061889960_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1061889960_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/37_CL(IMC)_1061889960_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05106131633122762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_3_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_3_CL(IMC).out deleted file mode 100644 index 02b7d377a3ccddb4c6f4ae73b85873bdc70d9d83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_3_CL(IMC).out +++ /dev/null @@ -1,85 +0,0 @@ -3_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-05-15 06:00:00 1996-07-07 01:00:00 1049462280 1049538300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1049462280_1049792520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1049462280_1049792520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1049462280_1049792520:dup1.npz -'StationConcatenate' object has no attribute 'existing_data' -1996-07-07 01:00:00 1996-07-07 02:00:00 1049538300 1049538360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1049462280_1049792520:dup1.npz'] -1996-07-07 02:00:00 1996-12-30 14:00:00 1049538360 1049792520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1049462280_1049792520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1049462280_1049792520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1049462280_1049792520:dup1.npz -1996-12-31 14:00:00 1997-12-31 13:00:00 1049793960 1050319500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1049793960_1050319500.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1049793960_1050319500:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1049793960_1050319500.npz -1997-12-31 13:00:00 1998-12-31 13:00:00 1050319500 1050845100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1050319500_1050845100.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1050319500_1050845100:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1050319500_1050845100.npz -1998-12-31 13:00:00 1999-03-13 01:00:00 1050845100 1050948060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1050845100_1051358700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1050845100_1051358700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1050845100_1051358700:dup1.npz -1999-03-13 01:00:00 1999-03-17 01:00:00 1050948060 1050953820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1050845100_1051358700:dup1.npz'] -1999-03-17 02:00:00 1999-12-23 05:00:00 1050953880 1051358700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1050845100_1051358700.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1050845100_1051358700:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1050845100_1051358700:dup1.npz -2000-01-04 06:00:00 2000-12-31 13:00:00 1051376040 1051897740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1051376040_1051897740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1051376040_1051897740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1051376040_1051897740.npz -2000-12-31 13:00:00 2001-12-31 13:00:00 1051897740 1052423340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1051897740_1052423340.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1051897740_1052423340:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1051897740_1052423340.npz -2001-12-31 13:00:00 2002-12-31 13:00:00 1052423340 1052948940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052423340_1052948940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052423340_1052948940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052423340_1052948940.npz -2002-12-31 13:00:00 2003-09-19 14:00:00 1052948940 1053326280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz -2003-09-19 14:00:00 2003-09-20 03:00:00 1053326280 1053327060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz'] -2003-09-20 03:00:00 2003-09-20 10:00:00 1053327060 1053327480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz -2003-09-20 10:00:00 2003-09-21 01:00:00 1053327480 1053328380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz'] -2003-09-21 01:00:00 2003-09-21 14:00:00 1053328380 1053329160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz -2003-09-21 14:00:00 2003-09-22 00:00:00 1053329160 1053329760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz'] -2003-09-22 00:00:00 2003-09-22 07:00:00 1053329760 1053330180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz -2003-09-22 07:00:00 2003-09-23 01:00:00 1053330180 1053331260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz'] -2003-09-23 03:00:00 2003-12-31 13:00:00 1053331380 1053474540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1052948940_1053474540:dup1.npz -2003-12-31 13:00:00 2004-12-31 13:00:00 1053474540 1054001580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1053474540_1054001580.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1053474540_1054001580:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1053474540_1054001580.npz -2004-12-31 13:00:00 2005-12-31 13:00:00 1054001580 1054527180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1054001580_1054527180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1054001580_1054527180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1054001580_1054527180.npz -2005-12-31 13:00:00 2006-12-31 13:00:00 1054527180 1055052780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1054527180_1055052780.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1054527180_1055052780:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1054527180_1055052780.npz -2006-12-31 13:00:00 2007-12-31 13:00:00 1055052780 1055578380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1055052780_1055578380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1055052780_1055578380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1055052780_1055578380.npz -2007-12-31 13:00:00 2008-12-31 13:00:00 1055578380 1056105420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1055578380_1056105420.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1055578380_1056105420:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1055578380_1056105420.npz -2008-12-31 13:00:00 2009-12-31 13:00:00 1056105420 1056631020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1056105420_1056631020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1056105420_1056631020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1056105420_1056631020.npz -2009-12-31 13:00:00 2010-12-31 13:00:00 1056631020 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1056631020_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1056631020_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1056631020_1057156620.npz -2010-12-31 13:00:00 2011-12-31 13:00:00 1057156620 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1057156620_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1057156620_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1057156620_1057682220.npz -2011-12-31 13:00:00 2011-12-31 14:00:00 1057682220 1057682280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1057682220_1057682280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1057682220_1058209260.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1057682220_1058209260.npz -2011-12-31 20:00:00 2012-12-31 13:00:00 1057682640 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1057682220_1058209260.npz'] -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1058209320_1058734860.npz'] -2013-12-31 19:00:00 2014-12-31 12:00:00 1058735220 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1058735220_1059260400.npz'] -2014-12-31 13:00:00 2015-12-31 13:00:00 1059260460 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1059260460_1059786060.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/3_CL(IMC)_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.3004987915356954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_40_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_40_CL(IMC).out deleted file mode 100644 index 7ab4513cc15be3f0b04b448313a8a812a6c04584..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_40_CL(IMC).out +++ /dev/null @@ -1,92 +0,0 @@ -40_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1048215660_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1048215660_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1048215660_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1049266800_1049793840.npz -1996-12-31 12:00:00 1997-02-10 15:00:00 1049793840 1049853060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1049793840_1050319440:dup1.npz -1997-02-10 17:00:00 1997-02-18 15:00:00 1049853180 1049864580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1049793840_1050319440:dup1.npz'] -1997-02-25 17:00:00 1997-12-31 12:00:00 1049874780 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1049793840_1050319440:dup1.npz -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-06-14 02:00:00 1051897680 1052134680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1051897680_1052423280.npz -2001-06-14 02:00:00 2001-06-14 13:00:00 1052134680 1052135340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1051897680_1052423280.npz'] -2001-06-14 13:00:00 2001-12-31 12:00:00 1052135340 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-04-15 01:00:00 1052423280 1052573820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052423280_1052948880:dup1.npz -2002-04-15 01:00:00 2002-04-15 02:00:00 1052573820 1052573880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052423280_1052948880:dup1.npz'] -2002-04-15 02:00:00 2002-11-19 19:00:00 1052573880 1052888820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052423280_1052948880:dup1.npz -2002-11-19 19:00:00 2002-11-19 20:00:00 1052888820 1052888880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052423280_1052948880:dup1.npz'] -2002-11-19 20:00:00 2002-12-31 12:00:00 1052888880 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052423280_1052948880:dup1.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-26 20:00:00 1055052720 1055571600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1055052720_1055571600.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1055052720_1055571600:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1055052720_1055571600.npz -2008-01-09 15:00:00 2008-12-31 11:00:00 1055591460 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1055591460_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1055591460_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1055591460_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-30 20:00:00 1059786000 1060312080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1059786000_1060312080.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/40_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.3169144749641418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_41_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_41_CL(IMC).out deleted file mode 100644 index 0ea47609b92bceada3214caba2e979d8abb4f66a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_41_CL(IMC).out +++ /dev/null @@ -1,89 +0,0 @@ -41_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-04-12 04:00:00 1996-12-31 12:00:00 1049414640 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1049414640_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1049414640_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1049414640_1049793840.npz -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1049793840_1050319440.npz -1997-12-31 13:00:00 1998-03-19 00:00:00 1050319500 1050431040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040:dup1.npz -1998-03-20 13:00:00 1998-03-20 20:00:00 1050433260 1050433680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040:dup1.npz'] -1998-04-02 13:00:00 1998-10-27 02:00:00 1050451980 1050750840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040:dup1.npz -1998-10-27 02:00:00 1998-10-27 03:00:00 1050750840 1050750900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040.npz'] -1998-10-27 03:00:00 1998-12-30 00:00:00 1050750900 1050842880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040:dup1.npz -1998-12-30 00:00:00 1998-12-30 01:00:00 1050842880 1050842940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040:dup1.npz'] -1998-12-30 01:00:00 1998-12-31 12:00:00 1050842940 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050319500_1050845040:dup1.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-09-27 03:00:00 1052423280 1052811540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1052423280_1052948880.npz -2002-09-27 03:00:00 2002-09-27 04:00:00 1052811540 1052811600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1052423280_1052948880.npz'] -2002-09-27 04:00:00 2002-12-31 12:00:00 1052811600 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-30 15:00:00 1054527120 1055051460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1054527120_1055051460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1054527120_1055051460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1054527120_1055051460.npz -2006-12-31 16:00:00 2007-12-31 11:00:00 1055052960 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1055052960_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1055052960_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1055052960_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1055052960_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1055052960_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1055578260_1056104100.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1055578260_1056104100:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1055052960_1055578320.npz -2007-12-31 12:00:00 2008-12-30 15:00:00 1055578320 1056104100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1055578260_1056104100.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1055578260_1056104100:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1055578260_1056104100.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/41_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.4978862722714742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_42_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_42_CL(IMC).out deleted file mode 100644 index 7be4a95da1b7f0eb9e90a3a17245fc2d7723d39a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_42_CL(IMC).out +++ /dev/null @@ -1,13 +0,0 @@ -42_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2017-11-30 03:00:00 2017-12-31 12:00:00 1060793460 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/42_CL(IMC)_1060793460_1060838640.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2019-12-31 13:00:00 2020-03-17 14:00:00 1061889900 1062000840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/42_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/42_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/42_CL(IMC)_1061889900_1062416940:dup1.npz -2020-03-17 15:00:00 2020-03-17 20:00:00 1062000900 1062001200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/42_CL(IMC)_1061889900_1062416940:dup1.npz'] -2020-03-18 06:00:00 2020-12-31 13:00:00 1062001800 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/42_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/42_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/42_CL(IMC)_1061889900_1062416940:dup1.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.08014767567316691 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_43_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_43_CL(IMC).out deleted file mode 100644 index 3923f2ee6a4e860153a8f7fedb6d8026ba3ed6b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_43_CL(IMC).out +++ /dev/null @@ -1,40 +0,0 @@ -43_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2007-04-19 05:00:00 2007-12-31 11:00:00 1055209260 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1055209260_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1055209260_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1055209260_1055578320.npz -'StationConcatenate' object has no attribute 'existing_data' -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1055209260_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1055209260_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1055209260_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1055578260_1056105300.npz -2008-12-31 15:00:00 2009-12-31 12:00:00 1056105540 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1056105540_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1056105540_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1056105540_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/43_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1885212500890096 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_44_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_44_CL(IMC).out deleted file mode 100644 index b99d4c7a117273ef268a2c7fa2396fe3350486bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_44_CL(IMC).out +++ /dev/null @@ -1,100 +0,0 @@ -44_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-08-11 19:00:00 1994-10-31 12:00:00 1048537140 1048653360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1048537140_1048653360.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1048537140_1048653360:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1048537140_1048653360.npz -'StationConcatenate' object has no attribute 'existing_data' -1995-01-24 13:00:00 1995-12-12 15:00:00 1048775820 1049239620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1048775820_1049239620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1048775820_1049239620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1048775820_1049239620.npz -1995-12-31 12:00:00 1996-12-31 11:00:00 1049266800 1049793780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1049266800_1049793780.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1049266800_1049793780:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1049266800_1049793780.npz -1996-12-31 12:00:00 1997-02-10 15:00:00 1049793840 1049853060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1049793840_1050319440:dup1.npz -1997-02-10 17:00:00 1997-02-11 10:00:00 1049853180 1049854200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1049793840_1050319440:dup1.npz'] -1997-02-11 17:00:00 1997-12-31 12:00:00 1049854620 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1049793840_1050319440:dup1.npz -1997-12-31 12:00:00 1998-04-07 16:00:00 1050319440 1050459360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz -1998-04-07 16:00:00 1998-04-07 19:00:00 1050459360 1050459540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-04-07 19:00:00 1998-08-10 23:00:00 1050459540 1050639780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz -1998-08-10 23:00:00 1998-08-11 01:00:00 1050639780 1050639900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-08-11 01:00:00 1998-12-23 15:00:00 1050639900 1050833700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz -1998-12-23 17:00:00 1998-12-24 15:00:00 1050833820 1050835140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040.npz'] -1998-12-24 17:00:00 1998-12-27 15:00:00 1050835260 1050839460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz -1998-12-27 17:00:00 1998-12-28 15:00:00 1050839580 1050840900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz'] -1998-12-28 17:00:00 1998-12-31 12:00:00 1050841020 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050319440_1050845040:dup1.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-06-11 15:00:00 1052948880 1053182340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1052948880_1053474480.npz -2003-06-11 15:00:00 2003-06-11 16:00:00 1053182340 1053182400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1052948880_1053474480.npz'] -2003-06-11 16:00:00 2003-12-31 12:00:00 1053182400 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-29 12:00:00 1055052720 1055575440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1055052720_1055575440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1055052720_1055575440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1055052720_1055575440.npz -2008-01-04 14:00:00 2008-12-31 11:00:00 1055584200 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1055584200_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1055584200_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1055584200_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-30 20:00:00 1058734860 1059259440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1058734860_1059259440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1058734860_1059259440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1058734860_1059259440.npz -2014-12-31 16:00:00 2015-12-31 12:00:00 1059260640 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1059260640_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1059260640_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1059260640_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/44_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.35748974084854124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_45_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_45_CL(IMC).out deleted file mode 100644 index b79c9078bf866a61b1d8321653cf1913c40926e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_45_CL(IMC).out +++ /dev/null @@ -1,87 +0,0 @@ -45_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1048215660_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1048215660_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1048215660_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1049266800_1049793840.npz -1996-12-31 12:00:00 1997-02-21 15:00:00 1049793840 1049868900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1049793840_1050319440:dup1.npz -1997-02-21 17:00:00 1997-02-23 15:00:00 1049869020 1049871780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1049793840_1050319440:dup1.npz'] -1997-02-23 19:00:00 1997-12-31 12:00:00 1049872020 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1049793840_1050319440:dup1.npz -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-04-13 07:00:00 1051897680 1052045700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1051897680_1052423280:dup1.npz -2001-04-13 07:00:00 2001-04-13 08:00:00 1052045700 1052045760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1051897680_1052423280:dup1.npz'] -2001-04-13 08:00:00 2001-12-31 12:00:00 1052045760 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1051897680_1052423280:dup1.npz -2001-12-31 12:00:00 2002-12-29 21:00:00 1052423280 1052946540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1052423280_1052946540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1052423280_1052946540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1052423280_1052946540.npz -2003-01-07 04:00:00 2003-12-31 12:00:00 1052958480 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1052958480_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1052958480_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1052958480_1053474480.npz -2003-12-31 13:00:00 2004-12-31 11:00:00 1053474540 1054001460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1053474540_1054001460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1053474540_1054001460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1053474540_1054001460.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-29 03:00:00 1054527120 1055049300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1054527120_1055049300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1054527120_1055049300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1054527120_1055049300.npz -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1055052720_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1055052720_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 11:00:00 1057156560 1057682100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1057156560_1057682100.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1057156560_1057682100:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1057156560_1057682100.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/45_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.523011855284373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_46_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_46_CL(IMC).out deleted file mode 100644 index 7ee9f475f5c3bb978dca83e6034f63f8822c5e14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_46_CL(IMC).out +++ /dev/null @@ -1,83 +0,0 @@ -46_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 15:00:00 1994-12-31 12:00:00 1048215780 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1048215780_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1048215780_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1048215780_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-11-26 23:00:00 1049266800 1049744100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1049266800_1049744100.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1049266800_1049744100:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1049266800_1049744100.npz -1997-02-27 17:00:00 1997-12-22 21:00:00 1049877660 1050307020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1049877660_1050307020.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1049877660_1050307020:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1049877660_1050307020.npz -1998-01-07 06:00:00 1998-10-22 01:00:00 1050329160 1050743580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1050329160_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1050329160_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1050329160_1050845040:dup1.npz -1998-10-22 03:00:00 1998-10-22 04:00:00 1050743700 1050743760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1050329160_1050845040:dup1.npz'] -1998-10-22 04:00:00 1998-12-31 12:00:00 1050743760 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1050329160_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1050329160_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1050329160_1050845040:dup1.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1055052720_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1055052720_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 03:00:00 1059786000 1060312500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1059786000_1060312500.npz'] -2017-01-03 01:00:00 2017-12-31 12:00:00 1060316700 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1060316700_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/46_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.4283783634503682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_48_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_48_CL(IMC).out deleted file mode 100644 index 372ffc590a3e674761170c2ad313150f92fe6fd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_48_CL(IMC).out +++ /dev/null @@ -1,25 +0,0 @@ -48_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2011-11-16 15:00:00 2011-12-31 12:00:00 1057617540 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1057617540_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1057617540_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1057617540_1057682160.npz -'StationConcatenate' object has no attribute 'existing_data' -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/48_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05039800802866618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_4_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_4_CL(IMC).out deleted file mode 100644 index a848c0079e324f09198ced77ca0352c58d867813..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_4_CL(IMC).out +++ /dev/null @@ -1,241 +0,0 @@ -4_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2011-12-30 13:30:00 2011-12-30 14:30:00 1057680810 1057680870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057680810_1057680870.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057680810_1057680870:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057680810_1057680870.npz -'StationConcatenate' object has no attribute 'existing_data' -2011-12-31 13:30:00 2012-01-02 13:30:00 1057682250 1057685130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-01-02 13:30:00 2012-01-02 14:30:00 1057685130 1057685190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz'] -2012-01-02 15:30:00 2012-01-02 23:30:00 1057685250 1057685730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-01-02 23:30:00 2012-01-03 13:30:00 1057685730 1057686570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz'] -2012-01-03 13:30:00 2012-01-03 14:30:00 1057686570 1057686630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-01-03 14:30:00 2012-01-04 00:30:00 1057686630 1057687230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz'] -2012-01-04 02:30:00 2012-03-25 13:30:00 1057687350 1057804650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-03-25 13:30:00 2012-03-25 14:30:00 1057804650 1057804710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz'] -2012-03-25 15:30:00 2012-03-26 09:30:00 1057804770 1057805850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-03-26 10:30:00 2012-03-26 13:30:00 1057805910 1057806090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz'] -2012-03-26 13:30:00 2012-03-26 14:30:00 1057806090 1057806150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-03-26 14:30:00 2012-03-26 22:30:00 1057806150 1057806630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz'] -2012-03-26 22:30:00 2012-05-07 23:30:00 1057806630 1057867170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-05-08 00:30:00 2012-05-08 02:30:00 1057867230 1057867350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-05-08 02:30:00 2012-05-19 06:30:00 1057867350 1057883430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-05-19 06:30:00 2012-05-19 08:30:00 1057883430 1057883550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-05-19 08:30:00 2012-05-22 10:30:00 1057883550 1057887990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-05-22 10:30:00 2012-05-22 11:30:00 1057887990 1057888050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-05-22 11:30:00 2012-06-03 14:30:00 1057888050 1057905510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-06-03 23:30:00 2012-06-04 00:30:00 1057906050 1057906110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-06-04 00:30:00 2012-08-18 13:30:00 1057906110 1058014890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-18 13:30:00 2012-08-18 14:30:00 1058014890 1058014950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-18 15:30:00 2012-08-19 10:30:00 1058015010 1058016150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-19 10:30:00 2012-08-19 13:30:00 1058016150 1058016330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-19 13:30:00 2012-08-21 10:30:00 1058016330 1058019030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-21 10:30:00 2012-08-21 11:30:00 1058019030 1058019090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-21 11:30:00 2012-08-21 23:30:00 1058019090 1058019810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-21 23:30:00 2012-08-22 00:30:00 1058019810 1058019870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-22 00:30:00 2012-08-22 14:30:00 1058019870 1058020710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-22 15:30:00 2012-08-22 16:30:00 1058020770 1058020830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-22 16:30:00 2012-08-22 22:30:00 1058020830 1058021190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-22 22:30:00 2012-08-22 23:30:00 1058021190 1058021250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-22 23:30:00 2012-08-24 23:30:00 1058021250 1058024130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-24 23:30:00 2012-08-25 00:30:00 1058024130 1058024190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-25 00:30:00 2012-08-25 13:30:00 1058024190 1058024970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-25 13:30:00 2012-08-25 14:30:00 1058024970 1058025030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-25 14:30:00 2012-08-28 11:30:00 1058025030 1058029170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-28 11:30:00 2012-08-28 12:30:00 1058029170 1058029230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-28 12:30:00 2012-08-29 10:30:00 1058029230 1058030550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-29 10:30:00 2012-08-29 13:30:00 1058030550 1058030730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-29 13:30:00 2012-08-30 10:30:00 1058030730 1058031990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-30 10:30:00 2012-08-30 11:30:00 1058031990 1058032050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-30 11:30:00 2012-08-31 13:30:00 1058032050 1058033610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-08-31 13:30:00 2012-08-31 14:30:00 1058033610 1058033670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-08-31 16:30:00 2012-09-01 00:30:00 1058033790 1058034270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-01 00:30:00 2012-09-01 01:30:00 1058034270 1058034330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-01 01:30:00 2012-09-01 10:30:00 1058034330 1058034870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-01 10:30:00 2012-09-01 11:30:00 1058034870 1058034930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-01 11:30:00 2012-09-01 23:30:00 1058034930 1058035650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-01 23:30:00 2012-09-02 00:30:00 1058035650 1058035710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-02 00:30:00 2012-09-04 13:30:00 1058035710 1058039370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-04 13:30:00 2012-09-04 14:30:00 1058039370 1058039430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-04 16:30:00 2012-09-05 10:30:00 1058039550 1058040630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-05 10:30:00 2012-09-05 11:30:00 1058040630 1058040690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-05 11:30:00 2012-09-06 12:30:00 1058040690 1058042190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-06 12:30:00 2012-09-09 13:30:00 1058042190 1058046570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-09 13:30:00 2012-09-09 14:30:00 1058046570 1058046630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-09 16:30:00 2012-09-09 22:30:00 1058046750 1058047110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-09 23:30:00 2012-09-12 10:30:00 1058047170 1058050710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-12 10:30:00 2012-09-12 11:30:00 1058050710 1058050770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-12 11:30:00 2012-09-13 11:30:00 1058050770 1058052210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-13 11:30:00 2012-09-13 12:30:00 1058052210 1058052270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-13 12:30:00 2012-09-15 11:30:00 1058052270 1058055090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-15 11:30:00 2012-09-15 12:30:00 1058055090 1058055150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-15 12:30:00 2012-09-16 10:30:00 1058055150 1058056470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-16 10:30:00 2012-09-16 11:30:00 1058056470 1058056530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-16 11:30:00 2012-09-16 13:30:00 1058056530 1058056650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-16 13:30:00 2012-09-16 14:30:00 1058056650 1058056710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-16 16:30:00 2012-09-17 11:30:00 1058056830 1058057970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-17 11:30:00 2012-09-17 12:30:00 1058057970 1058058030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-17 12:30:00 2012-09-22 13:30:00 1058058030 1058065290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-22 13:30:00 2012-09-22 14:30:00 1058065290 1058065350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-22 16:30:00 2012-09-23 10:30:00 1058065470 1058066550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-09-23 10:30:00 2012-09-23 11:30:00 1058066550 1058066610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-09-23 11:30:00 2012-10-01 12:30:00 1058066610 1058078190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-10-01 12:30:00 2012-10-01 13:30:00 1058078190 1058078250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-10-01 13:30:00 2012-11-02 20:30:00 1058078250 1058124750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-11-02 20:30:00 2012-11-02 21:30:00 1058124750 1058124810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-11-02 21:30:00 2012-11-07 03:30:00 1058124810 1058130930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-11-07 03:30:00 2012-11-07 04:30:00 1058130930 1058130990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-11-07 05:30:00 2012-12-14 23:30:00 1058131050 1058185410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2012-12-14 23:30:00 2012-12-15 00:30:00 1058185410 1058185470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -2012-12-15 00:30:00 2012-12-24 04:30:00 1058185470 1058198670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1057682250_1058198670:dup1.npz -2013-01-09 13:30:00 2013-03-05 22:30:00 1058222250 1058301990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058222250_1058733450.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058222250_1058733450:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058222250_1058733450.npz -2013-03-06 13:30:00 2013-03-07 13:30:00 1058302890 1058304330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058222250_1058733450.npz'] -2013-03-07 13:30:00 2013-04-14 17:30:00 1058304330 1058359290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058222250_1058733450.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058222250_1058733450:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058222250_1058733450.npz -2013-04-14 17:30:00 2013-04-14 18:30:00 1058359290 1058359350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058222250_1058733450:dup1.npz'] -2013-04-14 18:30:00 2013-12-30 13:30:00 1058359350 1058733450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058222250_1058733450.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058222250_1058733450:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058222250_1058733450.npz -2013-12-31 13:30:00 2014-02-02 23:30:00 1058734890 1058783010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz -2014-02-03 00:30:00 2014-02-03 01:30:00 1058783070 1058783130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490:dup1.npz'] -2014-02-03 01:30:00 2014-08-13 22:30:00 1058783130 1059059430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz -2014-08-13 22:30:00 2014-08-13 23:30:00 1059059430 1059059490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz'] -2014-08-14 00:30:00 2014-10-14 13:30:00 1059059550 1059148170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz -2014-10-14 13:30:00 2014-10-14 14:30:00 1059148170 1059148230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz'] -2014-10-14 16:30:00 2014-10-15 03:30:00 1059148350 1059149010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz -2014-10-15 03:30:00 2014-10-15 04:30:00 1059149010 1059149070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz'] -2014-10-15 06:30:00 2014-10-15 07:30:00 1059149190 1059149250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz -2014-10-15 07:30:00 2014-10-15 08:30:00 1059149250 1059149310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz'] -2014-10-15 09:30:00 2014-10-15 14:30:00 1059149370 1059149670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz -2014-10-15 16:30:00 2014-10-15 21:30:00 1059149790 1059150090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz'] -2014-10-15 21:30:00 2014-10-15 23:30:00 1059150090 1059150210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz -2014-10-15 23:30:00 2014-10-16 00:30:00 1059150210 1059150270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz'] -2014-10-16 00:30:00 2014-10-16 02:30:00 1059150270 1059150390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz -2014-10-16 02:30:00 2014-10-16 03:30:00 1059150390 1059150450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz'] -2014-10-16 03:30:00 2014-10-16 18:30:00 1059150450 1059151350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz -2014-10-16 18:30:00 2014-10-16 19:30:00 1059151350 1059151410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz'] -2014-10-16 19:30:00 2014-12-31 13:30:00 1059151410 1059260490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1058734890_1059260490.npz -2014-12-31 13:30:00 2015-02-18 14:30:00 1059260490 1059331110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059260490_1059786090.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059260490_1059786090:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059260490_1059786090.npz -2015-02-19 01:30:00 2015-02-19 02:30:00 1059331770 1059331830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059260490_1059786090.npz'] -2015-02-19 02:30:00 2015-02-22 09:30:00 1059331830 1059336570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059260490_1059786090.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059260490_1059786090:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059260490_1059786090.npz -2015-02-22 09:30:00 2015-02-22 10:30:00 1059336570 1059336630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059260490_1059786090:dup1.npz'] -2015-02-22 11:30:00 2015-12-31 13:30:00 1059336690 1059786090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059260490_1059786090.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059260490_1059786090:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059260490_1059786090.npz -2015-12-31 13:30:00 2016-12-29 13:30:00 1059786090 1060310250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1059786090_1060310250.npz'] -2017-01-11 13:30:00 2017-12-31 13:30:00 1060328970 1060838730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1060328970_1060838730.npz'] -2019-12-31 13:30:00 2020-12-31 13:30:00 1061889930 1062416970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/4_CL(IMC)_1061889930_1062416970.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.3640909393628438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_51_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_51_CL(IMC).out deleted file mode 100644 index 2253ac2ddfbe1146e0f5a270a88f0e6d4f0bef41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_51_CL(IMC).out +++ /dev/null @@ -1,79 +0,0 @@ -51_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1048215660_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1048215660_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1048215660_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1049266800_1049793840.npz -1996-12-31 13:00:00 1997-12-31 12:00:00 1049793900 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1049793900_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1049793900_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1049793900_1050319440.npz -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1055052720_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1055052720_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 10:00:00 1059786000 1060312920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1059786000_1060312920.npz'] -2016-12-31 12:00:00 2017-12-31 11:00:00 1060313040 1060838580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1060313040_1060838580.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/51_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.4221584439277649 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_529_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_529_CL(IMC).out deleted file mode 100644 index cdbb626c0bfc6a887715c4143cae2f14df048102..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_529_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -529_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006015988190968832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_52_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_52_CL(IMC).out deleted file mode 100644 index 5a72cc64772ceae9994398e977cd0ea78a54843b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_52_CL(IMC).out +++ /dev/null @@ -1,16 +0,0 @@ -52_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2014-10-28 14:00:00 2014-12-31 12:00:00 1059168360 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/52_CL(IMC)_1059168360_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/52_CL(IMC)_1059168360_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/52_CL(IMC)_1059168360_1059260400.npz -'StationConcatenate' object has no attribute 'existing_data' -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/52_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/52_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/52_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/52_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/52_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 14:00:00 2020-12-31 13:00:00 1061889960 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/52_CL(IMC)_1061889960_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/52_CL(IMC)_1061889960_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/52_CL(IMC)_1061889960_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02952739397684733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_530_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_530_CL(IMC).out deleted file mode 100644 index 94c86707f58643a6970934f6dacebae04dc662ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_530_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -530_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0119331161181132 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_534_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_534_CL(IMC).out deleted file mode 100644 index 7d3bf444d1aa8238b227ad75fecbdbe0b7b00a17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_534_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -534_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2020-06-30 15:00:00 2020-12-31 13:00:00 1062152100 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/534_CL(IMC)_1062152100_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/534_CL(IMC)_1062152100_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/534_CL(IMC)_1062152100_1062416940.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016968556245168052 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_540_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_540_CL(IMC).out deleted file mode 100644 index ff80fb02e5f07a40fee8db657a263bd5a9b60cc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_540_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -540_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2020-11-25 23:00:00 2020-12-31 13:00:00 1062365700 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/540_CL(IMC)_1062365700_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/540_CL(IMC)_1062365700_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/540_CL(IMC)_1062365700_1062416940.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004522975285847982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_54_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_54_CL(IMC).out deleted file mode 100644 index dff9b2a6ffee65fb02e9bcc5a1c3467c3e290201..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_54_CL(IMC).out +++ /dev/null @@ -1,80 +0,0 @@ -54_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-02-28 13:00:00 1994-12-31 12:00:00 1048300620 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1048300620_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1048300620_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1048300620_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-30 04:00:00 1048741200 1049264880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1048741200_1049264880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1048741200_1049264880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1048741200_1049264880.npz -1996-05-27 03:00:00 1996-12-31 12:00:00 1049479380 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1049479380_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1049479380_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1049479380_1049793840.npz -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1049793840_1050319440.npz -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-11-22 15:00:00 1052423280 1052892900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1052423280_1052948880:dup1.npz -2002-11-22 16:00:00 2002-11-22 18:00:00 1052892960 1052893080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1052423280_1052948880:dup1.npz'] -2002-11-26 16:00:00 2002-12-31 12:00:00 1052898720 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1052423280_1052948880:dup1.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-10-10 13:00:00 1053474540 1053883500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1053474540_1054001520:dup1.npz -2004-10-10 13:00:00 2004-10-11 13:00:00 1053883500 1053884940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1053474540_1054001520:dup1.npz'] -2004-10-11 13:00:00 2004-12-31 12:00:00 1053884940 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1053474540_1054001520:dup1.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-31 12:00:00 1055052720 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1055052720_1055578320.npz -2007-12-31 15:00:00 2008-12-31 11:00:00 1055578500 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1055578500_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1055578500_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1055578500_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-11-16 21:00:00 1059786000 1060248780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/54_CL(IMC)_1059786000_1060248780.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.286117418607076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_551_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_551_CL(IMC).out deleted file mode 100644 index 0ab08f18a091727e1f635a65873d81dc2bd0f725..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_551_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -551_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006691416104634603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_57_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_57_CL(IMC).out deleted file mode 100644 index 53bb39f6f95f4bdba2d6a15f3b21d6741b877f6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_57_CL(IMC).out +++ /dev/null @@ -1,84 +0,0 @@ -57_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1048215660_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1048215660_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1048215660_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1049266800_1049793840.npz -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1049793840_1050319440.npz -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-03-22 15:00:00 1051897680 1052014500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1051897680_1052421180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1051897680_1052421180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1051897680_1052421180.npz -2001-03-23 16:00:00 2001-03-24 03:00:00 1052016000 1052016660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1051897680_1052421180.npz'] -2001-04-03 16:00:00 2001-12-30 01:00:00 1052031840 1052421180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1051897680_1052421180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1051897680_1052421180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1051897680_1052421180.npz -2002-01-02 16:00:00 2002-08-01 12:00:00 1052426400 1052730000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1052426400_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1052426400_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1052426400_1052948880:dup1.npz -2002-08-01 12:00:00 2002-08-01 15:00:00 1052730000 1052730180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1052426400_1052948880:dup1.npz'] -2002-08-01 16:00:00 2002-12-31 12:00:00 1052730240 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1052426400_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1052426400_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1052426400_1052948880:dup1.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-31 12:00:00 1055052720 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1055052720_1055578320.npz -2007-12-31 15:00:00 2008-12-31 11:00:00 1055578500 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1055578500_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1055578500_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1055578500_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-30 14:00:00 1056630960 1057155240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1056630960_1057155240.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1056630960_1057155240:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1056630960_1057155240.npz -2010-12-31 16:00:00 2011-12-31 12:00:00 1057156800 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1057156800_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1057156800_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1057156800_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/57_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.2540675322214762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_59_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_59_CL(IMC).out deleted file mode 100644 index ddac9ad677ec80a0bd5fd1bc62e965f02a98f491..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_59_CL(IMC).out +++ /dev/null @@ -1,44 +0,0 @@ -59_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1048215660_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1048215660_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1048215660_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-20 15:00:00 1049266800 1049778180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1049266800_1049778180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1049266800_1049778180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1049266800_1049778180.npz -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1049793840_1050319440.npz -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1054001520_1054527120.npz -2005-12-31 12:00:00 2006-06-01 20:00:00 1054527120 1054746480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1054527120_1054746480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1054527120_1054746480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/59_CL(IMC)_1054527120_1054746480.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.10692910750706991 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_5_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_5_CL(IMC).out deleted file mode 100644 index 49a9e50fe7674147a9416f76fed7f911c39cb628..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_5_CL(IMC).out +++ /dev/null @@ -1,1423 +0,0 @@ -5_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2012-07-18 13:30:00 2012-07-19 13:30:00 1057970250 1057971690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2012-07-19 13:30:00 2012-07-19 14:30:00 1057971690 1057971750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-07-19 15:30:00 2012-07-20 02:30:00 1057971810 1057972470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-07-20 04:30:00 2012-08-27 14:30:00 1057972590 1058027910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-08-27 15:30:00 2012-08-27 16:30:00 1058027970 1058028030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-08-27 16:30:00 2012-08-28 14:30:00 1058028030 1058029350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-08-28 15:30:00 2012-08-28 16:30:00 1058029410 1058029470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-08-28 16:30:00 2012-08-29 14:30:00 1058029470 1058030790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-08-29 15:30:00 2012-08-29 16:30:00 1058030850 1058030910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-08-29 16:30:00 2012-08-30 14:30:00 1058030910 1058032230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-08-30 15:30:00 2012-08-30 16:30:00 1058032290 1058032350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-08-30 16:30:00 2012-08-31 14:30:00 1058032350 1058033670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-08-31 15:30:00 2012-08-31 16:30:00 1058033730 1058033790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-08-31 16:30:00 2012-09-01 14:30:00 1058033790 1058035110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-01 15:30:00 2012-09-01 16:30:00 1058035170 1058035230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-01 16:30:00 2012-09-02 14:30:00 1058035230 1058036550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-02 15:30:00 2012-09-02 16:30:00 1058036610 1058036670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-02 16:30:00 2012-09-03 14:30:00 1058036670 1058037990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-03 15:30:00 2012-09-03 16:30:00 1058038050 1058038110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-03 16:30:00 2012-09-04 14:30:00 1058038110 1058039430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-04 15:30:00 2012-09-04 16:30:00 1058039490 1058039550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-04 16:30:00 2012-09-05 14:30:00 1058039550 1058040870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-05 15:30:00 2012-09-05 16:30:00 1058040930 1058040990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-05 16:30:00 2012-09-06 14:30:00 1058040990 1058042310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-06 15:30:00 2012-09-06 16:30:00 1058042370 1058042430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-06 16:30:00 2012-09-07 14:30:00 1058042430 1058043750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-07 15:30:00 2012-09-07 16:30:00 1058043810 1058043870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-07 16:30:00 2012-09-08 14:30:00 1058043870 1058045190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-08 15:30:00 2012-09-08 16:30:00 1058045250 1058045310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-08 16:30:00 2012-09-09 14:30:00 1058045310 1058046630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-09 15:30:00 2012-09-09 16:30:00 1058046690 1058046750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-09 16:30:00 2012-09-10 14:30:00 1058046750 1058048070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-10 15:30:00 2012-09-10 16:30:00 1058048130 1058048190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-10 16:30:00 2012-09-11 14:30:00 1058048190 1058049510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-11 15:30:00 2012-09-11 16:30:00 1058049570 1058049630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-11 16:30:00 2012-09-12 14:30:00 1058049630 1058050950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-12 15:30:00 2012-09-12 16:30:00 1058051010 1058051070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-12 16:30:00 2012-09-13 14:30:00 1058051070 1058052390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-13 15:30:00 2012-09-13 16:30:00 1058052450 1058052510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-13 16:30:00 2012-09-14 14:30:00 1058052510 1058053830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-14 15:30:00 2012-09-14 16:30:00 1058053890 1058053950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-14 16:30:00 2012-09-15 14:30:00 1058053950 1058055270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-15 15:30:00 2012-09-15 16:30:00 1058055330 1058055390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-15 16:30:00 2012-09-16 14:30:00 1058055390 1058056710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-16 15:30:00 2012-09-16 16:30:00 1058056770 1058056830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-16 16:30:00 2012-09-17 14:30:00 1058056830 1058058150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-17 15:30:00 2012-09-17 16:30:00 1058058210 1058058270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-17 16:30:00 2012-09-18 14:30:00 1058058270 1058059590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-18 15:30:00 2012-09-18 16:30:00 1058059650 1058059710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-18 16:30:00 2012-09-19 14:30:00 1058059710 1058061030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-19 15:30:00 2012-09-19 16:30:00 1058061090 1058061150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-19 16:30:00 2012-09-20 14:30:00 1058061150 1058062470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-20 15:30:00 2012-09-20 16:30:00 1058062530 1058062590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-20 16:30:00 2012-09-21 14:30:00 1058062590 1058063910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-21 15:30:00 2012-09-21 16:30:00 1058063970 1058064030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-21 16:30:00 2012-09-22 14:30:00 1058064030 1058065350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-22 15:30:00 2012-09-22 16:30:00 1058065410 1058065470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-22 16:30:00 2012-09-23 14:30:00 1058065470 1058066790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-23 15:30:00 2012-09-23 16:30:00 1058066850 1058066910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-23 16:30:00 2012-09-24 14:30:00 1058066910 1058068230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-24 15:30:00 2012-09-24 16:30:00 1058068290 1058068350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-24 16:30:00 2012-09-25 14:30:00 1058068350 1058069670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-25 15:30:00 2012-09-25 16:30:00 1058069730 1058069790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-25 16:30:00 2012-09-26 14:30:00 1058069790 1058071110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-26 15:30:00 2012-09-26 16:30:00 1058071170 1058071230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-26 16:30:00 2012-09-27 14:30:00 1058071230 1058072550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-27 15:30:00 2012-09-27 16:30:00 1058072610 1058072670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-27 16:30:00 2012-09-28 14:30:00 1058072670 1058073990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-28 15:30:00 2012-09-28 16:30:00 1058074050 1058074110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-28 16:30:00 2012-09-29 14:30:00 1058074110 1058075430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-09-29 15:30:00 2012-09-29 16:30:00 1058075490 1058075550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-09-29 16:30:00 2012-11-30 15:30:00 1058075550 1058164770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-11-30 15:30:00 2012-11-30 16:30:00 1058164770 1058164830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz'] -2012-11-30 16:30:00 2012-12-31 13:30:00 1058164830 1058209290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057971690_1058209290.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1057970250_1058209290.npz -2012-12-31 13:30:00 2013-01-31 15:30:00 1058209290 1058254050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-01-31 15:30:00 2013-01-31 16:30:00 1058254050 1058254110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-01-31 16:30:00 2013-02-01 14:30:00 1058254110 1058255430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-01 15:30:00 2013-02-01 16:30:00 1058255490 1058255550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-01 16:30:00 2013-02-02 14:30:00 1058255550 1058256870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-02 15:30:00 2013-02-02 16:30:00 1058256930 1058256990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-02 16:30:00 2013-02-03 14:30:00 1058256990 1058258310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-03 15:30:00 2013-02-03 16:30:00 1058258370 1058258430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-03 16:30:00 2013-02-04 14:30:00 1058258430 1058259750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-04 15:30:00 2013-02-04 16:30:00 1058259810 1058259870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-04 16:30:00 2013-02-05 14:30:00 1058259870 1058261190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-05 15:30:00 2013-02-05 16:30:00 1058261250 1058261310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-05 16:30:00 2013-02-06 14:30:00 1058261310 1058262630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-06 15:30:00 2013-02-06 16:30:00 1058262690 1058262750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-06 16:30:00 2013-02-07 14:30:00 1058262750 1058264070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-07 15:30:00 2013-02-07 16:30:00 1058264130 1058264190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-07 16:30:00 2013-02-08 14:30:00 1058264190 1058265510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-08 15:30:00 2013-02-08 16:30:00 1058265570 1058265630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-08 16:30:00 2013-02-09 14:30:00 1058265630 1058266950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-09 15:30:00 2013-02-09 16:30:00 1058267010 1058267070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-09 16:30:00 2013-02-10 14:30:00 1058267070 1058268390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-10 15:30:00 2013-02-10 16:30:00 1058268450 1058268510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-10 16:30:00 2013-02-11 14:30:00 1058268510 1058269830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-11 15:30:00 2013-02-11 16:30:00 1058269890 1058269950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-11 16:30:00 2013-02-12 14:30:00 1058269950 1058271270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-12 15:30:00 2013-02-12 16:30:00 1058271330 1058271390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-12 16:30:00 2013-02-13 14:30:00 1058271390 1058272710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-13 15:30:00 2013-02-13 16:30:00 1058272770 1058272830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-13 16:30:00 2013-02-14 14:30:00 1058272830 1058274150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-14 15:30:00 2013-02-14 16:30:00 1058274210 1058274270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-14 16:30:00 2013-02-15 14:30:00 1058274270 1058275590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-15 15:30:00 2013-02-15 16:30:00 1058275650 1058275710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-15 16:30:00 2013-02-16 14:30:00 1058275710 1058277030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-16 15:30:00 2013-02-16 16:30:00 1058277090 1058277150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-16 16:30:00 2013-02-17 14:30:00 1058277150 1058278470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-17 15:30:00 2013-02-17 16:30:00 1058278530 1058278590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-17 16:30:00 2013-02-18 14:30:00 1058278590 1058279910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-18 15:30:00 2013-02-18 16:30:00 1058279970 1058280030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-18 16:30:00 2013-02-19 14:30:00 1058280030 1058281350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-19 15:30:00 2013-02-19 16:30:00 1058281410 1058281470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-19 16:30:00 2013-02-20 14:30:00 1058281470 1058282790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-20 15:30:00 2013-02-20 16:30:00 1058282850 1058282910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-20 16:30:00 2013-02-21 14:30:00 1058282910 1058284230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-21 15:30:00 2013-02-21 16:30:00 1058284290 1058284350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-21 16:30:00 2013-02-22 14:30:00 1058284350 1058285670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-22 15:30:00 2013-02-22 16:30:00 1058285730 1058285790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-22 16:30:00 2013-02-23 14:30:00 1058285790 1058287110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-23 15:30:00 2013-02-23 16:30:00 1058287170 1058287230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-23 16:30:00 2013-02-24 14:30:00 1058287230 1058288550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-24 15:30:00 2013-02-24 16:30:00 1058288610 1058288670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-24 16:30:00 2013-02-25 14:30:00 1058288670 1058289990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-25 15:30:00 2013-02-25 16:30:00 1058290050 1058290110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-25 16:30:00 2013-02-26 14:30:00 1058290110 1058291430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-26 15:30:00 2013-02-26 16:30:00 1058291490 1058291550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-26 16:30:00 2013-02-27 14:30:00 1058291550 1058292870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-02-27 15:30:00 2013-02-27 16:30:00 1058292930 1058292990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-02-27 16:30:00 2013-04-28 23:30:00 1058292990 1058379810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-04-29 13:30:00 2013-04-30 13:30:00 1058380650 1058382090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-04-30 13:30:00 2013-07-31 14:30:00 1058382090 1058514630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-07-31 15:30:00 2013-07-31 16:30:00 1058514690 1058514750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-07-31 16:30:00 2013-08-01 14:30:00 1058514750 1058516070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-01 15:30:00 2013-08-01 16:30:00 1058516130 1058516190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-01 16:30:00 2013-08-02 14:30:00 1058516190 1058517510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-02 15:30:00 2013-08-02 16:30:00 1058517570 1058517630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-02 16:30:00 2013-08-03 14:30:00 1058517630 1058518950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-03 15:30:00 2013-08-03 16:30:00 1058519010 1058519070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-03 16:30:00 2013-08-04 14:30:00 1058519070 1058520390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-04 15:30:00 2013-08-04 16:30:00 1058520450 1058520510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-04 16:30:00 2013-08-05 14:30:00 1058520510 1058521830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-05 15:30:00 2013-08-05 16:30:00 1058521890 1058521950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-05 16:30:00 2013-08-06 00:30:00 1058521950 1058522430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-06 00:30:00 2013-08-06 01:30:00 1058522430 1058522490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-06 04:30:00 2013-08-06 14:30:00 1058522670 1058523270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-06 15:30:00 2013-08-06 16:30:00 1058523330 1058523390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-06 16:30:00 2013-08-07 14:30:00 1058523390 1058524710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-07 15:30:00 2013-08-07 16:30:00 1058524770 1058524830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-07 16:30:00 2013-08-08 14:30:00 1058524830 1058526150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-08 15:30:00 2013-08-08 16:30:00 1058526210 1058526270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-08 16:30:00 2013-08-09 14:30:00 1058526270 1058527590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-09 15:30:00 2013-08-09 16:30:00 1058527650 1058527710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-09 16:30:00 2013-08-10 14:30:00 1058527710 1058529030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-10 15:30:00 2013-08-10 16:30:00 1058529090 1058529150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-10 16:30:00 2013-08-11 14:30:00 1058529150 1058530470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-11 15:30:00 2013-08-11 16:30:00 1058530530 1058530590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-11 16:30:00 2013-08-12 14:30:00 1058530590 1058531910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-12 15:30:00 2013-08-12 16:30:00 1058531970 1058532030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-12 16:30:00 2013-08-13 14:30:00 1058532030 1058533350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-13 15:30:00 2013-08-13 16:30:00 1058533410 1058533470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-13 16:30:00 2013-08-14 14:30:00 1058533470 1058534790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-14 15:30:00 2013-08-14 16:30:00 1058534850 1058534910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-14 16:30:00 2013-08-15 04:30:00 1058534910 1058535630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-15 04:30:00 2013-08-15 05:30:00 1058535630 1058535690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-15 05:30:00 2013-08-15 14:30:00 1058535690 1058536230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-15 15:30:00 2013-08-15 16:30:00 1058536290 1058536350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-15 16:30:00 2013-08-16 14:30:00 1058536350 1058537670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-16 15:30:00 2013-08-16 16:30:00 1058537730 1058537790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-16 16:30:00 2013-08-17 14:30:00 1058537790 1058539110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-17 15:30:00 2013-08-17 16:30:00 1058539170 1058539230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-17 16:30:00 2013-08-18 14:30:00 1058539230 1058540550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-18 15:30:00 2013-08-18 16:30:00 1058540610 1058540670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-18 16:30:00 2013-08-19 14:30:00 1058540670 1058541990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-19 15:30:00 2013-08-19 16:30:00 1058542050 1058542110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-19 16:30:00 2013-08-20 14:30:00 1058542110 1058543430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-20 15:30:00 2013-08-20 16:30:00 1058543490 1058543550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-20 16:30:00 2013-08-21 14:30:00 1058543550 1058544870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-21 15:30:00 2013-08-21 16:30:00 1058544930 1058544990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-21 16:30:00 2013-08-22 14:30:00 1058544990 1058546310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-22 15:30:00 2013-08-22 16:30:00 1058546370 1058546430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-22 16:30:00 2013-08-23 14:30:00 1058546430 1058547750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-23 15:30:00 2013-08-23 16:30:00 1058547810 1058547870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-23 16:30:00 2013-08-24 14:30:00 1058547870 1058549190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-24 15:30:00 2013-08-24 16:30:00 1058549250 1058549310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-24 16:30:00 2013-08-25 14:30:00 1058549310 1058550630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-25 15:30:00 2013-08-25 16:30:00 1058550690 1058550750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-25 16:30:00 2013-08-26 14:30:00 1058550750 1058552070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-26 15:30:00 2013-08-26 16:30:00 1058552130 1058552190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-26 16:30:00 2013-08-27 14:30:00 1058552190 1058553510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-27 15:30:00 2013-08-27 16:30:00 1058553570 1058553630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-27 16:30:00 2013-08-28 14:30:00 1058553630 1058554950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-28 15:30:00 2013-08-28 16:30:00 1058555010 1058555070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-28 16:30:00 2013-08-29 14:30:00 1058555070 1058556390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-29 15:30:00 2013-08-29 16:30:00 1058556450 1058556510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-29 16:30:00 2013-08-30 14:30:00 1058556510 1058557830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-30 15:30:00 2013-08-30 16:30:00 1058557890 1058557950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-30 16:30:00 2013-08-31 14:30:00 1058557950 1058559270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-08-31 15:30:00 2013-08-31 16:30:00 1058559330 1058559390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-08-31 16:30:00 2013-09-01 14:30:00 1058559390 1058560710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-09-01 15:30:00 2013-09-01 16:30:00 1058560770 1058560830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-09-01 16:30:00 2013-09-02 14:30:00 1058560830 1058562150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-09-02 15:30:00 2013-09-02 16:30:00 1058562210 1058562270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-09-02 16:30:00 2013-09-03 14:30:00 1058562270 1058563590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-09-03 15:30:00 2013-09-03 16:30:00 1058563650 1058563710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-09-03 16:30:00 2013-09-04 14:30:00 1058563710 1058565030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-09-04 15:30:00 2013-09-04 16:30:00 1058565090 1058565150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-09-04 16:30:00 2013-09-05 14:30:00 1058565150 1058566470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-09-05 15:30:00 2013-09-05 16:30:00 1058566530 1058566590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-09-05 16:30:00 2013-09-06 14:30:00 1058566590 1058567910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-09-06 15:30:00 2013-09-06 16:30:00 1058567970 1058568030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-09-06 16:30:00 2013-09-07 14:30:00 1058568030 1058569350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-09-07 15:30:00 2013-09-07 16:30:00 1058569410 1058569470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-09-07 16:30:00 2013-11-22 03:30:00 1058569470 1058678130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-11-22 03:30:00 2013-11-22 04:30:00 1058678130 1058678190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -2013-11-22 13:30:00 2013-11-30 14:30:00 1058678730 1058690310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-11-30 15:30:00 2013-11-30 16:30:00 1058690370 1058690430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-11-30 16:30:00 2013-12-01 14:30:00 1058690430 1058691750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-12-01 15:30:00 2013-12-01 16:30:00 1058691810 1058691870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-12-01 16:30:00 2013-12-02 14:30:00 1058691870 1058693190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-12-02 15:30:00 2013-12-02 16:30:00 1058693250 1058693310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-12-02 16:30:00 2013-12-03 13:30:00 1058693310 1058694570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2013-12-03 15:30:00 2013-12-03 16:30:00 1058694690 1058694750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz'] -2013-12-03 16:30:00 2013-12-04 02:30:00 1058694750 1058695350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058209290_1058695350.npz -2014-03-09 13:30:00 2014-03-10 14:30:00 1058832810 1058834310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-10 15:30:00 2014-03-10 16:30:00 1058834370 1058834430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-10 16:30:00 2014-03-12 14:30:00 1058834430 1058837190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-12 15:30:00 2014-03-12 16:30:00 1058837250 1058837310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-12 16:30:00 2014-03-13 14:30:00 1058837310 1058838630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-13 15:30:00 2014-03-13 16:30:00 1058838690 1058838750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-13 16:30:00 2014-03-14 14:30:00 1058838750 1058840070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-14 15:30:00 2014-03-14 16:30:00 1058840130 1058840190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-14 16:30:00 2014-03-15 14:30:00 1058840190 1058841510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-15 15:30:00 2014-03-15 16:30:00 1058841570 1058841630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-15 16:30:00 2014-03-16 14:30:00 1058841630 1058842950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-16 15:30:00 2014-03-16 16:30:00 1058843010 1058843070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-16 16:30:00 2014-03-17 14:30:00 1058843070 1058844390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-17 15:30:00 2014-03-17 16:30:00 1058844450 1058844510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-17 16:30:00 2014-03-18 14:30:00 1058844510 1058845830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-18 15:30:00 2014-03-18 16:30:00 1058845890 1058845950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-18 16:30:00 2014-03-19 14:30:00 1058845950 1058847270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-19 15:30:00 2014-03-19 16:30:00 1058847330 1058847390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-19 16:30:00 2014-03-20 14:30:00 1058847390 1058848710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-20 15:30:00 2014-03-20 16:30:00 1058848770 1058848830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-20 16:30:00 2014-03-21 14:30:00 1058848830 1058850150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-21 15:30:00 2014-03-21 16:30:00 1058850210 1058850270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-21 16:30:00 2014-03-22 14:30:00 1058850270 1058851590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-22 15:30:00 2014-03-22 16:30:00 1058851650 1058851710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-22 16:30:00 2014-03-23 14:30:00 1058851710 1058853030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-23 15:30:00 2014-03-23 16:30:00 1058853090 1058853150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-23 16:30:00 2014-03-24 14:30:00 1058853150 1058854470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-24 15:30:00 2014-03-24 16:30:00 1058854530 1058854590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-24 16:30:00 2014-03-25 14:30:00 1058854590 1058855910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-25 15:30:00 2014-03-25 16:30:00 1058855970 1058856030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-25 16:30:00 2014-03-26 14:30:00 1058856030 1058857350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-26 15:30:00 2014-03-26 16:30:00 1058857410 1058857470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-26 16:30:00 2014-03-27 14:30:00 1058857470 1058858790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-27 15:30:00 2014-03-27 16:30:00 1058858850 1058858910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-27 16:30:00 2014-03-28 14:30:00 1058858910 1058860230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-28 15:30:00 2014-03-28 16:30:00 1058860290 1058860350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-28 16:30:00 2014-03-29 14:30:00 1058860350 1058861670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-29 15:30:00 2014-03-29 16:30:00 1058861730 1058861790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-29 16:30:00 2014-03-30 14:30:00 1058861790 1058863110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-30 15:30:00 2014-03-30 16:30:00 1058863170 1058863230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-30 16:30:00 2014-03-31 14:30:00 1058863230 1058864550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-03-31 15:30:00 2014-03-31 16:30:00 1058864610 1058864670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-03-31 16:30:00 2014-04-01 14:30:00 1058864670 1058865990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-01 15:30:00 2014-04-01 16:30:00 1058866050 1058866110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-01 16:30:00 2014-04-02 14:30:00 1058866110 1058867430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-02 15:30:00 2014-04-02 16:30:00 1058867490 1058867550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-02 16:30:00 2014-04-03 14:30:00 1058867550 1058868870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-03 15:30:00 2014-04-03 16:30:00 1058868930 1058868990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-03 16:30:00 2014-04-04 14:30:00 1058868990 1058870310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-04 15:30:00 2014-04-04 16:30:00 1058870370 1058870430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-04 16:30:00 2014-04-05 14:30:00 1058870430 1058871750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-05 15:30:00 2014-04-05 16:30:00 1058871810 1058871870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-05 16:30:00 2014-04-06 14:30:00 1058871870 1058873190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-06 15:30:00 2014-04-06 16:30:00 1058873250 1058873310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-06 16:30:00 2014-04-07 14:30:00 1058873310 1058874630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-07 15:30:00 2014-04-07 16:30:00 1058874690 1058874750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-07 16:30:00 2014-04-08 14:30:00 1058874750 1058876070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-08 15:30:00 2014-04-08 16:30:00 1058876130 1058876190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-08 16:30:00 2014-04-09 14:30:00 1058876190 1058877510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-09 15:30:00 2014-04-09 16:30:00 1058877570 1058877630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-09 16:30:00 2014-04-10 14:30:00 1058877630 1058878950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-10 15:30:00 2014-04-10 16:30:00 1058879010 1058879070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-10 16:30:00 2014-04-11 14:30:00 1058879070 1058880390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-11 15:30:00 2014-04-11 16:30:00 1058880450 1058880510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-11 16:30:00 2014-04-12 14:30:00 1058880510 1058881830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-12 15:30:00 2014-04-12 16:30:00 1058881890 1058881950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-12 16:30:00 2014-04-13 14:30:00 1058881950 1058883270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-13 15:30:00 2014-04-13 16:30:00 1058883330 1058883390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-13 16:30:00 2014-04-14 14:30:00 1058883390 1058884710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-14 15:30:00 2014-04-14 16:30:00 1058884770 1058884830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-14 16:30:00 2014-04-15 14:30:00 1058884830 1058886150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-15 15:30:00 2014-04-15 16:30:00 1058886210 1058886270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-15 16:30:00 2014-04-16 13:30:00 1058886270 1058887530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-16 15:30:00 2014-04-16 16:30:00 1058887650 1058887710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-16 16:30:00 2014-04-18 14:30:00 1058887710 1058890470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-18 15:30:00 2014-04-18 16:30:00 1058890530 1058890590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-18 16:30:00 2014-04-19 14:30:00 1058890590 1058891910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-19 15:30:00 2014-04-19 16:30:00 1058891970 1058892030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-19 16:30:00 2014-04-20 14:30:00 1058892030 1058893350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-20 15:30:00 2014-04-20 16:30:00 1058893410 1058893470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-20 16:30:00 2014-04-21 14:30:00 1058893470 1058894790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-21 15:30:00 2014-04-21 16:30:00 1058894850 1058894910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-21 16:30:00 2014-04-22 14:30:00 1058894910 1058896230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-22 15:30:00 2014-04-22 16:30:00 1058896290 1058896350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-22 16:30:00 2014-04-23 14:30:00 1058896350 1058897670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-23 15:30:00 2014-04-23 16:30:00 1058897730 1058897790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-23 16:30:00 2014-04-24 14:30:00 1058897790 1058899110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-24 15:30:00 2014-04-24 16:30:00 1058899170 1058899230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-24 16:30:00 2014-04-25 14:30:00 1058899230 1058900550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-25 15:30:00 2014-04-25 16:30:00 1058900610 1058900670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-25 16:30:00 2014-04-26 14:30:00 1058900670 1058901990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-26 15:30:00 2014-04-26 16:30:00 1058902050 1058902110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-26 16:30:00 2014-04-28 14:30:00 1058902110 1058904870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-28 15:30:00 2014-04-28 16:30:00 1058904930 1058904990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-28 16:30:00 2014-04-29 14:30:00 1058904990 1058906310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-29 15:30:00 2014-04-29 16:30:00 1058906370 1058906430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-29 16:30:00 2014-04-30 14:30:00 1058906430 1058907750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-04-30 15:30:00 2014-04-30 16:30:00 1058907810 1058907870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-04-30 16:30:00 2014-05-01 14:30:00 1058907870 1058909190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-01 15:30:00 2014-05-01 16:30:00 1058909250 1058909310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-01 16:30:00 2014-05-02 14:30:00 1058909310 1058910630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-02 15:30:00 2014-05-02 16:30:00 1058910690 1058910750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-02 16:30:00 2014-05-03 14:30:00 1058910750 1058912070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-03 15:30:00 2014-05-03 16:30:00 1058912130 1058912190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-03 16:30:00 2014-05-04 14:30:00 1058912190 1058913510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-04 15:30:00 2014-05-04 16:30:00 1058913570 1058913630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-04 16:30:00 2014-05-05 14:30:00 1058913630 1058914950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-05 15:30:00 2014-05-05 16:30:00 1058915010 1058915070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-05 16:30:00 2014-05-06 14:30:00 1058915070 1058916390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-06 15:30:00 2014-05-06 16:30:00 1058916450 1058916510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-06 16:30:00 2014-05-07 14:30:00 1058916510 1058917830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-07 15:30:00 2014-05-07 16:30:00 1058917890 1058917950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-07 16:30:00 2014-05-08 14:30:00 1058917950 1058919270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-08 15:30:00 2014-05-08 16:30:00 1058919330 1058919390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-08 16:30:00 2014-05-09 14:30:00 1058919390 1058920710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-09 15:30:00 2014-05-09 16:30:00 1058920770 1058920830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-09 16:30:00 2014-05-10 14:30:00 1058920830 1058922150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-10 15:30:00 2014-05-10 16:30:00 1058922210 1058922270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-10 16:30:00 2014-05-11 14:30:00 1058922270 1058923590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-11 15:30:00 2014-05-11 16:30:00 1058923650 1058923710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-11 16:30:00 2014-05-12 14:30:00 1058923710 1058925030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-12 15:30:00 2014-05-12 16:30:00 1058925090 1058925150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-12 16:30:00 2014-05-13 14:30:00 1058925150 1058926470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-13 15:30:00 2014-05-13 16:30:00 1058926530 1058926590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-13 16:30:00 2014-05-14 14:30:00 1058926590 1058927910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-14 15:30:00 2014-05-14 16:30:00 1058927970 1058928030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-14 16:30:00 2014-05-15 14:30:00 1058928030 1058929350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-15 15:30:00 2014-05-15 16:30:00 1058929410 1058929470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-15 16:30:00 2014-05-16 14:30:00 1058929470 1058930790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-16 15:30:00 2014-05-16 16:30:00 1058930850 1058930910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-16 16:30:00 2014-05-17 14:30:00 1058930910 1058932230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-17 15:30:00 2014-05-17 16:30:00 1058932290 1058932350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-17 16:30:00 2014-05-18 14:30:00 1058932350 1058933670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-18 15:30:00 2014-05-18 16:30:00 1058933730 1058933790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-18 16:30:00 2014-05-19 14:30:00 1058933790 1058935110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-19 15:30:00 2014-05-19 16:30:00 1058935170 1058935230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-19 16:30:00 2014-05-20 14:30:00 1058935230 1058936550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-20 15:30:00 2014-05-20 16:30:00 1058936610 1058936670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-20 16:30:00 2014-05-21 14:30:00 1058936670 1058937990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-21 15:30:00 2014-05-21 16:30:00 1058938050 1058938110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-21 16:30:00 2014-05-22 14:30:00 1058938110 1058939430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-22 15:30:00 2014-05-22 16:30:00 1058939490 1058939550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-22 16:30:00 2014-05-23 14:30:00 1058939550 1058940870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-23 15:30:00 2014-05-23 16:30:00 1058940930 1058940990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-23 16:30:00 2014-05-24 14:30:00 1058940990 1058942310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-24 15:30:00 2014-05-24 16:30:00 1058942370 1058942430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-24 16:30:00 2014-05-25 14:30:00 1058942430 1058943750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-25 15:30:00 2014-05-25 16:30:00 1058943810 1058943870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-25 16:30:00 2014-05-28 14:30:00 1058943870 1058948070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-28 15:30:00 2014-05-28 16:30:00 1058948130 1058948190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-28 16:30:00 2014-05-29 14:30:00 1058948190 1058949510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-29 15:30:00 2014-05-29 16:30:00 1058949570 1058949630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-29 16:30:00 2014-05-30 14:30:00 1058949630 1058950950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-30 15:30:00 2014-05-30 16:30:00 1058951010 1058951070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-30 16:30:00 2014-05-31 14:30:00 1058951070 1058952390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-05-31 15:30:00 2014-05-31 16:30:00 1058952450 1058952510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-05-31 16:30:00 2014-06-01 14:30:00 1058952510 1058953830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-01 15:30:00 2014-06-01 16:30:00 1058953890 1058953950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-01 16:30:00 2014-06-02 14:30:00 1058953950 1058955270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-02 15:30:00 2014-06-02 16:30:00 1058955330 1058955390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-02 16:30:00 2014-06-03 14:30:00 1058955390 1058956710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-03 15:30:00 2014-06-03 16:30:00 1058956770 1058956830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-03 16:30:00 2014-06-04 14:30:00 1058956830 1058958150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-04 15:30:00 2014-06-04 16:30:00 1058958210 1058958270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-04 16:30:00 2014-06-05 14:30:00 1058958270 1058959590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-05 15:30:00 2014-06-05 16:30:00 1058959650 1058959710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-05 16:30:00 2014-06-06 14:30:00 1058959710 1058961030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-06 15:30:00 2014-06-06 16:30:00 1058961090 1058961150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-06 16:30:00 2014-06-07 14:30:00 1058961150 1058962470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-07 15:30:00 2014-06-07 16:30:00 1058962530 1058962590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-07 16:30:00 2014-06-08 14:30:00 1058962590 1058963910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-08 15:30:00 2014-06-08 16:30:00 1058963970 1058964030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-08 16:30:00 2014-06-09 14:30:00 1058964030 1058965350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-09 15:30:00 2014-06-09 16:30:00 1058965410 1058965470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-09 16:30:00 2014-06-10 14:30:00 1058965470 1058966790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-10 15:30:00 2014-06-10 16:30:00 1058966850 1058966910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-10 16:30:00 2014-06-11 14:30:00 1058966910 1058968230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-11 15:30:00 2014-06-11 16:30:00 1058968290 1058968350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-11 16:30:00 2014-06-12 14:30:00 1058968350 1058969670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-12 15:30:00 2014-06-12 16:30:00 1058969730 1058969790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-12 16:30:00 2014-06-13 14:30:00 1058969790 1058971110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-13 15:30:00 2014-06-13 16:30:00 1058971170 1058971230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-13 16:30:00 2014-06-14 14:30:00 1058971230 1058972550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-14 15:30:00 2014-06-14 16:30:00 1058972610 1058972670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-14 16:30:00 2014-06-15 14:30:00 1058972670 1058973990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-15 15:30:00 2014-06-15 16:30:00 1058974050 1058974110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-15 16:30:00 2014-06-16 14:30:00 1058974110 1058975430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-16 15:30:00 2014-06-16 16:30:00 1058975490 1058975550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-16 16:30:00 2014-06-17 14:30:00 1058975550 1058976870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-17 15:30:00 2014-06-17 16:30:00 1058976930 1058976990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-17 16:30:00 2014-06-18 14:30:00 1058976990 1058978310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-18 15:30:00 2014-06-18 16:30:00 1058978370 1058978430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-18 16:30:00 2014-06-19 14:30:00 1058978430 1058979750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-19 15:30:00 2014-06-19 16:30:00 1058979810 1058979870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-19 16:30:00 2014-06-20 14:30:00 1058979870 1058981190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-20 15:30:00 2014-06-20 16:30:00 1058981250 1058981310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-20 16:30:00 2014-06-21 14:30:00 1058981310 1058982630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-21 15:30:00 2014-06-21 16:30:00 1058982690 1058982750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-21 16:30:00 2014-06-22 14:30:00 1058982750 1058984070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-22 15:30:00 2014-06-22 16:30:00 1058984130 1058984190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-22 16:30:00 2014-06-23 14:30:00 1058984190 1058985510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-23 15:30:00 2014-06-23 16:30:00 1058985570 1058985630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-23 16:30:00 2014-06-24 14:30:00 1058985630 1058986950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-24 15:30:00 2014-06-24 16:30:00 1058987010 1058987070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-24 16:30:00 2014-06-25 14:30:00 1058987070 1058988390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-25 15:30:00 2014-06-25 16:30:00 1058988450 1058988510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-25 16:30:00 2014-06-26 14:30:00 1058988510 1058989830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-26 15:30:00 2014-06-26 16:30:00 1058989890 1058989950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-26 16:30:00 2014-06-27 14:30:00 1058989950 1058991270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-27 15:30:00 2014-06-27 16:30:00 1058991330 1058991390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-27 16:30:00 2014-06-28 14:30:00 1058991390 1058992710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-28 15:30:00 2014-06-28 16:30:00 1058992770 1058992830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-28 16:30:00 2014-06-29 14:30:00 1058992830 1058994150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-29 15:30:00 2014-06-29 16:30:00 1058994210 1058994270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-29 16:30:00 2014-06-30 14:30:00 1058994270 1058995590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-06-30 15:30:00 2014-06-30 16:30:00 1058995650 1058995710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-06-30 16:30:00 2014-07-01 14:30:00 1058995710 1058997030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-01 15:30:00 2014-07-01 16:30:00 1058997090 1058997150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-01 16:30:00 2014-07-02 14:30:00 1058997150 1058998470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-02 15:30:00 2014-07-02 16:30:00 1058998530 1058998590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-02 16:30:00 2014-07-03 14:30:00 1058998590 1058999910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-03 15:30:00 2014-07-03 16:30:00 1058999970 1059000030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-03 16:30:00 2014-07-04 14:30:00 1059000030 1059001350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-04 15:30:00 2014-07-04 16:30:00 1059001410 1059001470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-04 16:30:00 2014-07-05 14:30:00 1059001470 1059002790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-05 15:30:00 2014-07-05 16:30:00 1059002850 1059002910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-05 16:30:00 2014-07-06 14:30:00 1059002910 1059004230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-06 15:30:00 2014-07-06 16:30:00 1059004290 1059004350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-06 16:30:00 2014-07-07 14:30:00 1059004350 1059005670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-07 15:30:00 2014-07-07 16:30:00 1059005730 1059005790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-07 16:30:00 2014-07-08 14:30:00 1059005790 1059007110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-08 15:30:00 2014-07-08 16:30:00 1059007170 1059007230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-08 16:30:00 2014-07-09 14:30:00 1059007230 1059008550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-09 15:30:00 2014-07-09 16:30:00 1059008610 1059008670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-09 16:30:00 2014-07-10 14:30:00 1059008670 1059009990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-10 15:30:00 2014-07-10 16:30:00 1059010050 1059010110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-10 16:30:00 2014-07-11 14:30:00 1059010110 1059011430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-11 15:30:00 2014-07-11 16:30:00 1059011490 1059011550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-11 16:30:00 2014-07-12 14:30:00 1059011550 1059012870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-12 15:30:00 2014-07-12 16:30:00 1059012930 1059012990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-12 16:30:00 2014-07-13 14:30:00 1059012990 1059014310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-13 15:30:00 2014-07-13 16:30:00 1059014370 1059014430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-13 16:30:00 2014-07-14 14:30:00 1059014430 1059015750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-14 15:30:00 2014-07-14 16:30:00 1059015810 1059015870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-14 16:30:00 2014-07-15 14:30:00 1059015870 1059017190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-15 15:30:00 2014-07-15 16:30:00 1059017250 1059017310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-15 16:30:00 2014-07-16 14:30:00 1059017310 1059018630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-16 15:30:00 2014-07-16 16:30:00 1059018690 1059018750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-16 16:30:00 2014-07-17 14:30:00 1059018750 1059020070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-17 15:30:00 2014-07-17 16:30:00 1059020130 1059020190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-17 16:30:00 2014-07-18 14:30:00 1059020190 1059021510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-18 15:30:00 2014-07-18 16:30:00 1059021570 1059021630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-18 16:30:00 2014-07-19 14:30:00 1059021630 1059022950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-19 15:30:00 2014-07-19 16:30:00 1059023010 1059023070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-19 16:30:00 2014-07-20 14:30:00 1059023070 1059024390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-20 15:30:00 2014-07-20 16:30:00 1059024450 1059024510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-20 16:30:00 2014-07-21 14:30:00 1059024510 1059025830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-21 15:30:00 2014-07-21 16:30:00 1059025890 1059025950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-21 16:30:00 2014-07-22 14:30:00 1059025950 1059027270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-22 15:30:00 2014-07-22 16:30:00 1059027330 1059027390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-22 16:30:00 2014-07-23 14:30:00 1059027390 1059028710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-23 15:30:00 2014-07-23 16:30:00 1059028770 1059028830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-23 16:30:00 2014-07-24 14:30:00 1059028830 1059030150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-24 15:30:00 2014-07-24 16:30:00 1059030210 1059030270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-24 16:30:00 2014-07-25 14:30:00 1059030270 1059031590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-25 15:30:00 2014-07-25 16:30:00 1059031650 1059031710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-25 16:30:00 2014-07-26 14:30:00 1059031710 1059033030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-26 15:30:00 2014-07-26 16:30:00 1059033090 1059033150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-26 16:30:00 2014-07-27 14:30:00 1059033150 1059034470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-27 15:30:00 2014-07-27 16:30:00 1059034530 1059034590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-27 16:30:00 2014-07-28 14:30:00 1059034590 1059035910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-28 15:30:00 2014-07-28 16:30:00 1059035970 1059036030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-28 16:30:00 2014-07-29 14:30:00 1059036030 1059037350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-29 15:30:00 2014-07-29 16:30:00 1059037410 1059037470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-29 16:30:00 2014-07-30 14:30:00 1059037470 1059038790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-30 15:30:00 2014-07-30 16:30:00 1059038850 1059038910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-30 16:30:00 2014-07-31 14:30:00 1059038910 1059040230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-07-31 15:30:00 2014-07-31 16:30:00 1059040290 1059040350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-07-31 16:30:00 2014-08-01 14:30:00 1059040350 1059041670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-01 15:30:00 2014-08-01 16:30:00 1059041730 1059041790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-01 16:30:00 2014-08-02 14:30:00 1059041790 1059043110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-02 15:30:00 2014-08-02 16:30:00 1059043170 1059043230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-02 16:30:00 2014-08-03 14:30:00 1059043230 1059044550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-03 15:30:00 2014-08-03 16:30:00 1059044610 1059044670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-03 16:30:00 2014-08-04 14:30:00 1059044670 1059045990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-04 15:30:00 2014-08-04 16:30:00 1059046050 1059046110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-04 16:30:00 2014-08-05 14:30:00 1059046110 1059047430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-05 15:30:00 2014-08-05 16:30:00 1059047490 1059047550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-05 16:30:00 2014-08-06 14:30:00 1059047550 1059048870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-06 15:30:00 2014-08-06 16:30:00 1059048930 1059048990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-06 16:30:00 2014-08-07 14:30:00 1059048990 1059050310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-07 15:30:00 2014-08-07 16:30:00 1059050370 1059050430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-07 16:30:00 2014-08-08 14:30:00 1059050430 1059051750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-08 15:30:00 2014-08-08 16:30:00 1059051810 1059051870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-08 16:30:00 2014-08-09 14:30:00 1059051870 1059053190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-09 15:30:00 2014-08-09 16:30:00 1059053250 1059053310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-09 16:30:00 2014-08-10 14:30:00 1059053310 1059054630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-10 15:30:00 2014-08-10 16:30:00 1059054690 1059054750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-10 16:30:00 2014-08-11 14:30:00 1059054750 1059056070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-11 15:30:00 2014-08-11 16:30:00 1059056130 1059056190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-11 16:30:00 2014-08-12 14:30:00 1059056190 1059057510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-12 15:30:00 2014-08-12 16:30:00 1059057570 1059057630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-12 16:30:00 2014-08-13 14:30:00 1059057630 1059058950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-13 15:30:00 2014-08-13 16:30:00 1059059010 1059059070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-13 16:30:00 2014-08-14 14:30:00 1059059070 1059060390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-14 15:30:00 2014-08-14 16:30:00 1059060450 1059060510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-14 16:30:00 2014-08-15 01:30:00 1059060510 1059061050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-15 01:30:00 2014-08-15 02:30:00 1059061050 1059061110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-15 02:30:00 2014-08-15 14:30:00 1059061110 1059061830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-15 15:30:00 2014-08-15 16:30:00 1059061890 1059061950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-15 16:30:00 2014-08-16 14:30:00 1059061950 1059063270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-16 15:30:00 2014-08-16 16:30:00 1059063330 1059063390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-16 16:30:00 2014-08-17 14:30:00 1059063390 1059064710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-17 15:30:00 2014-08-17 16:30:00 1059064770 1059064830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-17 16:30:00 2014-08-18 14:30:00 1059064830 1059066150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-18 15:30:00 2014-08-18 16:30:00 1059066210 1059066270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-18 16:30:00 2014-08-19 14:30:00 1059066270 1059067590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-19 15:30:00 2014-08-19 16:30:00 1059067650 1059067710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-19 16:30:00 2014-08-20 14:30:00 1059067710 1059069030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-20 15:30:00 2014-08-20 16:30:00 1059069090 1059069150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-20 16:30:00 2014-08-21 14:30:00 1059069150 1059070470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-21 15:30:00 2014-08-21 16:30:00 1059070530 1059070590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-21 16:30:00 2014-08-22 14:30:00 1059070590 1059071910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-22 15:30:00 2014-08-22 16:30:00 1059071970 1059072030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-22 16:30:00 2014-08-23 14:30:00 1059072030 1059073350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-23 15:30:00 2014-08-23 16:30:00 1059073410 1059073470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-23 16:30:00 2014-08-24 14:30:00 1059073470 1059074790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-24 15:30:00 2014-08-24 16:30:00 1059074850 1059074910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-24 16:30:00 2014-08-25 00:30:00 1059074910 1059075390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-25 01:30:00 2014-08-25 02:30:00 1059075450 1059075510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-25 02:30:00 2014-08-25 14:30:00 1059075510 1059076230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-25 15:30:00 2014-08-25 16:30:00 1059076290 1059076350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-25 16:30:00 2014-08-26 14:30:00 1059076350 1059077670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-26 15:30:00 2014-08-26 16:30:00 1059077730 1059077790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-26 16:30:00 2014-08-27 14:30:00 1059077790 1059079110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-27 15:30:00 2014-08-27 16:30:00 1059079170 1059079230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-27 16:30:00 2014-08-28 14:30:00 1059079230 1059080550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-28 15:30:00 2014-08-28 16:30:00 1059080610 1059080670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-28 16:30:00 2014-08-29 14:30:00 1059080670 1059081990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-29 15:30:00 2014-08-29 16:30:00 1059082050 1059082110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-29 16:30:00 2014-08-30 14:30:00 1059082110 1059083430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-30 15:30:00 2014-08-30 16:30:00 1059083490 1059083550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-30 16:30:00 2014-08-31 14:30:00 1059083550 1059084870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-08-31 15:30:00 2014-08-31 16:30:00 1059084930 1059084990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-08-31 16:30:00 2014-09-01 14:30:00 1059084990 1059086310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-01 15:30:00 2014-09-01 16:30:00 1059086370 1059086430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-01 16:30:00 2014-09-02 14:30:00 1059086430 1059087750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-02 15:30:00 2014-09-02 16:30:00 1059087810 1059087870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-02 16:30:00 2014-09-03 14:30:00 1059087870 1059089190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-03 15:30:00 2014-09-03 16:30:00 1059089250 1059089310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-03 16:30:00 2014-09-04 14:30:00 1059089310 1059090630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-04 15:30:00 2014-09-04 16:30:00 1059090690 1059090750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-04 16:30:00 2014-09-05 14:30:00 1059090750 1059092070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-05 15:30:00 2014-09-05 16:30:00 1059092130 1059092190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-05 16:30:00 2014-09-06 14:30:00 1059092190 1059093510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-06 15:30:00 2014-09-06 16:30:00 1059093570 1059093630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-06 16:30:00 2014-09-07 14:30:00 1059093630 1059094950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-07 15:30:00 2014-09-07 16:30:00 1059095010 1059095070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-07 16:30:00 2014-09-08 14:30:00 1059095070 1059096390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-08 15:30:00 2014-09-08 16:30:00 1059096450 1059096510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-08 16:30:00 2014-09-09 14:30:00 1059096510 1059097830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-09 15:30:00 2014-09-09 16:30:00 1059097890 1059097950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-09 16:30:00 2014-09-10 14:30:00 1059097950 1059099270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-10 15:30:00 2014-09-10 16:30:00 1059099330 1059099390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-10 16:30:00 2014-09-11 14:30:00 1059099390 1059100710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-11 15:30:00 2014-09-11 16:30:00 1059100770 1059100830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-11 16:30:00 2014-09-12 14:30:00 1059100830 1059102150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-12 15:30:00 2014-09-12 16:30:00 1059102210 1059102270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-12 16:30:00 2014-09-13 14:30:00 1059102270 1059103590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-13 15:30:00 2014-09-13 16:30:00 1059103650 1059103710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-13 16:30:00 2014-09-14 14:30:00 1059103710 1059105030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-14 15:30:00 2014-09-14 16:30:00 1059105090 1059105150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-14 16:30:00 2014-09-15 14:30:00 1059105150 1059106470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-15 15:30:00 2014-09-15 16:30:00 1059106530 1059106590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-15 16:30:00 2014-09-16 14:30:00 1059106590 1059107910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-16 15:30:00 2014-09-16 16:30:00 1059107970 1059108030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-16 16:30:00 2014-09-17 14:30:00 1059108030 1059109350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-17 15:30:00 2014-09-17 16:30:00 1059109410 1059109470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-17 16:30:00 2014-09-18 14:30:00 1059109470 1059110790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-18 15:30:00 2014-09-18 16:30:00 1059110850 1059110910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-18 16:30:00 2014-09-19 14:30:00 1059110910 1059112230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-19 15:30:00 2014-09-19 16:30:00 1059112290 1059112350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-19 16:30:00 2014-09-20 14:30:00 1059112350 1059113670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-20 15:30:00 2014-09-20 16:30:00 1059113730 1059113790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-20 16:30:00 2014-09-21 14:30:00 1059113790 1059115110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-21 15:30:00 2014-09-21 16:30:00 1059115170 1059115230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-21 16:30:00 2014-09-22 14:30:00 1059115230 1059116550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-22 15:30:00 2014-09-22 16:30:00 1059116610 1059116670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-22 16:30:00 2014-09-23 14:30:00 1059116670 1059117990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-23 15:30:00 2014-09-23 16:30:00 1059118050 1059118110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-23 16:30:00 2014-09-24 14:30:00 1059118110 1059119430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-24 15:30:00 2014-09-24 16:30:00 1059119490 1059119550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-24 16:30:00 2014-09-25 14:30:00 1059119550 1059120870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-25 15:30:00 2014-09-25 16:30:00 1059120930 1059120990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-25 16:30:00 2014-09-26 14:30:00 1059120990 1059122310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-26 15:30:00 2014-09-26 16:30:00 1059122370 1059122430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-26 16:30:00 2014-09-27 14:30:00 1059122430 1059123750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-27 15:30:00 2014-09-27 16:30:00 1059123810 1059123870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-27 16:30:00 2014-09-28 14:30:00 1059123870 1059125190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-28 15:30:00 2014-09-28 16:30:00 1059125250 1059125310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-28 16:30:00 2014-09-29 14:30:00 1059125310 1059126630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-29 15:30:00 2014-09-29 16:30:00 1059126690 1059126750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-29 16:30:00 2014-09-30 14:30:00 1059126750 1059128070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-09-30 15:30:00 2014-09-30 16:30:00 1059128130 1059128190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-09-30 16:30:00 2014-10-01 14:30:00 1059128190 1059129510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-01 15:30:00 2014-10-01 16:30:00 1059129570 1059129630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-01 16:30:00 2014-10-02 14:30:00 1059129630 1059130950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-02 15:30:00 2014-10-02 16:30:00 1059131010 1059131070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-02 16:30:00 2014-10-03 14:30:00 1059131070 1059132390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-03 15:30:00 2014-10-03 16:30:00 1059132450 1059132510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-03 16:30:00 2014-10-04 14:30:00 1059132510 1059133830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-04 15:30:00 2014-10-04 16:30:00 1059133890 1059133950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-04 16:30:00 2014-10-05 14:30:00 1059133950 1059135270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-05 15:30:00 2014-10-05 16:30:00 1059135330 1059135390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-05 16:30:00 2014-10-06 14:30:00 1059135390 1059136710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-06 15:30:00 2014-10-06 16:30:00 1059136770 1059136830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-06 16:30:00 2014-10-07 13:30:00 1059136830 1059138090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-07 15:30:00 2014-10-07 16:30:00 1059138210 1059138270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-07 16:30:00 2014-10-15 14:30:00 1059138270 1059149670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-15 15:30:00 2014-10-15 16:30:00 1059149730 1059149790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-15 16:30:00 2014-10-16 01:30:00 1059149790 1059150330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-16 02:30:00 2014-10-16 03:30:00 1059150390 1059150450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-16 03:30:00 2014-10-16 14:30:00 1059150450 1059151110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-16 15:30:00 2014-10-16 16:30:00 1059151170 1059151230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-16 16:30:00 2014-10-17 14:30:00 1059151230 1059152550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-17 15:30:00 2014-10-17 16:30:00 1059152610 1059152670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-17 16:30:00 2014-10-18 14:30:00 1059152670 1059153990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-18 15:30:00 2014-10-18 16:30:00 1059154050 1059154110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-18 16:30:00 2014-10-19 14:30:00 1059154110 1059155430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-19 15:30:00 2014-10-19 16:30:00 1059155490 1059155550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-19 16:30:00 2014-10-20 14:30:00 1059155550 1059156870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-20 15:30:00 2014-10-20 16:30:00 1059156930 1059156990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-20 16:30:00 2014-10-21 14:30:00 1059156990 1059158310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-21 15:30:00 2014-10-21 16:30:00 1059158370 1059158430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-21 16:30:00 2014-10-22 14:30:00 1059158430 1059159750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-22 15:30:00 2014-10-22 16:30:00 1059159810 1059159870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-22 16:30:00 2014-10-23 14:30:00 1059159870 1059161190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-23 15:30:00 2014-10-23 16:30:00 1059161250 1059161310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-23 16:30:00 2014-10-24 14:30:00 1059161310 1059162630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-24 15:30:00 2014-10-24 16:30:00 1059162690 1059162750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-24 16:30:00 2014-10-25 14:30:00 1059162750 1059164070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-25 15:30:00 2014-10-25 16:30:00 1059164130 1059164190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-25 16:30:00 2014-10-26 14:30:00 1059164190 1059165510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-26 15:30:00 2014-10-26 16:30:00 1059165570 1059165630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-26 16:30:00 2014-10-27 14:30:00 1059165630 1059166950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-27 15:30:00 2014-10-27 16:30:00 1059167010 1059167070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-27 16:30:00 2014-10-28 14:30:00 1059167070 1059168390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-28 15:30:00 2014-10-28 16:30:00 1059168450 1059168510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-28 16:30:00 2014-10-29 14:30:00 1059168510 1059169830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-29 15:30:00 2014-10-29 16:30:00 1059169890 1059169950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-29 16:30:00 2014-10-30 14:30:00 1059169950 1059171270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-30 15:30:00 2014-10-30 16:30:00 1059171330 1059171390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-30 16:30:00 2014-10-31 14:30:00 1059171390 1059172710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-10-31 15:30:00 2014-10-31 16:30:00 1059172770 1059172830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-10-31 16:30:00 2014-11-01 14:30:00 1059172830 1059174150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-11-01 15:30:00 2014-11-01 16:30:00 1059174210 1059174270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-11-01 16:30:00 2014-11-02 13:30:00 1059174270 1059175530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-11-02 15:30:00 2014-11-02 16:30:00 1059175650 1059175710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz'] -2014-11-02 16:30:00 2014-11-18 00:30:00 1059175710 1059197790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-11-18 00:30:00 2014-11-18 01:30:00 1059197790 1059197850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -2014-11-18 01:30:00 2014-11-26 02:30:00 1059197850 1059209430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-11-26 02:30:00 2014-11-26 03:30:00 1059209430 1059209490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -2014-11-26 03:30:00 2014-12-22 13:30:00 1059209490 1059247530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-12-22 13:30:00 2014-12-22 14:30:00 1059247530 1059247590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -2014-12-22 14:30:00 2014-12-31 13:30:00 1059247590 1059260490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1058832810_1059260490.npz -2014-12-31 13:30:00 2015-02-12 23:30:00 1059260490 1059323010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz -2015-02-13 02:30:00 2015-02-13 03:30:00 1059323190 1059323250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz'] -2015-02-13 03:30:00 2015-05-11 22:30:00 1059323250 1059449670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz -2015-05-11 22:30:00 2015-05-11 23:30:00 1059449670 1059449730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz'] -2015-05-11 23:30:00 2015-06-04 01:30:00 1059449730 1059482970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz -2015-06-04 02:30:00 2015-06-04 03:30:00 1059483030 1059483090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz'] -2015-06-04 03:30:00 2015-06-06 00:30:00 1059483090 1059485790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz -2015-06-06 00:30:00 2015-06-06 04:30:00 1059485790 1059486030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz'] -2015-06-06 04:30:00 2015-06-07 02:30:00 1059486030 1059487350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz -2015-06-07 04:30:00 2015-06-07 05:30:00 1059487470 1059487530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz'] -2015-06-07 05:30:00 2015-06-08 02:30:00 1059487530 1059488790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz -2015-06-08 03:30:00 2015-06-08 04:30:00 1059488850 1059488910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz'] -2015-06-08 04:30:00 2015-09-11 00:30:00 1059488910 1059625470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz -2015-09-11 02:30:00 2015-09-11 03:30:00 1059625590 1059625650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz'] -2015-09-11 03:30:00 2015-12-31 13:30:00 1059625650 1059786090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059260490_1059786090.npz -2015-12-31 13:30:00 2016-12-31 13:30:00 1059786090 1060313130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1059786090_1060313130.npz'] -2016-12-31 13:30:00 2017-12-31 13:30:00 1060313130 1060838730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1060313130_1060838730.npz'] -2019-12-31 13:30:00 2020-12-31 13:30:00 1061889930 1062416970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/5_CL(IMC)_1061889930_1062416970.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.9374052166938782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_60_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_60_CL(IMC).out deleted file mode 100644 index ea764093f2260b7ac062ce74692a54627216268f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_60_CL(IMC).out +++ /dev/null @@ -1,11 +0,0 @@ -60_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1998-02-10 03:00:00 1998-12-31 11:00:00 1050377940 1050844980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/60_CL(IMC)_1050377940_1050844980.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/60_CL(IMC)_1050377940_1050844980:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/60_CL(IMC)_1050377940_1050844980.npz -'StationConcatenate' object has no attribute 'existing_data' -1998-12-31 13:00:00 1999-08-30 23:00:00 1050845100 1051194180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/60_CL(IMC)_1050845100_1051194180.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/60_CL(IMC)_1050845100_1051194180:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/60_CL(IMC)_1050845100_1051194180.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02281657059987386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_61_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_61_CL(IMC).out deleted file mode 100644 index dda5e75f79e31de42cf88bcc9e0823545358b4c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_61_CL(IMC).out +++ /dev/null @@ -1,61 +0,0 @@ -61_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-02-01 23:00:00 1994-12-31 12:00:00 1048262340 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1048262340_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1048262340_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1048262340_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049266800_1049793840.npz -1996-12-31 12:00:00 1997-01-06 15:00:00 1049793840 1049802660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049793840_1050319440:dup1.npz -1997-01-06 17:00:00 1997-01-07 15:00:00 1049802780 1049804100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049793840_1050319440:dup1.npz'] -1997-01-14 11:00:00 1997-01-26 15:00:00 1049813940 1049831460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049793840_1050319440:dup1.npz -1997-01-26 17:00:00 1997-01-27 03:00:00 1049831580 1049832180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049793840_1050319440:dup1.npz'] -1997-01-27 03:00:00 1997-12-31 12:00:00 1049832180 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1049793840_1050319440:dup1.npz -1997-12-31 13:00:00 1998-01-23 15:00:00 1050319500 1050352740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040:dup1.npz -1998-01-23 17:00:00 1998-01-23 18:00:00 1050352860 1050352920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040.npz'] -1998-01-23 18:00:00 1998-03-08 20:00:00 1050352920 1050416400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040:dup1.npz -1998-03-08 20:00:00 1998-03-08 21:00:00 1050416400 1050416460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040:dup1.npz'] -1998-03-08 21:00:00 1998-06-29 04:00:00 1050416460 1050578160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040:dup1.npz -1998-07-06 04:00:00 1998-07-06 05:00:00 1050588240 1050588300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040:dup1.npz'] -1998-07-06 05:00:00 1998-12-31 12:00:00 1050588300 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050319500_1050845040:dup1.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-02 12:00:00 1052423280 1052907120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1052423280_1052907120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1052423280_1052907120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1052423280_1052907120.npz -2003-01-29 16:00:00 2003-12-31 12:00:00 1052990880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1052990880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1052990880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1052990880_1053474480.npz -2003-12-31 13:00:00 2004-08-30 20:00:00 1053474540 1053824880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1053474540_1053824880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1053474540_1053824880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1053474540_1053824880.npz -2012-03-13 15:00:00 2012-05-28 01:00:00 1057787460 1057896060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1057787460_1057896060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1057787460_1057896060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/61_CL(IMC)_1057787460_1057896060.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.19066521326700847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_62_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_62_CL(IMC).out deleted file mode 100644 index 433a23311c8501fb65dd55f02483e7a8c53fc402..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_62_CL(IMC).out +++ /dev/null @@ -1,87 +0,0 @@ -62_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1048215660_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1048215660_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1048215660_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1048741200_1049266800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1048741200_1049266800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1048741200_1049266800.npz -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1049266800_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1049266800_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1049266800_1049793840.npz -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1049793840_1050319440.npz -1997-12-31 12:00:00 1998-06-08 18:00:00 1050319440 1050548760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1050319440_1050845040.npz -1998-06-08 18:00:00 1998-06-08 19:00:00 1050548760 1050548820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1050319440_1050845040.npz'] -1998-06-08 19:00:00 1998-12-31 12:00:00 1050548820 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-06-16 12:00:00 1054001520 1054242000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1054001520_1054527120:dup1.npz -2005-06-16 12:00:00 2005-06-16 13:00:00 1054242000 1054242060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1054001520_1054527120:dup1.npz'] -2005-06-16 16:00:00 2005-12-31 12:00:00 1054242240 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1054001520_1054527120.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1054001520_1054527120:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1054001520_1054527120:dup1.npz -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1054527120_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1054527120_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1054527120_1055052720.npz -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1055052720_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1055052720_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 02:00:00 1056105360 1056630360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1056105360_1056630360.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1056105360_1056630360:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1056105360_1056630360.npz -2010-01-01 17:00:00 2010-12-31 12:00:00 1056632700 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1056632700_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1056632700_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1056632700_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 03:00:00 1059786000 1060312500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1059786000_1060312500.npz'] -2017-01-03 01:00:00 2017-12-31 12:00:00 1060316700 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1060316700_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/62_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.526587963104248 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_63_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_63_CL(IMC).out deleted file mode 100644 index 32aab4f1806e47d206cc24c656dfd740fd207d31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_63_CL(IMC).out +++ /dev/null @@ -1,46 +0,0 @@ -63_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-01-05 00:00:00 1994-12-31 12:00:00 1048222080 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1048222080_1048741200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1048222080_1048741200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1048222080_1048741200.npz -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-30 15:00:00 1048741200 1049265540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1048741200_1049265540.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1048741200_1049265540:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1048741200_1049265540.npz -1996-01-03 18:00:00 1996-12-31 12:00:00 1049271480 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049271480_1049793840.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049271480_1049793840:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049271480_1049793840.npz -1996-12-31 12:00:00 1997-01-05 15:00:00 1049793840 1049801220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049793840_1050319440:dup1.npz -1997-01-05 17:00:00 1997-01-06 15:00:00 1049801340 1049802660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049793840_1050319440:dup1.npz'] -1997-01-06 17:00:00 1997-04-09 15:00:00 1049802780 1049936580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049793840_1050319440:dup1.npz -1997-04-09 17:00:00 1997-04-16 04:00:00 1049936700 1049946000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049793840_1050319440:dup1.npz'] -1997-04-17 21:00:00 1997-12-31 12:00:00 1049948460 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049793840_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049793840_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1049793840_1050319440:dup1.npz -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1051897680_1052423280.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1051897680_1052423280:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1051897680_1052423280.npz -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1052423280_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1052423280_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1052423280_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-08-29 19:00:00 1053474540 1053823380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1053474540_1053823380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1053474540_1053823380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/63_CL(IMC)_1053474540_1053823380.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.12145435015360515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_64_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_64_CL(IMC).out deleted file mode 100644 index c0d16bd98b4da15188dba71c6979f63d71c736a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_64_CL(IMC).out +++ /dev/null @@ -1,22 +0,0 @@ -64_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2012-10-15 15:00:00 2012-12-31 12:00:00 1058098500 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1058098500_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1058098500_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1058098500_1058209200.npz -'StationConcatenate' object has no attribute 'existing_data' -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/64_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04474679629007975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_65_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_65_CL(IMC).out deleted file mode 100644 index 4e1bad734b10c5ed656307af52b6c4791b89a6bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_65_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -65_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.017298169930775962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_68_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_68_CL(IMC).out deleted file mode 100644 index 7052d3dc4accd0ab96c80959d39c813be9686fc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_68_CL(IMC).out +++ /dev/null @@ -1,8 +0,0 @@ -68_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-06 22:00:00 1056631080 1057121160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/68_CL(IMC)_1056631080_1057121160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/68_CL(IMC)_1056631080_1057121160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/68_CL(IMC)_1056631080_1057121160.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012059080600738525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_6_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_6_CL(IMC).out deleted file mode 100644 index a9d89d0b9072855b8c4246a416ccf7acd0008e26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_6_CL(IMC).out +++ /dev/null @@ -1,1497 +0,0 @@ -6_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2017-05-04 13:30:00 2017-12-31 13:30:00 1060491690 1060838730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1060491690_1060838730.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2019-12-31 13:30:00 2019-12-31 15:30:00 1061889930 1061890050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2019-12-31 15:30:00 2019-12-31 16:30:00 1061890050 1061890110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2019-12-31 16:30:00 2020-01-01 15:30:00 1061890110 1061891490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-01 15:30:00 2020-01-01 16:30:00 1061891490 1061891550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-01 16:30:00 2020-01-02 15:30:00 1061891550 1061892930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-02 15:30:00 2020-01-02 16:30:00 1061892930 1061892990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-02 16:30:00 2020-01-03 15:30:00 1061892990 1061894370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-03 15:30:00 2020-01-03 16:30:00 1061894370 1061894430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-03 16:30:00 2020-01-04 15:30:00 1061894430 1061895810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-04 15:30:00 2020-01-04 16:30:00 1061895810 1061895870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-04 16:30:00 2020-01-05 15:30:00 1061895870 1061897250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-05 15:30:00 2020-01-05 16:30:00 1061897250 1061897310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-05 16:30:00 2020-01-06 15:30:00 1061897310 1061898690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-06 15:30:00 2020-01-06 16:30:00 1061898690 1061898750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-06 16:30:00 2020-01-07 15:30:00 1061898750 1061900130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-07 15:30:00 2020-01-07 16:30:00 1061900130 1061900190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-07 16:30:00 2020-01-08 15:30:00 1061900190 1061901570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-08 15:30:00 2020-01-08 16:30:00 1061901570 1061901630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-08 16:30:00 2020-01-09 15:30:00 1061901630 1061903010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-09 15:30:00 2020-01-09 16:30:00 1061903010 1061903070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-09 16:30:00 2020-01-10 15:30:00 1061903070 1061904450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-10 15:30:00 2020-01-10 16:30:00 1061904450 1061904510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-10 16:30:00 2020-01-11 15:30:00 1061904510 1061905890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-11 15:30:00 2020-01-11 16:30:00 1061905890 1061905950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-11 16:30:00 2020-01-12 15:30:00 1061905950 1061907330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-12 15:30:00 2020-01-12 16:30:00 1061907330 1061907390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-12 16:30:00 2020-01-13 03:30:00 1061907390 1061908050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-13 03:30:00 2020-01-13 04:30:00 1061908050 1061908110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-13 05:30:00 2020-01-13 15:30:00 1061908170 1061908770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-13 15:30:00 2020-01-13 16:30:00 1061908770 1061908830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-13 16:30:00 2020-01-14 15:30:00 1061908830 1061910210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-14 15:30:00 2020-01-14 16:30:00 1061910210 1061910270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-14 16:30:00 2020-01-15 02:30:00 1061910270 1061910870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-15 02:30:00 2020-01-15 03:30:00 1061910870 1061910930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-15 03:30:00 2020-01-15 15:30:00 1061910930 1061911650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-15 15:30:00 2020-01-15 16:30:00 1061911650 1061911710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-15 16:30:00 2020-01-16 15:30:00 1061911710 1061913090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-16 15:30:00 2020-01-16 16:30:00 1061913090 1061913150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-16 16:30:00 2020-01-17 15:30:00 1061913150 1061914530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-17 15:30:00 2020-01-17 16:30:00 1061914530 1061914590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-17 16:30:00 2020-01-18 15:30:00 1061914590 1061915970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-18 15:30:00 2020-01-18 16:30:00 1061915970 1061916030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-18 16:30:00 2020-01-19 15:30:00 1061916030 1061917410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-19 15:30:00 2020-01-19 16:30:00 1061917410 1061917470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-19 16:30:00 2020-01-20 15:30:00 1061917470 1061918850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-20 15:30:00 2020-01-20 16:30:00 1061918850 1061918910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-20 16:30:00 2020-01-21 15:30:00 1061918910 1061920290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-21 15:30:00 2020-01-21 16:30:00 1061920290 1061920350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-21 16:30:00 2020-01-22 15:30:00 1061920350 1061921730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-22 15:30:00 2020-01-22 16:30:00 1061921730 1061921790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-22 16:30:00 2020-01-23 15:30:00 1061921790 1061923170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-23 15:30:00 2020-01-23 16:30:00 1061923170 1061923230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-23 16:30:00 2020-01-24 15:30:00 1061923230 1061924610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-24 15:30:00 2020-01-24 16:30:00 1061924610 1061924670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-24 16:30:00 2020-01-25 15:30:00 1061924670 1061926050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-25 15:30:00 2020-01-25 16:30:00 1061926050 1061926110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-25 16:30:00 2020-01-26 15:30:00 1061926110 1061927490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-26 15:30:00 2020-01-26 16:30:00 1061927490 1061927550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-26 16:30:00 2020-01-27 15:30:00 1061927550 1061928930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-27 15:30:00 2020-01-27 16:30:00 1061928930 1061928990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-27 16:30:00 2020-01-28 15:30:00 1061928990 1061930370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-28 15:30:00 2020-01-28 16:30:00 1061930370 1061930430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-28 16:30:00 2020-01-29 15:30:00 1061930430 1061931810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-29 15:30:00 2020-01-29 16:30:00 1061931810 1061931870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-29 16:30:00 2020-01-30 15:30:00 1061931870 1061933250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-30 15:30:00 2020-01-30 16:30:00 1061933250 1061933310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-30 16:30:00 2020-01-31 15:30:00 1061933310 1061934690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-01-31 15:30:00 2020-01-31 16:30:00 1061934690 1061934750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-01-31 16:30:00 2020-02-01 15:30:00 1061934750 1061936130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-01 15:30:00 2020-02-01 16:30:00 1061936130 1061936190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-01 16:30:00 2020-02-02 15:30:00 1061936190 1061937570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-02 15:30:00 2020-02-02 16:30:00 1061937570 1061937630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-02 16:30:00 2020-02-03 15:30:00 1061937630 1061939010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-03 15:30:00 2020-02-03 16:30:00 1061939010 1061939070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-03 16:30:00 2020-02-04 15:30:00 1061939070 1061940450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-04 15:30:00 2020-02-04 16:30:00 1061940450 1061940510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-04 16:30:00 2020-02-05 15:30:00 1061940510 1061941890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-05 15:30:00 2020-02-05 16:30:00 1061941890 1061941950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-05 16:30:00 2020-02-06 15:30:00 1061941950 1061943330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-06 15:30:00 2020-02-06 16:30:00 1061943330 1061943390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-06 16:30:00 2020-02-07 15:30:00 1061943390 1061944770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-07 15:30:00 2020-02-07 16:30:00 1061944770 1061944830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-07 16:30:00 2020-02-08 15:30:00 1061944830 1061946210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-08 15:30:00 2020-02-08 16:30:00 1061946210 1061946270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-08 16:30:00 2020-02-09 15:30:00 1061946270 1061947650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-09 15:30:00 2020-02-09 16:30:00 1061947650 1061947710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-09 16:30:00 2020-02-10 15:30:00 1061947710 1061949090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-10 15:30:00 2020-02-10 16:30:00 1061949090 1061949150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-10 16:30:00 2020-02-11 15:30:00 1061949150 1061950530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-11 15:30:00 2020-02-11 16:30:00 1061950530 1061950590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-11 16:30:00 2020-02-12 15:30:00 1061950590 1061951970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-12 15:30:00 2020-02-12 16:30:00 1061951970 1061952030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-12 16:30:00 2020-02-13 15:30:00 1061952030 1061953410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-13 15:30:00 2020-02-13 16:30:00 1061953410 1061953470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-13 16:30:00 2020-02-14 15:30:00 1061953470 1061954850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-14 15:30:00 2020-02-14 16:30:00 1061954850 1061954910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-14 16:30:00 2020-02-15 15:30:00 1061954910 1061956290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-15 15:30:00 2020-02-15 16:30:00 1061956290 1061956350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-15 16:30:00 2020-02-16 15:30:00 1061956350 1061957730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-16 15:30:00 2020-02-16 16:30:00 1061957730 1061957790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-16 16:30:00 2020-02-17 15:30:00 1061957790 1061959170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-17 15:30:00 2020-02-17 16:30:00 1061959170 1061959230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-17 16:30:00 2020-02-18 15:30:00 1061959230 1061960610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-18 15:30:00 2020-02-18 16:30:00 1061960610 1061960670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-18 16:30:00 2020-02-19 15:30:00 1061960670 1061962050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-19 15:30:00 2020-02-19 16:30:00 1061962050 1061962110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-19 16:30:00 2020-02-20 15:30:00 1061962110 1061963490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-20 15:30:00 2020-02-20 16:30:00 1061963490 1061963550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-20 16:30:00 2020-02-21 15:30:00 1061963550 1061964930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-21 15:30:00 2020-02-21 16:30:00 1061964930 1061964990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-21 16:30:00 2020-02-22 15:30:00 1061964990 1061966370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-22 15:30:00 2020-02-22 16:30:00 1061966370 1061966430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-22 16:30:00 2020-02-23 15:30:00 1061966430 1061967810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-23 15:30:00 2020-02-23 16:30:00 1061967810 1061967870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-23 16:30:00 2020-02-24 15:30:00 1061967870 1061969250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-24 15:30:00 2020-02-24 16:30:00 1061969250 1061969310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-24 16:30:00 2020-02-25 15:30:00 1061969310 1061970690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-25 15:30:00 2020-02-25 16:30:00 1061970690 1061970750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-25 16:30:00 2020-02-26 15:30:00 1061970750 1061972130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-26 15:30:00 2020-02-26 16:30:00 1061972130 1061972190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-26 16:30:00 2020-02-27 15:30:00 1061972190 1061973570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-27 15:30:00 2020-02-27 16:30:00 1061973570 1061973630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-27 16:30:00 2020-02-28 15:30:00 1061973630 1061975010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-28 15:30:00 2020-02-28 16:30:00 1061975010 1061975070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-28 16:30:00 2020-02-29 15:30:00 1061975070 1061976450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-02-29 15:30:00 2020-02-29 16:30:00 1061976450 1061976510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-02-29 16:30:00 2020-03-01 15:30:00 1061976510 1061977890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-01 15:30:00 2020-03-01 16:30:00 1061977890 1061977950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-01 16:30:00 2020-03-02 15:30:00 1061977950 1061979330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-02 15:30:00 2020-03-02 16:30:00 1061979330 1061979390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-02 16:30:00 2020-03-03 15:30:00 1061979390 1061980770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-03 15:30:00 2020-03-03 16:30:00 1061980770 1061980830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-03 16:30:00 2020-03-04 15:30:00 1061980830 1061982210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-04 15:30:00 2020-03-04 16:30:00 1061982210 1061982270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-04 16:30:00 2020-03-05 15:30:00 1061982270 1061983650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-05 15:30:00 2020-03-05 16:30:00 1061983650 1061983710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-05 16:30:00 2020-03-06 12:30:00 1061983710 1061984910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-06 12:30:00 2020-03-06 13:30:00 1061984910 1061984970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-12 00:30:00 2020-03-12 15:30:00 1061992830 1061993730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-12 15:30:00 2020-03-12 16:30:00 1061993730 1061993790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-12 16:30:00 2020-03-13 15:30:00 1061993790 1061995170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-13 15:30:00 2020-03-13 16:30:00 1061995170 1061995230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-13 16:30:00 2020-03-14 15:30:00 1061995230 1061996610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-14 15:30:00 2020-03-14 16:30:00 1061996610 1061996670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-14 16:30:00 2020-03-15 15:30:00 1061996670 1061998050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-15 15:30:00 2020-03-15 16:30:00 1061998050 1061998110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-15 16:30:00 2020-03-15 22:30:00 1061998110 1061998470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-15 22:30:00 2020-03-15 23:30:00 1061998470 1061998530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-15 23:30:00 2020-03-16 15:30:00 1061998530 1061999490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-16 15:30:00 2020-03-16 16:30:00 1061999490 1061999550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-16 16:30:00 2020-03-17 15:30:00 1061999550 1062000930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-17 15:30:00 2020-03-17 16:30:00 1062000930 1062000990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-17 16:30:00 2020-03-18 15:30:00 1062000990 1062002370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-18 15:30:00 2020-03-18 16:30:00 1062002370 1062002430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-18 16:30:00 2020-03-19 15:30:00 1062002430 1062003810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-19 15:30:00 2020-03-19 16:30:00 1062003810 1062003870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-19 16:30:00 2020-03-20 15:30:00 1062003870 1062005250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-20 15:30:00 2020-03-20 16:30:00 1062005250 1062005310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-20 16:30:00 2020-03-21 15:30:00 1062005310 1062006690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-21 15:30:00 2020-03-21 16:30:00 1062006690 1062006750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-21 16:30:00 2020-03-22 15:30:00 1062006750 1062008130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-22 15:30:00 2020-03-22 16:30:00 1062008130 1062008190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-22 16:30:00 2020-03-23 15:30:00 1062008190 1062009570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-23 15:30:00 2020-03-23 16:30:00 1062009570 1062009630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-23 16:30:00 2020-03-24 15:30:00 1062009630 1062011010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-24 15:30:00 2020-03-24 16:30:00 1062011010 1062011070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-24 16:30:00 2020-03-25 15:30:00 1062011070 1062012450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-25 15:30:00 2020-03-25 16:30:00 1062012450 1062012510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-25 16:30:00 2020-03-26 15:30:00 1062012510 1062013890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-26 15:30:00 2020-03-26 16:30:00 1062013890 1062013950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-26 16:30:00 2020-03-27 15:30:00 1062013950 1062015330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-27 15:30:00 2020-03-27 16:30:00 1062015330 1062015390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-27 16:30:00 2020-03-28 15:30:00 1062015390 1062016770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-28 15:30:00 2020-03-28 16:30:00 1062016770 1062016830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-28 16:30:00 2020-03-29 15:30:00 1062016830 1062018210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-29 15:30:00 2020-03-29 16:30:00 1062018210 1062018270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-29 16:30:00 2020-03-30 15:30:00 1062018270 1062019650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-30 15:30:00 2020-03-30 16:30:00 1062019650 1062019710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-30 16:30:00 2020-03-31 15:30:00 1062019710 1062021090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-03-31 15:30:00 2020-03-31 16:30:00 1062021090 1062021150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-03-31 16:30:00 2020-04-01 15:30:00 1062021150 1062022530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-01 15:30:00 2020-04-01 16:30:00 1062022530 1062022590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-01 16:30:00 2020-04-02 15:30:00 1062022590 1062023970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-02 15:30:00 2020-04-02 16:30:00 1062023970 1062024030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-02 16:30:00 2020-04-03 15:30:00 1062024030 1062025410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-03 15:30:00 2020-04-03 16:30:00 1062025410 1062025470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-03 16:30:00 2020-04-04 15:30:00 1062025470 1062026850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-04 15:30:00 2020-04-04 16:30:00 1062026850 1062026910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-04 16:30:00 2020-04-05 15:30:00 1062026910 1062028290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-05 15:30:00 2020-04-05 16:30:00 1062028290 1062028350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-05 16:30:00 2020-04-06 15:30:00 1062028350 1062029730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-06 15:30:00 2020-04-06 16:30:00 1062029730 1062029790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-06 16:30:00 2020-04-07 15:30:00 1062029790 1062031170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-07 15:30:00 2020-04-07 16:30:00 1062031170 1062031230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-07 16:30:00 2020-04-08 15:30:00 1062031230 1062032610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-08 15:30:00 2020-04-08 16:30:00 1062032610 1062032670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-08 16:30:00 2020-04-09 15:30:00 1062032670 1062034050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-09 15:30:00 2020-04-09 16:30:00 1062034050 1062034110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-09 16:30:00 2020-04-10 15:30:00 1062034110 1062035490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-10 15:30:00 2020-04-10 16:30:00 1062035490 1062035550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-10 16:30:00 2020-04-11 15:30:00 1062035550 1062036930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-11 15:30:00 2020-04-11 16:30:00 1062036930 1062036990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-11 16:30:00 2020-04-12 15:30:00 1062036990 1062038370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-12 15:30:00 2020-04-12 16:30:00 1062038370 1062038430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-12 16:30:00 2020-04-13 15:30:00 1062038430 1062039810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-13 15:30:00 2020-04-13 16:30:00 1062039810 1062039870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-13 16:30:00 2020-04-14 15:30:00 1062039870 1062041250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-14 15:30:00 2020-04-14 16:30:00 1062041250 1062041310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-14 16:30:00 2020-04-15 15:30:00 1062041310 1062042690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-15 15:30:00 2020-04-15 16:30:00 1062042690 1062042750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-15 16:30:00 2020-04-16 15:30:00 1062042750 1062044130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-16 15:30:00 2020-04-16 16:30:00 1062044130 1062044190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-16 16:30:00 2020-04-16 22:30:00 1062044190 1062044550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-16 22:30:00 2020-04-16 23:30:00 1062044550 1062044610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-17 00:30:00 2020-04-17 15:30:00 1062044670 1062045570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-17 15:30:00 2020-04-17 16:30:00 1062045570 1062045630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-17 16:30:00 2020-04-18 15:30:00 1062045630 1062047010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-18 15:30:00 2020-04-18 16:30:00 1062047010 1062047070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-18 16:30:00 2020-04-19 15:30:00 1062047070 1062048450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-19 15:30:00 2020-04-19 16:30:00 1062048450 1062048510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-19 16:30:00 2020-04-20 15:30:00 1062048510 1062049890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-20 15:30:00 2020-04-20 16:30:00 1062049890 1062049950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-20 16:30:00 2020-04-21 15:30:00 1062049950 1062051330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-21 15:30:00 2020-04-21 16:30:00 1062051330 1062051390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-21 16:30:00 2020-04-22 15:30:00 1062051390 1062052770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-22 15:30:00 2020-04-22 16:30:00 1062052770 1062052830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-22 16:30:00 2020-04-23 15:30:00 1062052830 1062054210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-23 15:30:00 2020-04-23 16:30:00 1062054210 1062054270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-23 16:30:00 2020-04-24 15:30:00 1062054270 1062055650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-24 15:30:00 2020-04-24 16:30:00 1062055650 1062055710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-24 16:30:00 2020-04-25 15:30:00 1062055710 1062057090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-25 15:30:00 2020-04-25 16:30:00 1062057090 1062057150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-25 16:30:00 2020-04-26 15:30:00 1062057150 1062058530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-26 15:30:00 2020-04-26 16:30:00 1062058530 1062058590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-26 16:30:00 2020-04-27 15:30:00 1062058590 1062059970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-27 15:30:00 2020-04-27 16:30:00 1062059970 1062060030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-27 16:30:00 2020-04-28 15:30:00 1062060030 1062061410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-28 15:30:00 2020-04-28 16:30:00 1062061410 1062061470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-28 16:30:00 2020-04-29 15:30:00 1062061470 1062062850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-29 15:30:00 2020-04-29 16:30:00 1062062850 1062062910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-29 16:30:00 2020-04-30 15:30:00 1062062910 1062064290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-04-30 15:30:00 2020-04-30 16:30:00 1062064290 1062064350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-04-30 16:30:00 2020-05-01 15:30:00 1062064350 1062065730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-01 15:30:00 2020-05-01 16:30:00 1062065730 1062065790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-01 16:30:00 2020-05-02 15:30:00 1062065790 1062067170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-02 15:30:00 2020-05-02 16:30:00 1062067170 1062067230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-02 16:30:00 2020-05-03 15:30:00 1062067230 1062068610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-03 15:30:00 2020-05-03 16:30:00 1062068610 1062068670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-03 16:30:00 2020-05-04 15:30:00 1062068670 1062070050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-04 15:30:00 2020-05-04 16:30:00 1062070050 1062070110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-04 16:30:00 2020-05-05 15:30:00 1062070110 1062071490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-05 15:30:00 2020-05-05 16:30:00 1062071490 1062071550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-05 16:30:00 2020-05-06 15:30:00 1062071550 1062072930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-06 15:30:00 2020-05-06 16:30:00 1062072930 1062072990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-06 16:30:00 2020-05-07 15:30:00 1062072990 1062074370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-07 15:30:00 2020-05-07 16:30:00 1062074370 1062074430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-07 16:30:00 2020-05-08 15:30:00 1062074430 1062075810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-08 15:30:00 2020-05-08 16:30:00 1062075810 1062075870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-08 16:30:00 2020-05-09 15:30:00 1062075870 1062077250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-09 15:30:00 2020-05-09 16:30:00 1062077250 1062077310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-09 16:30:00 2020-05-10 15:30:00 1062077310 1062078690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-10 15:30:00 2020-05-10 16:30:00 1062078690 1062078750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-10 16:30:00 2020-05-11 15:30:00 1062078750 1062080130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-11 15:30:00 2020-05-11 16:30:00 1062080130 1062080190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-11 16:30:00 2020-05-12 15:30:00 1062080190 1062081570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-12 15:30:00 2020-05-12 16:30:00 1062081570 1062081630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-12 16:30:00 2020-05-13 01:30:00 1062081630 1062082170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-13 01:30:00 2020-05-13 02:30:00 1062082170 1062082230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-13 03:30:00 2020-05-13 15:30:00 1062082290 1062083010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-13 15:30:00 2020-05-13 16:30:00 1062083010 1062083070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-13 16:30:00 2020-05-14 15:30:00 1062083070 1062084450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-14 15:30:00 2020-05-14 16:30:00 1062084450 1062084510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-14 16:30:00 2020-05-15 15:30:00 1062084510 1062085890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-15 15:30:00 2020-05-15 16:30:00 1062085890 1062085950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-15 16:30:00 2020-05-16 15:30:00 1062085950 1062087330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-16 15:30:00 2020-05-16 16:30:00 1062087330 1062087390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-16 16:30:00 2020-05-17 15:30:00 1062087390 1062088770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-17 15:30:00 2020-05-17 16:30:00 1062088770 1062088830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-17 16:30:00 2020-05-18 15:30:00 1062088830 1062090210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-18 15:30:00 2020-05-18 16:30:00 1062090210 1062090270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-18 16:30:00 2020-05-19 15:30:00 1062090270 1062091650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-19 15:30:00 2020-05-19 16:30:00 1062091650 1062091710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-19 16:30:00 2020-05-20 15:30:00 1062091710 1062093090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-20 15:30:00 2020-05-20 16:30:00 1062093090 1062093150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-20 16:30:00 2020-05-21 15:30:00 1062093150 1062094530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-21 15:30:00 2020-05-21 16:30:00 1062094530 1062094590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-21 16:30:00 2020-05-22 15:30:00 1062094590 1062095970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-22 15:30:00 2020-05-22 16:30:00 1062095970 1062096030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-22 16:30:00 2020-05-23 15:30:00 1062096030 1062097410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-23 15:30:00 2020-05-23 16:30:00 1062097410 1062097470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-23 16:30:00 2020-05-24 15:30:00 1062097470 1062098850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-24 15:30:00 2020-05-24 16:30:00 1062098850 1062098910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-24 16:30:00 2020-05-25 06:30:00 1062098910 1062099750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-25 06:30:00 2020-05-25 07:30:00 1062099750 1062099810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-25 07:30:00 2020-05-25 15:30:00 1062099810 1062100290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-25 15:30:00 2020-05-25 16:30:00 1062100290 1062100350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-25 16:30:00 2020-05-26 15:30:00 1062100350 1062101730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-26 15:30:00 2020-05-26 16:30:00 1062101730 1062101790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-26 16:30:00 2020-05-27 15:30:00 1062101790 1062103170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-27 15:30:00 2020-05-27 16:30:00 1062103170 1062103230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-27 16:30:00 2020-05-28 15:30:00 1062103230 1062104610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-28 15:30:00 2020-05-28 16:30:00 1062104610 1062104670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-28 16:30:00 2020-05-29 15:30:00 1062104670 1062106050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-29 15:30:00 2020-05-29 16:30:00 1062106050 1062106110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-29 16:30:00 2020-05-30 15:30:00 1062106110 1062107490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-30 15:30:00 2020-05-30 16:30:00 1062107490 1062107550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-30 16:30:00 2020-05-31 15:30:00 1062107550 1062108930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-05-31 15:30:00 2020-05-31 16:30:00 1062108930 1062108990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-05-31 16:30:00 2020-06-01 01:30:00 1062108990 1062109530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-01 01:30:00 2020-06-01 02:30:00 1062109530 1062109590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-01 03:30:00 2020-06-01 15:30:00 1062109650 1062110370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-01 15:30:00 2020-06-01 16:30:00 1062110370 1062110430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-01 16:30:00 2020-06-02 15:30:00 1062110430 1062111810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-02 15:30:00 2020-06-02 16:30:00 1062111810 1062111870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-02 16:30:00 2020-06-03 15:30:00 1062111870 1062113250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-03 15:30:00 2020-06-03 16:30:00 1062113250 1062113310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-03 16:30:00 2020-06-04 15:30:00 1062113310 1062114690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-04 15:30:00 2020-06-04 16:30:00 1062114690 1062114750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-04 16:30:00 2020-06-05 15:30:00 1062114750 1062116130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-05 15:30:00 2020-06-05 16:30:00 1062116130 1062116190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-05 16:30:00 2020-06-06 15:30:00 1062116190 1062117570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-06 15:30:00 2020-06-06 16:30:00 1062117570 1062117630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-06 16:30:00 2020-06-07 15:30:00 1062117630 1062119010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-07 15:30:00 2020-06-07 16:30:00 1062119010 1062119070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-07 16:30:00 2020-06-08 15:30:00 1062119070 1062120450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-08 15:30:00 2020-06-08 16:30:00 1062120450 1062120510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-08 16:30:00 2020-06-09 15:30:00 1062120510 1062121890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-09 15:30:00 2020-06-09 16:30:00 1062121890 1062121950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-09 16:30:00 2020-06-10 15:30:00 1062121950 1062123330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-10 15:30:00 2020-06-10 16:30:00 1062123330 1062123390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-10 16:30:00 2020-06-11 15:30:00 1062123390 1062124770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-11 15:30:00 2020-06-11 16:30:00 1062124770 1062124830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-11 16:30:00 2020-06-12 15:30:00 1062124830 1062126210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-12 15:30:00 2020-06-12 16:30:00 1062126210 1062126270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-12 16:30:00 2020-06-13 15:30:00 1062126270 1062127650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-13 15:30:00 2020-06-13 16:30:00 1062127650 1062127710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-13 16:30:00 2020-06-14 15:30:00 1062127710 1062129090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-14 15:30:00 2020-06-14 16:30:00 1062129090 1062129150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-14 16:30:00 2020-06-15 15:30:00 1062129150 1062130530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-15 15:30:00 2020-06-15 16:30:00 1062130530 1062130590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-15 16:30:00 2020-06-16 15:30:00 1062130590 1062131970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-16 15:30:00 2020-06-16 16:30:00 1062131970 1062132030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-16 16:30:00 2020-06-17 15:30:00 1062132030 1062133410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-17 15:30:00 2020-06-17 16:30:00 1062133410 1062133470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-17 16:30:00 2020-06-18 15:30:00 1062133470 1062134850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-18 15:30:00 2020-06-18 16:30:00 1062134850 1062134910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-18 16:30:00 2020-06-19 15:30:00 1062134910 1062136290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-19 15:30:00 2020-06-19 16:30:00 1062136290 1062136350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-19 16:30:00 2020-06-20 15:30:00 1062136350 1062137730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-20 15:30:00 2020-06-20 16:30:00 1062137730 1062137790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-20 16:30:00 2020-06-21 15:30:00 1062137790 1062139170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-21 15:30:00 2020-06-21 16:30:00 1062139170 1062139230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-21 16:30:00 2020-06-22 15:30:00 1062139230 1062140610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-22 15:30:00 2020-06-22 16:30:00 1062140610 1062140670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-22 16:30:00 2020-06-23 15:30:00 1062140670 1062142050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-23 15:30:00 2020-06-23 16:30:00 1062142050 1062142110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-23 16:30:00 2020-06-24 15:30:00 1062142110 1062143490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-24 15:30:00 2020-06-24 16:30:00 1062143490 1062143550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-24 16:30:00 2020-06-25 15:30:00 1062143550 1062144930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-25 15:30:00 2020-06-25 16:30:00 1062144930 1062144990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-25 16:30:00 2020-06-26 15:30:00 1062144990 1062146370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-26 15:30:00 2020-06-26 16:30:00 1062146370 1062146430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-26 16:30:00 2020-06-27 15:30:00 1062146430 1062147810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-27 15:30:00 2020-06-27 16:30:00 1062147810 1062147870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-27 16:30:00 2020-06-28 15:30:00 1062147870 1062149250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-28 15:30:00 2020-06-28 16:30:00 1062149250 1062149310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-28 16:30:00 2020-06-29 15:30:00 1062149310 1062150690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-29 15:30:00 2020-06-29 16:30:00 1062150690 1062150750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-29 16:30:00 2020-06-30 15:30:00 1062150750 1062152130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-06-30 15:30:00 2020-06-30 16:30:00 1062152130 1062152190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-06-30 16:30:00 2020-07-01 15:30:00 1062152190 1062153570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-01 15:30:00 2020-07-01 16:30:00 1062153570 1062153630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-01 16:30:00 2020-07-02 15:30:00 1062153630 1062155010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-02 15:30:00 2020-07-02 16:30:00 1062155010 1062155070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-02 16:30:00 2020-07-03 15:30:00 1062155070 1062156450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-03 15:30:00 2020-07-03 16:30:00 1062156450 1062156510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-03 16:30:00 2020-07-04 15:30:00 1062156510 1062157890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-04 15:30:00 2020-07-04 16:30:00 1062157890 1062157950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-04 16:30:00 2020-07-05 06:30:00 1062157950 1062158790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-05 06:30:00 2020-07-05 07:30:00 1062158790 1062158850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-05 08:30:00 2020-07-05 15:30:00 1062158910 1062159330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-05 15:30:00 2020-07-05 16:30:00 1062159330 1062159390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-05 16:30:00 2020-07-06 15:30:00 1062159390 1062160770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-06 15:30:00 2020-07-06 16:30:00 1062160770 1062160830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-06 16:30:00 2020-07-07 15:30:00 1062160830 1062162210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-07 15:30:00 2020-07-07 16:30:00 1062162210 1062162270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-07 16:30:00 2020-07-08 15:30:00 1062162270 1062163650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-08 15:30:00 2020-07-08 16:30:00 1062163650 1062163710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-08 16:30:00 2020-07-09 15:30:00 1062163710 1062165090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-09 15:30:00 2020-07-09 16:30:00 1062165090 1062165150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-09 16:30:00 2020-07-10 15:30:00 1062165150 1062166530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-10 15:30:00 2020-07-10 16:30:00 1062166530 1062166590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-10 16:30:00 2020-07-11 15:30:00 1062166590 1062167970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-11 15:30:00 2020-07-11 16:30:00 1062167970 1062168030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-11 16:30:00 2020-07-12 15:30:00 1062168030 1062169410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-12 15:30:00 2020-07-12 16:30:00 1062169410 1062169470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-12 16:30:00 2020-07-13 15:30:00 1062169470 1062170850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-13 15:30:00 2020-07-13 16:30:00 1062170850 1062170910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-13 16:30:00 2020-07-14 15:30:00 1062170910 1062172290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-14 15:30:00 2020-07-14 16:30:00 1062172290 1062172350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-14 16:30:00 2020-07-15 15:30:00 1062172350 1062173730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-15 15:30:00 2020-07-15 16:30:00 1062173730 1062173790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-15 16:30:00 2020-07-16 15:30:00 1062173790 1062175170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-16 15:30:00 2020-07-16 16:30:00 1062175170 1062175230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-16 16:30:00 2020-07-17 15:30:00 1062175230 1062176610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-17 15:30:00 2020-07-17 16:30:00 1062176610 1062176670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-17 16:30:00 2020-07-18 15:30:00 1062176670 1062178050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-18 15:30:00 2020-07-18 16:30:00 1062178050 1062178110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-18 16:30:00 2020-07-19 15:30:00 1062178110 1062179490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-19 15:30:00 2020-07-19 16:30:00 1062179490 1062179550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-19 16:30:00 2020-07-20 15:30:00 1062179550 1062180930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-20 15:30:00 2020-07-20 16:30:00 1062180930 1062180990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-20 16:30:00 2020-07-21 15:30:00 1062180990 1062182370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-21 15:30:00 2020-07-21 16:30:00 1062182370 1062182430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-21 16:30:00 2020-07-22 15:30:00 1062182430 1062183810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-22 15:30:00 2020-07-22 16:30:00 1062183810 1062183870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-22 16:30:00 2020-07-23 15:30:00 1062183870 1062185250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-23 15:30:00 2020-07-23 16:30:00 1062185250 1062185310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-23 16:30:00 2020-07-24 15:30:00 1062185310 1062186690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-24 15:30:00 2020-07-24 16:30:00 1062186690 1062186750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-24 16:30:00 2020-07-25 15:30:00 1062186750 1062188130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-25 15:30:00 2020-07-25 16:30:00 1062188130 1062188190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-25 16:30:00 2020-07-26 15:30:00 1062188190 1062189570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-26 15:30:00 2020-07-26 16:30:00 1062189570 1062189630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-26 16:30:00 2020-07-27 15:30:00 1062189630 1062191010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-27 15:30:00 2020-07-27 16:30:00 1062191010 1062191070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-27 16:30:00 2020-07-28 15:30:00 1062191070 1062192450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-28 15:30:00 2020-07-28 16:30:00 1062192450 1062192510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-28 16:30:00 2020-07-29 15:30:00 1062192510 1062193890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-29 15:30:00 2020-07-29 16:30:00 1062193890 1062193950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-29 16:30:00 2020-07-30 15:30:00 1062193950 1062195330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-30 15:30:00 2020-07-30 16:30:00 1062195330 1062195390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-30 16:30:00 2020-07-31 15:30:00 1062195390 1062196770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-07-31 15:30:00 2020-07-31 16:30:00 1062196770 1062196830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-07-31 16:30:00 2020-08-01 15:30:00 1062196830 1062198210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-01 15:30:00 2020-08-01 16:30:00 1062198210 1062198270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-01 16:30:00 2020-08-02 15:30:00 1062198270 1062199650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-02 15:30:00 2020-08-02 16:30:00 1062199650 1062199710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-02 16:30:00 2020-08-03 15:30:00 1062199710 1062201090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-03 15:30:00 2020-08-03 16:30:00 1062201090 1062201150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-03 16:30:00 2020-08-04 15:30:00 1062201150 1062202530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-04 15:30:00 2020-08-04 16:30:00 1062202530 1062202590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-04 16:30:00 2020-08-05 15:30:00 1062202590 1062203970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-05 15:30:00 2020-08-05 16:30:00 1062203970 1062204030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-05 16:30:00 2020-08-06 15:30:00 1062204030 1062205410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-06 15:30:00 2020-08-06 16:30:00 1062205410 1062205470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-06 16:30:00 2020-08-07 15:30:00 1062205470 1062206850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-07 15:30:00 2020-08-07 16:30:00 1062206850 1062206910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-07 16:30:00 2020-08-08 15:30:00 1062206910 1062208290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-08 15:30:00 2020-08-08 16:30:00 1062208290 1062208350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-08 16:30:00 2020-08-09 15:30:00 1062208350 1062209730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-09 15:30:00 2020-08-09 16:30:00 1062209730 1062209790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-09 16:30:00 2020-08-10 15:30:00 1062209790 1062211170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-10 15:30:00 2020-08-10 16:30:00 1062211170 1062211230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-10 16:30:00 2020-08-11 15:30:00 1062211230 1062212610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-11 15:30:00 2020-08-11 16:30:00 1062212610 1062212670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-11 16:30:00 2020-08-12 15:30:00 1062212670 1062214050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-12 15:30:00 2020-08-12 16:30:00 1062214050 1062214110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-12 16:30:00 2020-08-13 15:30:00 1062214110 1062215490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-13 15:30:00 2020-08-13 16:30:00 1062215490 1062215550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-13 16:30:00 2020-08-14 15:30:00 1062215550 1062216930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-14 15:30:00 2020-08-14 16:30:00 1062216930 1062216990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-14 16:30:00 2020-08-15 15:30:00 1062216990 1062218370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-15 15:30:00 2020-08-15 16:30:00 1062218370 1062218430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-15 16:30:00 2020-08-16 15:30:00 1062218430 1062219810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-16 15:30:00 2020-08-16 16:30:00 1062219810 1062219870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-16 16:30:00 2020-08-17 15:30:00 1062219870 1062221250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-17 15:30:00 2020-08-17 16:30:00 1062221250 1062221310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-17 16:30:00 2020-08-18 15:30:00 1062221310 1062222690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-18 15:30:00 2020-08-18 16:30:00 1062222690 1062222750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-18 16:30:00 2020-08-19 15:30:00 1062222750 1062224130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-19 15:30:00 2020-08-19 16:30:00 1062224130 1062224190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-19 16:30:00 2020-08-20 15:30:00 1062224190 1062225570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-20 15:30:00 2020-08-20 16:30:00 1062225570 1062225630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-20 16:30:00 2020-08-21 15:30:00 1062225630 1062227010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-21 15:30:00 2020-08-21 16:30:00 1062227010 1062227070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-21 16:30:00 2020-08-22 15:30:00 1062227070 1062228450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-22 15:30:00 2020-08-22 16:30:00 1062228450 1062228510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-22 16:30:00 2020-08-23 15:30:00 1062228510 1062229890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-23 15:30:00 2020-08-23 16:30:00 1062229890 1062229950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-23 16:30:00 2020-08-24 15:30:00 1062229950 1062231330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-24 15:30:00 2020-08-24 16:30:00 1062231330 1062231390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-24 16:30:00 2020-08-25 15:30:00 1062231390 1062232770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-25 15:30:00 2020-08-25 16:30:00 1062232770 1062232830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-25 16:30:00 2020-08-26 15:30:00 1062232830 1062234210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-26 15:30:00 2020-08-26 16:30:00 1062234210 1062234270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-26 16:30:00 2020-08-27 15:30:00 1062234270 1062235650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-27 15:30:00 2020-08-27 16:30:00 1062235650 1062235710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-27 16:30:00 2020-08-28 15:30:00 1062235710 1062237090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-28 15:30:00 2020-08-28 16:30:00 1062237090 1062237150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-28 16:30:00 2020-08-29 15:30:00 1062237150 1062238530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-29 15:30:00 2020-08-29 16:30:00 1062238530 1062238590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-29 16:30:00 2020-08-30 15:30:00 1062238590 1062239970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-30 15:30:00 2020-08-30 16:30:00 1062239970 1062240030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-30 16:30:00 2020-08-31 15:30:00 1062240030 1062241410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-08-31 15:30:00 2020-08-31 16:30:00 1062241410 1062241470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-08-31 16:30:00 2020-09-01 15:30:00 1062241470 1062242850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-01 15:30:00 2020-09-01 16:30:00 1062242850 1062242910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-01 16:30:00 2020-09-02 15:30:00 1062242910 1062244290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-02 15:30:00 2020-09-02 16:30:00 1062244290 1062244350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-02 16:30:00 2020-09-03 15:30:00 1062244350 1062245730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-03 15:30:00 2020-09-03 16:30:00 1062245730 1062245790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-03 16:30:00 2020-09-04 04:30:00 1062245790 1062246510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-04 04:30:00 2020-09-04 05:30:00 1062246510 1062246570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-04 05:30:00 2020-09-04 06:30:00 1062246570 1062246630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-04 06:30:00 2020-09-04 07:30:00 1062246630 1062246690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-04 08:30:00 2020-09-04 15:30:00 1062246750 1062247170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-04 15:30:00 2020-09-04 16:30:00 1062247170 1062247230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-04 16:30:00 2020-09-04 23:30:00 1062247230 1062247650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-04 23:30:00 2020-09-05 00:30:00 1062247650 1062247710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-05 00:30:00 2020-09-05 15:30:00 1062247710 1062248610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-05 15:30:00 2020-09-05 16:30:00 1062248610 1062248670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-05 16:30:00 2020-09-06 15:30:00 1062248670 1062250050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-06 15:30:00 2020-09-06 16:30:00 1062250050 1062250110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-06 16:30:00 2020-09-07 15:30:00 1062250110 1062251490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-07 15:30:00 2020-09-07 16:30:00 1062251490 1062251550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-07 16:30:00 2020-09-08 15:30:00 1062251550 1062252930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-08 15:30:00 2020-09-08 16:30:00 1062252930 1062252990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-08 16:30:00 2020-09-09 15:30:00 1062252990 1062254370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-09 15:30:00 2020-09-09 16:30:00 1062254370 1062254430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-09 16:30:00 2020-09-10 15:30:00 1062254430 1062255810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-10 15:30:00 2020-09-10 16:30:00 1062255810 1062255870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-10 16:30:00 2020-09-11 15:30:00 1062255870 1062257250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-11 15:30:00 2020-09-11 16:30:00 1062257250 1062257310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-11 16:30:00 2020-09-12 15:30:00 1062257310 1062258690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-12 15:30:00 2020-09-12 16:30:00 1062258690 1062258750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-12 16:30:00 2020-09-13 15:30:00 1062258750 1062260130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-13 15:30:00 2020-09-13 16:30:00 1062260130 1062260190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-13 16:30:00 2020-09-14 15:30:00 1062260190 1062261570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-14 15:30:00 2020-09-14 16:30:00 1062261570 1062261630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-14 16:30:00 2020-09-15 15:30:00 1062261630 1062263010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-15 15:30:00 2020-09-15 16:30:00 1062263010 1062263070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-15 16:30:00 2020-09-16 15:30:00 1062263070 1062264450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-16 15:30:00 2020-09-16 16:30:00 1062264450 1062264510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-16 16:30:00 2020-09-17 15:30:00 1062264510 1062265890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-17 15:30:00 2020-09-17 16:30:00 1062265890 1062265950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-17 16:30:00 2020-09-18 15:30:00 1062265950 1062267330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-18 15:30:00 2020-09-18 16:30:00 1062267330 1062267390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-18 16:30:00 2020-09-19 15:30:00 1062267390 1062268770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-19 15:30:00 2020-09-19 16:30:00 1062268770 1062268830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-19 16:30:00 2020-09-20 15:30:00 1062268830 1062270210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-20 15:30:00 2020-09-20 16:30:00 1062270210 1062270270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-20 16:30:00 2020-09-21 15:30:00 1062270270 1062271650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-21 15:30:00 2020-09-21 16:30:00 1062271650 1062271710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-21 16:30:00 2020-09-22 15:30:00 1062271710 1062273090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-22 15:30:00 2020-09-22 16:30:00 1062273090 1062273150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-22 16:30:00 2020-09-23 15:30:00 1062273150 1062274530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-23 15:30:00 2020-09-23 16:30:00 1062274530 1062274590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-23 16:30:00 2020-09-24 15:30:00 1062274590 1062275970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-24 15:30:00 2020-09-24 16:30:00 1062275970 1062276030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-24 16:30:00 2020-09-25 15:30:00 1062276030 1062277410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-25 15:30:00 2020-09-25 16:30:00 1062277410 1062277470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-25 16:30:00 2020-09-26 15:30:00 1062277470 1062278850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-26 15:30:00 2020-09-26 16:30:00 1062278850 1062278910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-26 16:30:00 2020-09-27 15:30:00 1062278910 1062280290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-27 15:30:00 2020-09-27 16:30:00 1062280290 1062280350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-27 16:30:00 2020-09-28 15:30:00 1062280350 1062281730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-28 15:30:00 2020-09-28 16:30:00 1062281730 1062281790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-28 16:30:00 2020-09-29 15:30:00 1062281790 1062283170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-29 15:30:00 2020-09-29 16:30:00 1062283170 1062283230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-29 16:30:00 2020-09-30 15:30:00 1062283230 1062284610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-09-30 15:30:00 2020-09-30 16:30:00 1062284610 1062284670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-09-30 16:30:00 2020-10-01 15:30:00 1062284670 1062286050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-01 15:30:00 2020-10-01 16:30:00 1062286050 1062286110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-01 16:30:00 2020-10-02 02:30:00 1062286110 1062286710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-02 02:30:00 2020-10-02 03:30:00 1062286710 1062286770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-05 01:30:00 2020-10-05 15:30:00 1062290970 1062291810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-05 15:30:00 2020-10-05 16:30:00 1062291810 1062291870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-05 16:30:00 2020-10-06 15:30:00 1062291870 1062293250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-06 15:30:00 2020-10-06 16:30:00 1062293250 1062293310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-06 16:30:00 2020-10-07 15:30:00 1062293310 1062294690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-07 15:30:00 2020-10-07 16:30:00 1062294690 1062294750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-07 16:30:00 2020-10-08 15:30:00 1062294750 1062296130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-08 15:30:00 2020-10-08 16:30:00 1062296130 1062296190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-08 16:30:00 2020-10-09 15:30:00 1062296190 1062297570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-09 15:30:00 2020-10-09 16:30:00 1062297570 1062297630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-09 16:30:00 2020-10-10 15:30:00 1062297630 1062299010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-10 15:30:00 2020-10-10 16:30:00 1062299010 1062299070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-10 16:30:00 2020-10-11 15:30:00 1062299070 1062300450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-11 15:30:00 2020-10-11 16:30:00 1062300450 1062300510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-11 16:30:00 2020-10-12 15:30:00 1062300510 1062301890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-12 15:30:00 2020-10-12 16:30:00 1062301890 1062301950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-12 16:30:00 2020-10-13 01:30:00 1062301950 1062302490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-13 01:30:00 2020-10-13 02:30:00 1062302490 1062302550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-13 03:30:00 2020-10-14 15:30:00 1062302610 1062304770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-14 15:30:00 2020-10-14 16:30:00 1062304770 1062304830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-14 16:30:00 2020-10-15 15:30:00 1062304830 1062306210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-15 15:30:00 2020-10-15 16:30:00 1062306210 1062306270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-15 16:30:00 2020-10-16 15:30:00 1062306270 1062307650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-16 15:30:00 2020-10-16 16:30:00 1062307650 1062307710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-16 16:30:00 2020-10-17 15:30:00 1062307710 1062309090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-17 15:30:00 2020-10-17 16:30:00 1062309090 1062309150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-17 16:30:00 2020-10-18 15:30:00 1062309150 1062310530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-18 15:30:00 2020-10-18 16:30:00 1062310530 1062310590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-18 16:30:00 2020-10-19 15:30:00 1062310590 1062311970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-19 15:30:00 2020-10-19 16:30:00 1062311970 1062312030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-19 16:30:00 2020-10-20 15:30:00 1062312030 1062313410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-20 15:30:00 2020-10-20 16:30:00 1062313410 1062313470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-20 16:30:00 2020-10-21 15:30:00 1062313470 1062314850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-21 15:30:00 2020-10-21 16:30:00 1062314850 1062314910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-21 16:30:00 2020-10-22 15:30:00 1062314910 1062316290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-22 15:30:00 2020-10-22 16:30:00 1062316290 1062316350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-22 16:30:00 2020-10-23 15:30:00 1062316350 1062317730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-23 15:30:00 2020-10-23 16:30:00 1062317730 1062317790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-23 16:30:00 2020-10-24 15:30:00 1062317790 1062319170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-24 15:30:00 2020-10-24 16:30:00 1062319170 1062319230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-24 16:30:00 2020-10-25 15:30:00 1062319230 1062320610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-25 15:30:00 2020-10-25 16:30:00 1062320610 1062320670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-25 16:30:00 2020-10-26 15:30:00 1062320670 1062322050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-26 15:30:00 2020-10-26 16:30:00 1062322050 1062322110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-26 16:30:00 2020-10-27 15:30:00 1062322110 1062323490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-27 15:30:00 2020-10-27 16:30:00 1062323490 1062323550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-27 16:30:00 2020-10-28 15:30:00 1062323550 1062324930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-28 15:30:00 2020-10-28 16:30:00 1062324930 1062324990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-28 16:30:00 2020-10-29 01:30:00 1062324990 1062325530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-29 01:30:00 2020-10-29 02:30:00 1062325530 1062325590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-29 05:30:00 2020-10-29 15:30:00 1062325770 1062326370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-29 15:30:00 2020-10-29 16:30:00 1062326370 1062326430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-29 16:30:00 2020-10-30 15:30:00 1062326430 1062327810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-30 15:30:00 2020-10-30 16:30:00 1062327810 1062327870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-30 16:30:00 2020-10-31 15:30:00 1062327870 1062329250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-10-31 15:30:00 2020-10-31 16:30:00 1062329250 1062329310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-10-31 16:30:00 2020-11-01 15:30:00 1062329310 1062330690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-01 15:30:00 2020-11-01 16:30:00 1062330690 1062330750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-01 16:30:00 2020-11-02 15:30:00 1062330750 1062332130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-02 15:30:00 2020-11-02 16:30:00 1062332130 1062332190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-02 16:30:00 2020-11-03 15:30:00 1062332190 1062333570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-03 15:30:00 2020-11-03 16:30:00 1062333570 1062333630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-03 16:30:00 2020-11-04 15:30:00 1062333630 1062335010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-04 15:30:00 2020-11-04 16:30:00 1062335010 1062335070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-04 16:30:00 2020-11-05 15:30:00 1062335070 1062336450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-05 15:30:00 2020-11-05 16:30:00 1062336450 1062336510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-05 16:30:00 2020-11-06 15:30:00 1062336510 1062337890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-06 15:30:00 2020-11-06 16:30:00 1062337890 1062337950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-06 16:30:00 2020-11-07 15:30:00 1062337950 1062339330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-07 15:30:00 2020-11-07 16:30:00 1062339330 1062339390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-07 16:30:00 2020-11-08 15:30:00 1062339390 1062340770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-08 15:30:00 2020-11-08 16:30:00 1062340770 1062340830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-08 16:30:00 2020-11-09 15:30:00 1062340830 1062342210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-09 15:30:00 2020-11-09 16:30:00 1062342210 1062342270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-09 16:30:00 2020-11-10 15:30:00 1062342270 1062343650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-10 15:30:00 2020-11-10 16:30:00 1062343650 1062343710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-10 16:30:00 2020-11-11 15:30:00 1062343710 1062345090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-11 15:30:00 2020-11-11 16:30:00 1062345090 1062345150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-11 16:30:00 2020-11-12 15:30:00 1062345150 1062346530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-12 15:30:00 2020-11-12 16:30:00 1062346530 1062346590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-12 16:30:00 2020-11-13 15:30:00 1062346590 1062347970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-13 15:30:00 2020-11-13 16:30:00 1062347970 1062348030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-13 16:30:00 2020-11-14 15:30:00 1062348030 1062349410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-14 15:30:00 2020-11-14 16:30:00 1062349410 1062349470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-14 16:30:00 2020-11-15 15:30:00 1062349470 1062350850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-15 15:30:00 2020-11-15 16:30:00 1062350850 1062350910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-15 16:30:00 2020-11-16 15:30:00 1062350910 1062352290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-16 15:30:00 2020-11-16 16:30:00 1062352290 1062352350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-16 16:30:00 2020-11-17 15:30:00 1062352350 1062353730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-17 15:30:00 2020-11-17 16:30:00 1062353730 1062353790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-17 16:30:00 2020-11-18 15:30:00 1062353790 1062355170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-18 15:30:00 2020-11-18 16:30:00 1062355170 1062355230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-18 16:30:00 2020-11-19 15:30:00 1062355230 1062356610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-19 15:30:00 2020-11-19 16:30:00 1062356610 1062356670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-19 16:30:00 2020-11-20 15:30:00 1062356670 1062358050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-20 15:30:00 2020-11-20 16:30:00 1062358050 1062358110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-20 16:30:00 2020-11-21 15:30:00 1062358110 1062359490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-21 15:30:00 2020-11-21 16:30:00 1062359490 1062359550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-21 16:30:00 2020-11-22 15:30:00 1062359550 1062360930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-22 15:30:00 2020-11-22 16:30:00 1062360930 1062360990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-22 16:30:00 2020-11-23 15:30:00 1062360990 1062362370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-23 15:30:00 2020-11-23 16:30:00 1062362370 1062362430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-23 16:30:00 2020-11-24 15:30:00 1062362430 1062363810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-24 15:30:00 2020-11-24 16:30:00 1062363810 1062363870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-24 16:30:00 2020-11-25 15:30:00 1062363870 1062365250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-25 15:30:00 2020-11-25 16:30:00 1062365250 1062365310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-25 16:30:00 2020-11-26 15:30:00 1062365310 1062366690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-26 15:30:00 2020-11-26 16:30:00 1062366690 1062366750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-26 16:30:00 2020-11-27 15:30:00 1062366750 1062368130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-27 15:30:00 2020-11-27 16:30:00 1062368130 1062368190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-27 16:30:00 2020-11-28 15:30:00 1062368190 1062369570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-28 15:30:00 2020-11-28 16:30:00 1062369570 1062369630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-28 16:30:00 2020-11-29 15:30:00 1062369630 1062371010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-29 15:30:00 2020-11-29 16:30:00 1062371010 1062371070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-29 16:30:00 2020-11-30 15:30:00 1062371070 1062372450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-11-30 15:30:00 2020-11-30 16:30:00 1062372450 1062372510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-11-30 16:30:00 2020-12-01 15:30:00 1062372510 1062373890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-01 15:30:00 2020-12-01 16:30:00 1062373890 1062373950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-01 16:30:00 2020-12-02 15:30:00 1062373950 1062375330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-02 15:30:00 2020-12-02 16:30:00 1062375330 1062375390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-02 16:30:00 2020-12-03 15:30:00 1062375390 1062376770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-03 15:30:00 2020-12-03 16:30:00 1062376770 1062376830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-03 16:30:00 2020-12-04 15:30:00 1062376830 1062378210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-04 15:30:00 2020-12-04 16:30:00 1062378210 1062378270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-04 16:30:00 2020-12-05 15:30:00 1062378270 1062379650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-05 15:30:00 2020-12-05 16:30:00 1062379650 1062379710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-05 16:30:00 2020-12-06 15:30:00 1062379710 1062381090 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-06 15:30:00 2020-12-06 16:30:00 1062381090 1062381150 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-06 16:30:00 2020-12-07 15:30:00 1062381150 1062382530 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-07 15:30:00 2020-12-07 16:30:00 1062382530 1062382590 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-07 16:30:00 2020-12-08 15:30:00 1062382590 1062383970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-08 15:30:00 2020-12-08 16:30:00 1062383970 1062384030 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-08 16:30:00 2020-12-09 15:30:00 1062384030 1062385410 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-09 15:30:00 2020-12-09 16:30:00 1062385410 1062385470 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-09 16:30:00 2020-12-10 15:30:00 1062385470 1062386850 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-10 15:30:00 2020-12-10 16:30:00 1062386850 1062386910 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-10 16:30:00 2020-12-10 21:30:00 1062386910 1062387210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-10 21:30:00 2020-12-10 22:30:00 1062387210 1062387270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-10 22:30:00 2020-12-11 15:30:00 1062387270 1062388290 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-11 15:30:00 2020-12-11 16:30:00 1062388290 1062388350 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-11 16:30:00 2020-12-12 15:30:00 1062388350 1062389730 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-12 15:30:00 2020-12-12 16:30:00 1062389730 1062389790 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-12 16:30:00 2020-12-13 15:30:00 1062389790 1062391170 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-13 15:30:00 2020-12-13 16:30:00 1062391170 1062391230 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-13 16:30:00 2020-12-14 15:30:00 1062391230 1062392610 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-14 15:30:00 2020-12-14 16:30:00 1062392610 1062392670 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-14 16:30:00 2020-12-15 15:30:00 1062392670 1062394050 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-15 15:30:00 2020-12-15 16:30:00 1062394050 1062394110 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-15 16:30:00 2020-12-16 15:30:00 1062394110 1062395490 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-16 15:30:00 2020-12-16 16:30:00 1062395490 1062395550 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-16 16:30:00 2020-12-17 15:30:00 1062395550 1062396930 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-17 15:30:00 2020-12-17 16:30:00 1062396930 1062396990 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-17 16:30:00 2020-12-18 15:30:00 1062396990 1062398370 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-18 15:30:00 2020-12-18 16:30:00 1062398370 1062398430 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-18 16:30:00 2020-12-19 15:30:00 1062398430 1062399810 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-19 15:30:00 2020-12-19 16:30:00 1062399810 1062399870 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-19 16:30:00 2020-12-20 15:30:00 1062399870 1062401250 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-20 15:30:00 2020-12-20 16:30:00 1062401250 1062401310 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-20 16:30:00 2020-12-21 15:30:00 1062401310 1062402690 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-21 15:30:00 2020-12-21 16:30:00 1062402690 1062402750 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-21 16:30:00 2020-12-22 15:30:00 1062402750 1062404130 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-22 15:30:00 2020-12-22 16:30:00 1062404130 1062404190 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-22 16:30:00 2020-12-23 15:30:00 1062404190 1062405570 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-23 15:30:00 2020-12-23 16:30:00 1062405570 1062405630 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-23 16:30:00 2020-12-24 15:30:00 1062405630 1062407010 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-24 15:30:00 2020-12-24 16:30:00 1062407010 1062407070 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-24 16:30:00 2020-12-25 15:30:00 1062407070 1062408450 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-25 15:30:00 2020-12-25 16:30:00 1062408450 1062408510 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-25 16:30:00 2020-12-26 15:30:00 1062408510 1062409890 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-26 15:30:00 2020-12-26 16:30:00 1062409890 1062409950 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-26 16:30:00 2020-12-27 15:30:00 1062409950 1062411330 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-27 15:30:00 2020-12-27 16:30:00 1062411330 1062411390 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-27 16:30:00 2020-12-28 15:30:00 1062411390 1062412770 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-28 15:30:00 2020-12-28 16:30:00 1062412770 1062412830 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-28 16:30:00 2020-12-29 15:30:00 1062412830 1062414210 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-29 15:30:00 2020-12-29 16:30:00 1062414210 1062414270 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-29 16:30:00 2020-12-30 15:30:00 1062414270 1062415650 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -2020-12-30 15:30:00 2020-12-30 16:30:00 1062415650 1062415710 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz'] -2020-12-30 16:30:00 2020-12-31 13:30:00 1062415710 1062416970 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/6_CL(IMC)_1061889930_1062416970.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -1.0370312452316284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_73_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_73_CL(IMC).out deleted file mode 100644 index c26ec74f93f986b6bd9ad46b9a46484e076c36af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_73_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -73_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006528997421264648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_76_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_76_CL(IMC).out deleted file mode 100644 index 491d08f7dbc0618c134186ad3e66af8cbd1bf2ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_76_CL(IMC).out +++ /dev/null @@ -1,14 +0,0 @@ -76_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2010-10-28 04:00:00 2010-12-31 13:00:00 1057063920 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/76_CL(IMC)_1057063920_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/76_CL(IMC)_1057063920_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/76_CL(IMC)_1057063920_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/76_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/76_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/76_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-02-15 01:00:00 1057682280 1057747740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/76_CL(IMC)_1057682280_1057747740.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/76_CL(IMC)_1057682280_1057747740:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/76_CL(IMC)_1057682280_1057747740.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.014480686187744141 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_77_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_77_CL(IMC).out deleted file mode 100644 index ba703cc07ef4e1d7ffb108c41e9f4fd8bb74dfb4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_77_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -77_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012630621592203775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_79_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_79_CL(IMC).out deleted file mode 100644 index fc8ddf7a1c0b0042eb924c2d8e046436c75d2818..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_79_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -79_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-28 20:00:00 1060313160 1060834800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1060313160_1060834800.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/79_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.058031527201334636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_80_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_80_CL(IMC).out deleted file mode 100644 index 261fe0b26f5468708912f54c9d2c6ea7d05e1f07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_80_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -80_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-31 13:00:00 1060313160 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1060313160_1060838700.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/80_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06053925355275472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_84_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_84_CL(IMC).out deleted file mode 100644 index af99e922eb4de44dd0308040c2e206b6703cf0b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_84_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -84_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-31 13:00:00 1060313160 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1060313160_1060838700.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/84_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05338669220606486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_86_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_86_CL(IMC).out deleted file mode 100644 index ee724e5733a86b42c4572a5718414918349a41a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_86_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -86_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-31 13:00:00 1060313160 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1060313160_1060838700.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/86_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05687327782313029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_87_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_87_CL(IMC).out deleted file mode 100644 index 455f3daceaa4feca414647dac73f3fe42d8cf225..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_87_CL(IMC).out +++ /dev/null @@ -1,26 +0,0 @@ -87_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2009-12-31 14:00:00 2010-12-31 13:00:00 1056631080 1057156620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1056631080_1057156620.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1056631080_1057156620:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1056631080_1057156620.npz -'StationConcatenate' object has no attribute 'existing_data' -2010-12-31 14:00:00 2011-12-31 13:00:00 1057156680 1057682220 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1057156680_1057682220.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1057156680_1057682220:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1057156680_1057682220.npz -2011-12-31 14:00:00 2012-12-31 13:00:00 1057682280 1058209260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1057682280_1058209260.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1057682280_1058209260:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1057682280_1058209260.npz -2012-12-31 14:00:00 2013-12-31 13:00:00 1058209320 1058734860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1058209320_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1058209320_1058734860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1058209320_1058734860.npz -2013-12-31 14:00:00 2014-12-31 13:00:00 1058734920 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1058734920_1059260460.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1058734920_1059260460:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1058734920_1059260460.npz -2014-12-31 14:00:00 2015-12-31 13:00:00 1059260520 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1059260520_1059786060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1059260520_1059786060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1059260520_1059786060.npz -2015-12-31 14:00:00 2016-12-31 13:00:00 1059786120 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1059786120_1060313100.npz'] -2016-12-31 14:00:00 2017-12-31 13:00:00 1060313160 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1060313160_1060838700.npz'] -2019-12-31 14:00:00 2020-05-31 14:00:00 1061889960 1062108840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/87_CL(IMC)_1061889960_1062108840.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.054617786407470705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_8_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_8_CL(IMC).out deleted file mode 100644 index 420e2b2a57c292255269f05e312a62b581409a5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_8_CL(IMC).out +++ /dev/null @@ -1,32 +0,0 @@ -8_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1997-07-17 13:00:00 1997-12-31 12:00:00 1050079020 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1050079020_1050319440.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1050079020_1050319440:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1050079020_1050319440.npz -'StationConcatenate' object has no attribute 'existing_data' -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1050319440_1050845040.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1050319440_1050845040:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1050319440_1050845040.npz -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1050845040_1051370640.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1050845040_1051370640:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1050845040_1051370640.npz -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1051370640_1051897680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1051370640_1051897680:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1051370640_1051897680.npz -2000-12-31 12:00:00 2001-12-25 19:00:00 1051897680 1052415060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1051897680_1052415060.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1051897680_1052415060:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1051897680_1052415060.npz -2002-01-02 16:00:00 2002-12-31 12:00:00 1052426400 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1052426400_1052948880.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1052426400_1052948880:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1052426400_1052948880.npz -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1052948880_1053474480.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1052948880_1053474480:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1052948880_1053474480.npz -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1053474540_1054001520.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1053474540_1054001520:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1053474540_1054001520.npz -2004-12-31 12:00:00 2005-01-18 19:00:00 1054001520 1054027860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1054001520_1054027860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1054001520_1054027860:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/8_CL(IMC)_1054001520_1054027860.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05840471585591634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_96_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_96_CL(IMC).out deleted file mode 100644 index 1fe31886d05ca90ed4f8994c682e6c5a875de44c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_96_CL(IMC).out +++ /dev/null @@ -1,4 +0,0 @@ -96_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.025983202457427978 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/0_9_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/0_9_CL(IMC).out deleted file mode 100644 index a59fdd60ab46e72abeda2a6c38dbbe2bb90f9132..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/0_9_CL(IMC).out +++ /dev/null @@ -1,50 +0,0 @@ -9_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2005-12-21 04:00:00 2005-12-21 23:00:00 1054512240 1054513380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1054512240_1054513380.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1054512240_1054513380:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1054512240_1054513380.npz -'StationConcatenate' object has no attribute 'existing_data' -2006-01-03 02:00:00 2006-12-31 12:00:00 1054530840 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1054530840_1055052720.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1054530840_1055052720:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1054530840_1055052720.npz -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1055052720_1055578320:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1055052720_1055578320.npz -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1055052720_1055578320:dup1.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1055578260_1056105300.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1055578260_1056105300:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1055578260_1056105300.npz -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1056105360_1056630960.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1056105360_1056630960:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1056105360_1056630960.npz -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1056630960_1057156560.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1056630960_1057156560:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1056630960_1057156560.npz -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1057156560_1057682160.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1057156560_1057682160:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1057156560_1057682160.npz -2011-12-31 12:00:00 2012-02-27 13:00:00 1057682160 1057765740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1057682160_1058209200.npz -2012-02-27 13:00:00 2012-02-27 14:00:00 1057765740 1057765800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1057682160_1058209200.npz'] -2012-03-26 17:00:00 2012-12-31 12:00:00 1057806300 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1057682160_1058209200.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1057682160_1058209200:dup1.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1057682160_1058209200.npz -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1058209200_1058734800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1058209200_1058734800:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1058209200_1058734800.npz -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1058734860_1059260400.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1058734860_1059260400:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1058734860_1059260400.npz -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1059260400_1059786000.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1059260400_1059786000:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1059260400_1059786000.npz -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1060313040_1060838640.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1061889900_1062416940.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1061889900_1062416940:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/9_CL(IMC)_1061889900_1062416940.npz -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.29188176393508913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/1_362_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/1_362_CL(IMC).out deleted file mode 100644 index 3782b73bd46942f8c3e8626d99d614a3cd871769..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/1_362_CL(IMC).out +++ /dev/null @@ -1,9 +0,0 @@ -362_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2014-02-27 03:00:00 2014-03-18 02:00:00 1058817780 1058845080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/362_CL(IMC)_1058817780_1058845080.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/362_CL(IMC)_1058817780_1058845080:dup1.npz'] -OVERLAP RESOLVED BY "N VALID METADATA VALUES" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcno2/temporary_S1/362_CL(IMC)_1058817780_1058845080.npz -'StationConcatenate' object has no attribute 'existing_data' -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -NO VALID DATA TO WRITE OUT AFTER REMOVING UNIQUE STATION DATA WITH EXTENT < 31 DAYS. -STATION WILL NOT CONTINUE IN PIPELINE. \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/1_547_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/1_547_CL(IMC).out deleted file mode 100644 index 0b63093e8f7e7e2f11e3ad5528f7504dd8eab0bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/1_547_CL(IMC).out +++ /dev/null @@ -1,3 +0,0 @@ -547_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/1_89_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/1_89_CL(IMC).out deleted file mode 100644 index 32bd42e2a535486772cc40842bdc2603d0bdd342..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/1_89_CL(IMC).out +++ /dev/null @@ -1,3 +0,0 @@ -89_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S2/1_98_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S2/1_98_CL(IMC).out deleted file mode 100644 index 007aafaca679c0342c4010981b72c6528f38f326..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S2/1_98_CL(IMC).out +++ /dev/null @@ -1,3 +0,0 @@ -98_CL(IMC) -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_100_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_100_CL(IMC).out deleted file mode 100644 index 8020b574b63ade8e8a6639e76967585545362645..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_100_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -100_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3401404778162638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_101_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_101_CL(IMC).out deleted file mode 100644 index c73042f9182557473469f00d07bcc441863ec997..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_101_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -101_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3475940545399985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_102_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_102_CL(IMC).out deleted file mode 100644 index 5f24ca46a0628f13cced3d6c0d8e3e1632610817..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_102_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -102_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3682459870974222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_103_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_103_CL(IMC).out deleted file mode 100644 index a9844e5ef5bec121e7b9859e4a3bef06f6661757..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_103_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -103_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6845347205797832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_104_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_104_CL(IMC).out deleted file mode 100644 index 02d7ec25d7e1b2523d0456983196dff68bc633d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_104_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -104_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.15256534020106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_105_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_105_CL(IMC).out deleted file mode 100644 index 747d0043b2d52ee1ce1edc786b19613aacd43576..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_105_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -105_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.957229745388031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_107_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_107_CL(IMC).out deleted file mode 100644 index 3206f594549d4913eb8e43cebe4506dbd4aed274..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_107_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -107_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1706447839736938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_108_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_108_CL(IMC).out deleted file mode 100644 index 38347638014e3ac146b50296d0cc5a657829f48c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_108_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -108_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2265997529029846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_109_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_109_CL(IMC).out deleted file mode 100644 index 666c22922a12c837da9a4aa70cf5228d1ab26f40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_109_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -109_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2460922042528788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_110_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_110_CL(IMC).out deleted file mode 100644 index 013232b7ddfa315b7acdbf18f3472ab2063f7c6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_110_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -110_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1400148113568624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_113_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_113_CL(IMC).out deleted file mode 100644 index f6f38fd2b7067d78a068e5c7a38b256360849f20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_113_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -113_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2504886627197265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_118_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_118_CL(IMC).out deleted file mode 100644 index 2b287b0b7b5942e00715cb2c3fc1d5054f750928..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_118_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -118_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1863980611165366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_119_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_119_CL(IMC).out deleted file mode 100644 index 96669c28566a5a24abba4cdeb31357f25560157d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_119_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -119_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2102635423342387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_11_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_11_CL(IMC).out deleted file mode 100644 index ae9ae40f98a45c888112825de0f1124e85f4116d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_11_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -11_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.2793827136357625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_13_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_13_CL(IMC).out deleted file mode 100644 index 02e4316c4a4d1928b40e3b2f9308c768041c29ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_13_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -13_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.596645239988963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_14_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_14_CL(IMC).out deleted file mode 100644 index b2cf3659385bf2a3f537a9d52641076a781ca14c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_14_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -14_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4326326807339986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_15_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_15_CL(IMC).out deleted file mode 100644 index a6d8e1d341a94ef6e9a8bd073d26f9b98af19330..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_15_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -15_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.5485820094744365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_18_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_18_CL(IMC).out deleted file mode 100644 index 391b4c2305a5afbfef3c46266a29505e466530e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_18_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -18_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0251453042030334 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_19_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_19_CL(IMC).out deleted file mode 100644 index 439c6c7666b04a9dee2b8eb0dc4c097624202648..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_19_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -19_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3043704549471538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_1_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_1_CL(IMC).out deleted file mode 100644 index ce64af577d883d3d960dc0cc75eaf8212adbf7eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_1_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -1_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6750013868014018 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_20_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_20_CL(IMC).out deleted file mode 100644 index 1edd3bbbbbb0674714a27dd2efb8fbbfe80a3285..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_20_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -20_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1698386947313943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_21_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_21_CL(IMC).out deleted file mode 100644 index 65082fa5b2dbcba346349529650884eb95737ef4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_21_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -21_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0654656251271566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_22_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_22_CL(IMC).out deleted file mode 100644 index 57308c87fbf278f4e759caeddb9ede57ea9616b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_22_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -22_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8822097380956013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_23_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_23_CL(IMC).out deleted file mode 100644 index 50678a21e58e2202bbd1823ab3afe1fe53e6ac1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_23_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -23_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.6587621370951333 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_24_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_24_CL(IMC).out deleted file mode 100644 index 5d5008861f29e0764026bee5c540523e6212e3a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_24_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -24_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6158611655235291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_26_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_26_CL(IMC).out deleted file mode 100644 index 554a12e595668aecbf9c49020ef06a7d28691df7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_26_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -26_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.7740261912345887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_270_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_270_CL(IMC).out deleted file mode 100644 index 54d8acd75c343c32128f8a7ca006cb713f9a6475..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_270_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -270_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6608178973197938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_271_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_271_CL(IMC).out deleted file mode 100644 index 0ce95d191652a4eba8bd7a2dace1387de609b9d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_271_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -271_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9234928965568543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_272_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_272_CL(IMC).out deleted file mode 100644 index ae15369e4e8b3b2613873111ab3e8a1e2601350e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_272_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -272_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.923247786362966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_274_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_274_CL(IMC).out deleted file mode 100644 index 92b47b46d195cf6d1ff99a25f536d8fac61e1459..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_274_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -274_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.12329998811086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_275_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_275_CL(IMC).out deleted file mode 100644 index 8b42a9989c6e004138c4000f3c6ad14c3dc9023e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_275_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -275_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9300308148066203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_278_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_278_CL(IMC).out deleted file mode 100644 index 05b88209bcead3a2cc8bf52a8cb2c688cbe79d55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_278_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -278_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8059652129809062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_279_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_279_CL(IMC).out deleted file mode 100644 index 96f6d46f271da3e7f766627860733c84d98a8630..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_279_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -279_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8159848531087239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_27_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_27_CL(IMC).out deleted file mode 100644 index 3045c3e93a2f262f58e04c06cc72a40256648c33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_27_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -27_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6882160107294718 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_28_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_28_CL(IMC).out deleted file mode 100644 index e8590015c701d0d49e991c6d18a33d24facba1ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_28_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -28_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5353540619214376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_29_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_29_CL(IMC).out deleted file mode 100644 index b512a77d981494bfabd5745abebd5fc590dcc71e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_29_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -29_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.3464748819669086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_2_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_2_CL(IMC).out deleted file mode 100644 index 5e6b6b0d5472f47778caec82a3879b44480c8aca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_2_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -2_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0591166218121846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_30_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_30_CL(IMC).out deleted file mode 100644 index ef30fa1e8774f7fb6ec84e8596c416fc47b64360..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_30_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -30_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.7101200660069784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_31_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_31_CL(IMC).out deleted file mode 100644 index 9d2a07abc194d56420b39647448ef695fbecf2af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_31_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -31_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3516552090644836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_324_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_324_CL(IMC).out deleted file mode 100644 index 001a8d4b8b663556b29910a6fed614f6284b4f79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_324_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -324_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9899113734563192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_325_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_325_CL(IMC).out deleted file mode 100644 index 2fef2bc24dda33c230e4c576949a00ddb0cd1153..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_325_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -325_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -3.1884638905525207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_326_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_326_CL(IMC).out deleted file mode 100644 index 8f1d06fa097f383f6eb3b31f0cc190ccfd5f2fb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_326_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -326_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -3.1490079085032145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_327_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_327_CL(IMC).out deleted file mode 100644 index 7ce5e4be415829f2f8b86a8be6167bdc89598366..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_327_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -327_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.677163322766622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_32_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_32_CL(IMC).out deleted file mode 100644 index ba6f4e6c2ecaf9862f7269e131816a828cd200ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_32_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -32_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.91626957654953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_330_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_330_CL(IMC).out deleted file mode 100644 index bcf50d9af11d18aef285b4284618dfdf9fd96adc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_330_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -330_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.7114572763442992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_331_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_331_CL(IMC).out deleted file mode 100644 index 10cc8f9945e5f50ce75f82f13690060e8318a006..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_331_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -331_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.9408700585365297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_332_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_332_CL(IMC).out deleted file mode 100644 index b463b455b4d69e052af9e5a3e085a8cbc7fb1abf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_332_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -332_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8053857247034708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_335_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_335_CL(IMC).out deleted file mode 100644 index 76d78ea512828a3b80424d586a80220486eb286c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_335_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -335_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7501030762990315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_336_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_336_CL(IMC).out deleted file mode 100644 index c0b39826a38825589528ba401aa18e99e0ee175f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_336_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -336_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6394318461418151 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_337_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_337_CL(IMC).out deleted file mode 100644 index dc234ee27292381fb785dbcdefecc9f4dfa72a7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_337_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -337_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8615077694257101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_338_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_338_CL(IMC).out deleted file mode 100644 index 980bd4322be4e69b05d03ad359a589002de28640..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_338_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -338_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.5332713166872662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_339_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_339_CL(IMC).out deleted file mode 100644 index dca78979c2faa08d3841ae503222d88808fe84dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_339_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -339_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6023022770881652 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_340_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_340_CL(IMC).out deleted file mode 100644 index d8ec5218f9485d906bb782fb3c94b3c1f538890c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_340_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -340_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.4722996950149536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_342_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_342_CL(IMC).out deleted file mode 100644 index ed4492845355739b862df7833aa01e3db2f67f14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_342_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -342_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9423926512400309 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_343_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_343_CL(IMC).out deleted file mode 100644 index cea853f9ddcb769a714647837e64f3374eeb0a7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_343_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -343_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6125997066497803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_347_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_347_CL(IMC).out deleted file mode 100644 index a01a000fc46c0d572da025e1e1146ab7d627ad4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_347_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -347_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8817579865455627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_34_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_34_CL(IMC).out deleted file mode 100644 index 379e0b6a7e704c6f8f75494a0debb2cf00f73bd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_34_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -34_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9441802422205607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_352_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_352_CL(IMC).out deleted file mode 100644 index bf5df075f6c4a8d63db27e3aeb6ff764fc627138..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_352_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -352_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.5139137069384256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_354_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_354_CL(IMC).out deleted file mode 100644 index 519ea447bf65d53f6b14fe57483e391899dcaa38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_354_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -354_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.522687840461731 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_357_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_357_CL(IMC).out deleted file mode 100644 index 1d2b6cc5596ece14b2157acc404df1075df1648d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_357_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -357_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6591852744420369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_358_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_358_CL(IMC).out deleted file mode 100644 index 93d3d2936f9d40468bb120f4f5fa40f3bdffc002..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_358_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -358_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.371205226580302 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_359_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_359_CL(IMC).out deleted file mode 100644 index ccddd25b0983b08d5b9832a08011ee40c32fc430..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_359_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -359_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.3814497590065002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_35_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_35_CL(IMC).out deleted file mode 100644 index 0e17870ca0ed71fd5774a03d4605992cae2fcfcd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_35_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -35_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7103452881177267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_360_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_360_CL(IMC).out deleted file mode 100644 index 60a8374e24d5dc773eaac8d9e045a86bc792a19a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_360_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -360_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.2541802326838174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_361_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_361_CL(IMC).out deleted file mode 100644 index 930f62ebc80d439eb85e58062ee164d3bc75b579..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_361_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -361_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -3.6184587399164836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_363_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_363_CL(IMC).out deleted file mode 100644 index bfef1c1a18c65b5c863bd43557bc6aebb1f81355..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_363_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -363_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.418634374936422 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_366_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_366_CL(IMC).out deleted file mode 100644 index 0f6ec4185c95b363334ca77a20d940874f67815e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_366_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -366_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5963552633921305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_368_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_368_CL(IMC).out deleted file mode 100644 index 7670f23cfe5f9d437fb7e86aeb4820a8d865d342..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_368_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -368_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5336253603299459 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_369_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_369_CL(IMC).out deleted file mode 100644 index 1c3a3100dae42d69cd3aff5acfa7547c53592ad8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_369_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -369_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5821897109349569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_370_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_370_CL(IMC).out deleted file mode 100644 index 63a174a46d9cf04088eb2b13797f9002e2d865cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_370_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -370_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.605197815100352 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_372_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_372_CL(IMC).out deleted file mode 100644 index 4f5a6b276696cf3b02487e7caad9fe0f289125e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_372_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -372_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.592489465077718 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_373_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_373_CL(IMC).out deleted file mode 100644 index cfe5fc1a237a572255f4788ebea2907dc76545f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_373_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -373_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5538040677706401 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_374_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_374_CL(IMC).out deleted file mode 100644 index 1b0b5e3d25a28114db476d60bcefa6335af23dd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_374_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -374_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5888091405232747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_375_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_375_CL(IMC).out deleted file mode 100644 index 04687027e5fcba8a88d87f6ff28684926d356db9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_375_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -375_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5539755900700887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_37_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_37_CL(IMC).out deleted file mode 100644 index d1cf85ba2c73046bf6000f58cb8e634ff093d2ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_37_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -37_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5815699497858684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_3_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_3_CL(IMC).out deleted file mode 100644 index 0acecf011769cdd82be8def1f616ac7ae442c417..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_3_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -3_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.447906219959259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_40_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_40_CL(IMC).out deleted file mode 100644 index 15b60b61425cbfa303f03c7fb4f3afdda837c0ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_40_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -40_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.6178240537643434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_41_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_41_CL(IMC).out deleted file mode 100644 index 4be7f8b11216acfaaea607ef59d8c23be6f4f2e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_41_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -41_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -3.7268141667048136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_42_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_42_CL(IMC).out deleted file mode 100644 index 941a1ce027bd49de06e5862ea09370e3827d83df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_42_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -42_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6152834494908651 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_43_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_43_CL(IMC).out deleted file mode 100644 index 6283d0bcd3546e47f005712558092c9be2a19f11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_43_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -43_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.441759181022644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_44_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_44_CL(IMC).out deleted file mode 100644 index 467cde6446b907f62fd630d9a6ebe70919f11383..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_44_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -44_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.5817808389663695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_45_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_45_CL(IMC).out deleted file mode 100644 index 0d54b852b4080a40e188f13b90e44328f66689ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_45_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -45_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.687535214424133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_46_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_46_CL(IMC).out deleted file mode 100644 index 557e838d334ea4d648111e991027eddba8f081d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_46_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -46_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.5678786198298136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_48_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_48_CL(IMC).out deleted file mode 100644 index 8740aa57cc22a6840e652ebcac40732301aded22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_48_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -48_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1598915894826254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_4_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_4_CL(IMC).out deleted file mode 100644 index 5241d405bed3e8c205c4b49725f2a80c8ac4f3bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_4_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -4_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1340820789337158 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_51_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_51_CL(IMC).out deleted file mode 100644 index 2d0d59df879565051d0acb60ba209883f732e44d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_51_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -51_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.573427061239878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_529_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_529_CL(IMC).out deleted file mode 100644 index cdf3a477bcf798c455d657c9ce7b5765b73a86b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_529_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -529_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6047586838404337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_52_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_52_CL(IMC).out deleted file mode 100644 index 2d95f7528339b7e8886debea4679e6911fd1f81f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_52_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -52_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.980049745241801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_530_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_530_CL(IMC).out deleted file mode 100644 index e906abfa575c4a7f4c920fbd1fda69144738c5c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_530_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -530_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5675371090571085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_534_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_534_CL(IMC).out deleted file mode 100644 index fe3ae8c282f73b8620f2d254e393c99577b4f4ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_534_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -534_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5235416452089946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_540_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_540_CL(IMC).out deleted file mode 100644 index 412b69bc4ce21979985236efd741e0652702075b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_540_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -540_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5012888550758362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_54_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_54_CL(IMC).out deleted file mode 100644 index abae315187082e33976a24dc06d784c9c25b475e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_54_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -54_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.5167620380719504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_551_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_551_CL(IMC).out deleted file mode 100644 index d84d3e5a65e3add122f30cfe8e227c1531a65691..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_551_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -551_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5589774012565613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_57_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_57_CL(IMC).out deleted file mode 100644 index a8e38345baaf64d3c3cc0812fb987602581b01c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_57_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -57_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.504830272992452 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_59_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_59_CL(IMC).out deleted file mode 100644 index d09baad2a3e361e1a6bb5a19c029f4e29a01ac32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_59_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -59_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6339238246281942 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_5_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_5_CL(IMC).out deleted file mode 100644 index 1b63e8a30dea696c603b52a5bed03fd60c514075..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_5_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -5_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.120835789044698 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_60_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_60_CL(IMC).out deleted file mode 100644 index 28b37e862dc100fc73fd8c36cfddfa7c70c42992..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_60_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -60_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8395512104034424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_61_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_61_CL(IMC).out deleted file mode 100644 index 2b88fa1fe4adffb19f2adb61d63d4da590ca6b98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_61_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -61_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6299249092737833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_62_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_62_CL(IMC).out deleted file mode 100644 index bf552a33d9afb5f8fad87e18dcf109300a87e577..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_62_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -62_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -4.314400271574656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_63_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_63_CL(IMC).out deleted file mode 100644 index f27ed4887d9f2de5f523eb92b6854066b3e63b25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_63_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -63_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4480515162150065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_64_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_64_CL(IMC).out deleted file mode 100644 index a64f23482d0c36467414c40580d0f29a0385dbd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_64_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -64_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9765433311462403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_65_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_65_CL(IMC).out deleted file mode 100644 index d7752f6a96b55b0379d59b0086e83f4b16059a04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_65_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -65_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7547975023587544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_68_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_68_CL(IMC).out deleted file mode 100644 index 7a3ab03fc7d6fb80efb2ff531986cfc1f0af7d2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_68_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -68_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.626806628704071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_6_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_6_CL(IMC).out deleted file mode 100644 index 7d58e8e75a656956aafb96fcf11ded9bddb31059..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_6_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -6_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8593773961067199 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_73_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_73_CL(IMC).out deleted file mode 100644 index dee4ce323f9c50f37fd4bb33f18a08c009404c0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_73_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -73_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5808719714482625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_76_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_76_CL(IMC).out deleted file mode 100644 index 8f47c3efead725eb0626300278f7cceeeed966c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_76_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -76_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6922165711720785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_77_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_77_CL(IMC).out deleted file mode 100644 index c31a1092a0d0e9270381c0d1b8983d8b7a2724e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_77_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -77_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6890135566393535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_79_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_79_CL(IMC).out deleted file mode 100644 index e18efc233fcac1d09b1b640d789e8bb03697945f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_79_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -79_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3076401233673096 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_80_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_80_CL(IMC).out deleted file mode 100644 index 9664e25e1d42adcf649ac812644c2205f1a78670..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_80_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -80_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.309966464837392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_84_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_84_CL(IMC).out deleted file mode 100644 index 2c0bd0f2131f9280648de8ab2a08883e9542b440..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_84_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -84_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.264395248889923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_86_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_86_CL(IMC).out deleted file mode 100644 index f87938b4aedd66e131044fe6c3bb4fac97bb39ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_86_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -86_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2468687613805136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_87_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_87_CL(IMC).out deleted file mode 100644 index 0fb96d1cb6edbcde08a94305530f11ec05e99e64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_87_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -87_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2907043774922689 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_8_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_8_CL(IMC).out deleted file mode 100644 index 345342308886cb14b86e79eacf63c3f8445b00ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_8_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -8_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0916982849438985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_96_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_96_CL(IMC).out deleted file mode 100644 index ce39d37e820a49dc09cb325a3a7931de1c2484b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_96_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -96_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1969318985939026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/S3/0_9_CL(IMC).out b/run/stage_logs/NAPMD_NO2/S3/0_9_CL(IMC).out deleted file mode 100644 index cf0d8f3a1ece6f3cf3ca59d2e5013baa48bdd322..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/S3/0_9_CL(IMC).out +++ /dev/null @@ -1,23 +0,0 @@ -9_CL(IMC) -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6201699137687684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_100_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_100_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 9730244d65e8e2f33d615f98be21a607a8c5da46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_100_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8996324658393859 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_100_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_100_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index ab79102ce4794fc6895ded3dd4bda19249e84031..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_100_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2549421469370523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_100_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_100_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b5f1b37856d3e7208daf8cfe1e18a2ab523d26fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_100_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0640745759010315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_101_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_101_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 04cb36ea196facd1751060fad153e490390f95e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_101_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -101_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1822844386100768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_101_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_101_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index a3d7ae7c78da2890a9060858dd722d7c5fbc88e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_101_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -101_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3484410564104716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_101_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_101_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 81267835c84383e1bc277a1aa98344209da05d3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_101_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -101_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3921159545580546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_102_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_102_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index be885b2c8e6b9344d3249c9004dcde199e2f7ce9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_102_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -102_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7963065663973491 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_102_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_102_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index f204076c87e3f603e215adfcc4fa162847c798f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_102_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -102_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.271966807047526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_102_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_102_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 74e6f07f85f77c7567f68513c15e6e64f4d82b6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_102_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -102_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0206923007965087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_103_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_103_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index e64578c4e2b755dfe951cc469204fe40bfebcf83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_103_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0427885373433431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_103_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_103_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index f95892f5a4ff6750cc53b86939724038591b0e74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_103_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22596024672190348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_103_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_103_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 267d16100c9b85e637a5c7015a5e76d6c846f884..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_103_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.023907868067423503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_104_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_104_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 655c41f5f72bdc3e168eeee9386f6a5b5761d7ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_104_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9857296744982401 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_104_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_104_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 22c8d7480146b1066f65e1a5da12765a266fd6f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_104_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9645584901173909 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_104_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_104_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index ff80a34ab107b328ec9d2dc52f3d144f82c3a03e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_104_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5461880008379618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_105_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_105_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b153d131d80fb8ab4773a75694cd0411cd94183c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_105_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3178985118865967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_105_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_105_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c258693d863e02a980d6a62f920d32bf733f5457..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_105_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8272088527679443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_105_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_105_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index dc3f2960e2bbdae53d84ab3b4fc8aeefdeced9f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_105_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7147364974021911 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_107_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_107_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index d981d95a9fda952759b4295dbc3e73e718fc0595..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_107_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7771198312441508 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_107_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_107_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 689d64231de87ef2d3b9904eab182abfc194bc92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_107_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2002777020136515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_107_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_107_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index a2377888714652c2e36aa4eb5673d18d59fa165e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_107_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9809627691904704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_108_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_108_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 6e4dcc72b66df6566bfffa8010492a69c39ddbc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_108_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0083996693293253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_108_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_108_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 4bd9b3ead532e446e686335bf2202539c4b2f6db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_108_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5177162607510886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_108_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_108_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 757ff807a16cd8bbaf9f8d6c5ca41e34d745da78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_108_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8466649810473125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_109_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_109_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 674f0392d3b5a006af6e1307703300b9c0b75d3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_109_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0217869321505229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_109_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_109_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index d3a8b6592ec2b55bb3d319aacb8c22b9c2462633..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_109_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.321689256032308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_109_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_109_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 93b41a24eecad327ad78810c7f4ff76fe16b1230..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_109_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7275882999102274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_110_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_110_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 04d1ee29d87c060bc2422d890d6fb873ff9625b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_110_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6349099516868592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_110_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_110_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index eae911ed97809f0a07bf751916983755fd09a39c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_110_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1355843226114908 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_110_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_110_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 0c1a63ea16dfb1a67d05f0266aa56418bc666b52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_110_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.48516845703125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_113_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_113_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index d020027342c045d096e71e6ebb2ac5233ff1a426..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_113_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1113892634709677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_113_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_113_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c27bb08d6e3b647ae371934a0da3c23c80ae9b1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_113_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3415209849675496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_113_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_113_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index c85129516248c1da0c18d01e81dbad40534bd0b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_113_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7614167014757792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_118_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_118_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index e76816b7cc493800f79f91d876bac9a3e7b3b740..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_118_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.902127206325531 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_118_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_118_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 7f23e3df0e6dd397350bb1650262742152e7b5fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_118_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3235060254732767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_118_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_118_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 037657e19301dbfe9270f9a4932f37a3599830d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_118_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4899197737375895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_119_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_119_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2dcccbde043c1c2594dea4a1e661bf2bc847bb3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_119_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.206602112452189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_119_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_119_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 9d57331efd04d3d413321b4fae6302d21554b91d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_119_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.254178253809611 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_119_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_119_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 49f09ee8ae7c44f09a9c401bf588ae687bf1566d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_119_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9853975574175516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_11_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_11_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 47d79170e45255c44e9fd3d3d1635c112bd79722..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_11_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.512790258725484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_11_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_11_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index b8fcd4cab0fea369685d958993861d8d586a9f66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_11_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.486196768283844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_11_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_11_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 9bdd4def328fa4a8d555c34493d539b340d7c306..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_11_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.09102676709493 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_13_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_13_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index d2e2e61c4011d6fb162d2de2b8fa07fb3e2e0ad3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_13_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9634279171625773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_13_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_13_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index a79d0fa7a1e2db14612042313ec8518ae8d684ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_13_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5532494028409323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_13_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_13_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 1a49be644e83cfa743c92a9c03a752cfbcb10109..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_13_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5455915053685505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_14_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_14_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 61fb098aa9c7ea1d2bc424c3bc7e8a1eb6a537c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_14_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.218133012453715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_14_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_14_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 98224475f5ec684d0dd533f75c63a1907be4d6cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_14_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.555947204430898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_14_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_14_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 1ad1b39e5ed3af4550451abac59097eecde16997..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_14_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2897001067797342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_15_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_15_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 1de096119d3249a8f647ecaf2fe34de51442ea8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_15_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8976216157277426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_15_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_15_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c140ae25fd3e9fb350284362d07d3707e1236f23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_15_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6221526781717936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_15_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_15_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 312c6cf1493e0fe7c9072d3f9b394c4a8430f24a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_15_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2578518549601236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_18_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_18_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 6cd6bc3ed73abdba02ff76b3d9327a8b5128182e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_18_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8079750577608744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_18_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_18_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c8abc1955fc002c9c410b70d5b6b4180a10d4a42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_18_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9938830653826396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_18_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_18_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index c0d126f00820972a1fa03ab9093d560c4052145f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_18_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0837815483411153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_19_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_19_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 12b68bf14197496f49122d6175b04b902d9e12b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_19_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6759817838668823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_19_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_19_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 411469e12ced0ad228839239510af12447b2f15d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_19_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3744455695152282 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_19_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_19_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 76770027a407800c7f3ef989a52ebe6ef20ef87a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_19_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.135265839099884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_1_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_1_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 97d8d4ac076fe51afde786e44743843388875fab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_1_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3374594489733378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_1_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_1_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e66785023e3f2b0d46a5bb8179fd076da7def70f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_1_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8801355799039206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_1_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_1_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 9bc32441a3de00c9a6930c7c60b6d4f10964509d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_1_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2339820702870687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_20_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_20_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b4f7faaeda1a6e27bc99ec8af4d92e01af968e66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_20_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.815419336160024 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_20_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_20_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index fe4e3d41a5ef92dbb03782a0a1ddf626f630d9d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_20_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0858283241589863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_20_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_20_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 24a3a045fd507d53ecb345c5f7fdc56a4d8bebd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_20_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5717360933621725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_21_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_21_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index fd3d8ee230c79af3910771e132ee7e80b03a8e57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_21_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.25925483703613283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_21_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_21_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 82c656cdb6126ee4abb53927af557ac17ec236af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_21_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9131638685862223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_21_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_21_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index bb45f976318d89c82cc19cf6af2f67c053b3fac5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_21_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.602065380414327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_22_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_22_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 3fb90d0910f227cca3a6e1a1435de4c057a6213a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_22_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6711045304934184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_22_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_22_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 8d46d7f78c1b1d360e45b24beade19bfe9de6e22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_22_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8599278887112936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_22_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_22_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index a946c8f0de3a208db4d1c0e41542fa0983b882c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_22_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7800376256306967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_23_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_23_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 8cf9e9c918c8c355ac1a7c0aa5b0b043d80017cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_23_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0039944489796957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_23_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_23_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index abc3065d41b54e7af064f13d9669619ef9b5e0fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_23_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.546174184481303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_23_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_23_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 6a5af4d296d46fee2435bebbbed85f4fd92ffd7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_23_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1712597370147706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_24_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_24_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index ac96f38914c8ed1a0db5114f38ac07f46306a04c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_24_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.048065340518951415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_24_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_24_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 589025f9dbad2993578389ac6897e7f7ba3d2f5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_24_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24998503526051838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_24_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_24_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 10cdfa41d110d4b0f09b0022127f2f65ded50bde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_24_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.048087024688720705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_26_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_26_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 5b1397e38708ca4bd548b10102bd1687201c9bf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_26_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0343520800272623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_26_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_26_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 26d56022a29cfd6018940c801a87538a961a2409..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_26_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.357923905054728 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_26_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_26_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 40045cbc9c71989cb53a9d53a52eef8521c82a41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_26_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1915305455525718 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_270_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_270_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 99d4ac6cebebba43e1accf1ce7fe4267df609a0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_270_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4314586520195007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_270_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_270_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 249c82cf4226c167dbd6ad564d160715c666ce82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_270_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1392428874969482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_270_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_270_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 607c51c74ff295c461ed85589986057aee88e26b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_270_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5058162569999696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_271_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_271_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index bf8a33379890ae6676595749bbaff445b6654a41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_271_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6552315195401509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_271_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_271_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 4bf39f132f1fd630f5e35eb977fee68d74256267..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_271_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2198126196861265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_271_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_271_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 9834fec852e086947da20359670de59337276815..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_271_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7683353185653687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_272_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_272_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index c8206e3e359bcf1b44a6dfd0a15758c3b3dcf58e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_272_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5834239323933919 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_272_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_272_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 971384de3dd9fb30b9965170a84c448df8e0fd62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_272_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3255022207895917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_272_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_272_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 2a71f4459eb9dfd7746e6f3708b8abee6c0482ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_272_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5816141366958618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_274_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_274_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 24e35cf737dcf5d079e4a2770047dfbb00f2dcb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_274_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7938595771789552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_274_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_274_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 8040ecde25dfce0cd4f99c876b4578f49baba1df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_274_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.724805990854899 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_274_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_274_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 83694dbc475ce7459b9eb582d553bdbbd958afa5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_274_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5981308102607727 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_275_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_275_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f7243385cfb1141befab9ca7ae84418960d8f433..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_275_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8324328502019247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_275_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_275_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 0ee045637f9aeda2ea51efb2596887a238af48df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_275_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.518692310651143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_275_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_275_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index c506c04e787ab5070a68413f27c46eb4ad3c9bfd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_275_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6194896936416625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_278_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_278_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 708b863c703442077583c392f97d0e8ae0190557..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_278_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.43106481234232585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_278_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_278_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 645ca1ef7cc330c649d63519de6e7475a7058596..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_278_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9239319205284119 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_278_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_278_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index dbb62d1499c746e86f75960a8b1f0e73c49b2713..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_278_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3663168509801229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_279_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_279_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b6d7f07bd9bd8b08d0c9e3136373a08847e85d61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_279_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2191080609957377 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_279_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_279_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 3a10a2a4a1647b1ef95b5b447dacb4dcaa638f17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_279_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.888319977124532 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_279_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_279_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 73c1428953a0df28fc05a0e2dbf7c28fc790a00e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_279_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.33365933497746786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_27_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_27_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 94a25570410338c981a4128bd97bedb5d2a60ab1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_27_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5317211747169495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_27_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_27_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 57ce982039a5ec9acb3570da850aafc488cec690..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_27_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5819157441457112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_27_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_27_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 416c5fa7b376e74ba38deb05b5c5d7049ba9eb54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_27_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.16008285681406656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_28_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_28_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 35acd7b28b20beb621e676812b9458d6fbff8fcf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_28_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9719314535458883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_28_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_28_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 66ff902f213028778f021dfd260db0f6418233e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_28_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5567633708318074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_28_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_28_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 36198c37101a59eb963bbb5aaca20c7a35c0eb9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_28_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.38531169096628826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_29_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_29_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 52d4d79ee58defadfe644d3458a54c382e8a9bf1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_29_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7756288011868795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_29_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_29_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 40db40af1202903adbfdd613cb6cc23a3a888971..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_29_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3961783170700075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_29_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_29_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 9e0e368b2f5c76dabdb50adf036c4658e5e29fbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_29_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0805332183837892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_2_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_2_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f16510e66a49f97e960fcbb12f0d3b4c61c5c91a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_2_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2637758811314901 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_2_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_2_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index ca34950ed97b7e2463a8e87ca00771d0cda1c87a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_2_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.715207846959432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_2_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_2_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 5d01531cfe828761f58e00c3a801bc74afe322c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_2_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.13415486415227254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_30_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_30_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2f9a6fafc5c3401a755d7a8f51d1d9a9f255472c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_30_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6247851530710857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_30_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_30_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e564a4b39bb73f8fcca1256b2ce5269410882cf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_30_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.569765603542328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_30_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_30_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 3b491447868237a19cc4fab8cb9397c73e5b492d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_30_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9388575514157613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_31_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_31_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index fcd409b06bfdda82497bbcaf886c8b93e259f1fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_31_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0319448232650756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_31_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_31_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index aebc0cf34d1d6cb800e3013d76e857c9fc92c267..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_31_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1968837102254233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_31_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_31_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 89cc38d3cd258c1b79b36dff000fdcb968d0f263..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_31_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5954822699228922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_324_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_324_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 4eadb02f08e20d2895295e4f577316a50ce7eddb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_324_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5659123420715333 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_324_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_324_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 8992fbe97547ce49260e381be894e0111bf34fde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_324_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.950659688313802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_324_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_324_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 9f57d1d7b6247ef833c56ce5ff94c8b8201a3572..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_324_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.558428450425466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_325_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_325_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 8fd0004cff58838ef8887c058062e5a6dc6fc99d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_325_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.430712874730428 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_325_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_325_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 3e3340d98f7b587c9ba4e1ec312f4c3e628fe355..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_325_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.940738848845164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_325_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_325_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 992a1248d03215d48ff7e13827406cbeb107a71c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_325_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.334810225168864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_326_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_326_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 9c0a68264b3af9605ce0d11a8aebe23a2ef22880..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_326_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.287939365704854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_326_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_326_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 0d3fdb0ce3c974fe845e57d6ef7b9ef39de61cb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_326_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.784489385286967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_326_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_326_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b6bbc3168a03cca4c1610e363bad383f4fb3eccf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_326_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2062591314315796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_327_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_327_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index bd06b657ef33b9a51cf11f6d388aa7f5a3f516f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_327_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.569090660413106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_327_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_327_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 53ba290a29023d379e831a28dced89b73553b996..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_327_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.612758445739746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_327_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_327_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 11a5dd72b6a31912cd3e0eca45a12d3d086399fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_327_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0819624225298563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_32_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_32_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index ce081bf44e127a9a9d180a48b39822de8d7e987d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_32_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0727419892946879 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_32_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_32_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 9f926863fd2d116d972a103e2e77818daaea061c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_32_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3442558805147807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_32_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_32_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index de2a64689d6d991bbb71ddacaebfe7667d3bb9c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_32_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05435703595479329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_330_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_330_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 343eaf78ef742d180d746b8fce364dbd959619e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_330_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2004971226056416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_330_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_330_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 06338e754feeea321767cef6b5f3c21945dc0501..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_330_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.497990341981252 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_330_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_330_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 45e62f2148ac97146dc59a6026903234b5e05d74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_330_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.528484872976939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_331_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_331_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 1efde80a60f7d56156f59079576af410fb412f75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_331_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.715392510096232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_331_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_331_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index def7519d77f6f8b75d9862914a88da536717e6b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_331_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.365407931804657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_331_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_331_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 4fa2658bf897a54316b824ff2c22dd9b363e5259..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_331_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.04558029572169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_332_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_332_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 4a442e5791e31ae4661b4a9e64825a86600aadbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_332_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.378524112701416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_332_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_332_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 88e65b61eb45a8f95e2fd1611a17a331714fb76f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_332_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8265066981315612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_332_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_332_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index c5c4a0780f452e6f0bb18f5110cba500b17958bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_332_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.554122813542684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_335_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_335_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 7e5085b8fc9779f5b67fda50cf716ed03bec7cda..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_335_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1824406862258912 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_335_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_335_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index ccaab7f8150abc103d8cc1e365aa18636e76b8cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_335_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6396780451138815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_335_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_335_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 33d54a575bbffac7e8d8635733db017b3a79d410..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_335_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5976011077562968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_336_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_336_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 1ed71edb1c3132fe1a40d4665bab3b5f59becb57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_336_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07074123620986938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_336_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_336_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 3293a428523ba04e89b0b83312d5f6d6d24ff861..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_336_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.32562827269236244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_336_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_336_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 4502de22ac6d0bb08fd21534ab26aa82b90cad6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_336_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.057357255617777506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_337_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_337_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2553b7c1e9752bddaa13a12deb4dfad35314ed26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_337_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.259931476910909 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_337_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_337_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 335f97944e0368ca0935c34397ade4f04d7e82c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_337_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.824945592880249 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_337_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_337_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 7cd8078467c01b484db425f60b131b16c3ca431f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_337_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3050952911376953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_338_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_338_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 04f0b43c58855e0879acbb2c384aff29b8b98bfb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_338_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -338_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1439157366752624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_338_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_338_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 7dba2fce9b8ad2296fd239c34bd1bc3967228a8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_338_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -338_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.8786426703135173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_338_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_338_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index e8dc7fa64fad1ffa277247d5bbe51163b7c7e2d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_338_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -338_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.16099408864975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_339_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_339_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 26970fb7507fff981bc6f7c7a2eb95cd2a7a9ed9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_339_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2266099254290264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_339_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_339_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 8234fa1c3c914d377c757f2ff99879ce825d30f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_339_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9671739021937051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_339_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_339_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 73592e7cd163572bdd56ead5510ad44642913fe4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_339_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3926376024882 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_340_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_340_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 02ff5b31aaf114350b48ccacc4020609d19708bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_340_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.018442972501119 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_340_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_340_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 287b19ae382da2f9f0729b902f08ea4a4e4c332e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_340_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3938186287879946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_340_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_340_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index f49676aef9a43fab31284ec2df355bc459aea793..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_340_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0177018960316975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_342_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_342_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 376c55afc06db26404ded17d926372374cfab745..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_342_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31039268175760903 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_342_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_342_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 00117da03ea3829eeab70aab723482ee96621b7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_342_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.89570418993632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_342_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_342_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index c4af8e18d431c8caedb13f94814470d63e2fcc45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_342_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20138607422510782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_343_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_343_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f0dab47fb97eaa5677660ef575daacb184074659..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_343_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.018174842993418375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_343_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_343_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index f930a958e777c73cd7edab3fb02abb70fd0b5886..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_343_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1784920573234558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_343_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_343_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 683043c87f0ab0986ed95654c1500abf828264ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_343_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.012284815311431885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_347_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_347_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 57dbc04dad4225b5d0a3390df696d5f305bef9f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_347_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10459093650182089 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_347_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_347_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 698b1c93b4e98a0f00c69f0870852b56dc743fac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_347_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5603723367055257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_347_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_347_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 37064ea7e391a287b8cd6476588f624e99d8b68b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_347_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11132367451985677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_34_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_34_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index e024fa55eb2620798f0e8ca48da0ea59db2abb24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_34_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4408249735832214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_34_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_34_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 252b7b4d2add8d8d429e1685863ce2cad83a8d22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_34_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7850690881411234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_34_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_34_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index de25086db1591783a1ee349af3d93631401fb2fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_34_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.32778899669647216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_352_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_352_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 31c772a076c1c1e6dfc906fabfa5d34eb34424f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_352_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.223579208056132 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_352_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_352_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index ab4d9c217fc4a76c13bb7fc0438af60f2255b764..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_352_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.8513922532399496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_352_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_352_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 56b8973df6be46f02f57eebe9fa2ec2194928bfb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_352_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.123398510615031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_354_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_354_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 0d4b3549c42defc270137d89e86c48afc9023ce8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_354_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.912267788251241 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_354_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_354_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 53b03c016c303b5db7ca4768dbd942c8820694a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_354_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5331366141637166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_354_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_354_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 96d638fe6fa6446722058d330339ce94104ec4ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_354_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5160666704177856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_357_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_357_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index ed1c0eae9e90e033b572af124733b653006d9029..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_357_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23943414290746054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_357_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_357_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 9196a50cd26aab0370d011b0b922325f03cb7f40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_357_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.39293336868286133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_357_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_357_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 2a0e507d47ffb34a7770ab11b079c49ba18ecbca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_357_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10582273801167806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_358_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_358_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 1af3f0e61fa989b2b785d7cd0d4523be6c1eb425..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_358_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0534348249435426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_358_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_358_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 9d24dfaa84daef41e46c721d554062d97d2e3889..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_358_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5289400696754454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_358_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_358_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index d3479add2afab6b80f2471e1eeef17dd2b42e062..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_358_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5126322865486146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_359_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_359_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 8df6c7a8f4ea92f0c53fcbecffd8eaadb2a17dad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_359_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -359_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9029436230659484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_359_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_359_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index eebedfb4ef78b66d90b6a4358e5a805d0e2be476..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_359_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -359_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3455267469088237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_359_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_359_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index adfd3dd25e17b0797aee157315ad05820c865412..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_359_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -359_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0963881770769754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_35_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_35_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 7298c0007bea728bcdb48d600205c579c205093b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_35_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.028301278750101726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_35_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_35_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c89123e5f861695a1727215b3b66813869411cba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_35_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20565821727116904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_35_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_35_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index e58367eef5c25b67ce4d2dba8e45972e0be7d785..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_35_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.016096846262613932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_360_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_360_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 8fad2e0d518de4c9d5c4500b1928f4ffcfd9debf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_360_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6855751117070517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_360_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_360_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index e83f72f16422cd49b68efe58bd168e1fa2e1a58b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_360_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3288426995277405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_360_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_360_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 798fd0b9a6cb20dc16a2499c9ea4bf2ff413230d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_360_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7707631826400756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_361_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_361_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f4538332520f26171570ca4704e40bf69073abb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_361_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -361_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0670726180076597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_361_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_361_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 6d89c8cf59c3088eb8b8aa49dc3bb528d6d47d79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_361_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -361_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5976607322692873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_361_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_361_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index ba263bfc58d52269aa8b35be3efe0e58cc6cf493..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_361_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -361_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.158187544345856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_363_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_363_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 70001777e32b69552fefc3b10890ea6ac602a8ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_363_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9746077537536622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_363_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_363_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 8261c960b837d7a3552b2af9d361b11380d729e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_363_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.473965589205424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_363_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_363_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 4e37ea618ec48f46cadcdab3985bc379470c7f13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_363_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1239723841349285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_366_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_366_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 790f860c335d73272cd19b23200695744b0a0447..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_366_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0492603341738383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_366_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_366_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c4a83bd6551f509f79390c93968fe89ba69be477..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_366_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.30077390670776366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_366_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_366_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 669ceb3034701284e311c251de4b99f2c4958f35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_366_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.040228211879730226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_368_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_368_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 89fab7071a98c4135d8d0839e906d38a3736b8ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_368_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.027331713835398355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_368_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_368_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 73ed66b4519c35c1405850c9cfeb285f1f078cbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_368_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21531625588734946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_368_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_368_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index deb8d94198f54903797fc2a17bac9d9523eaae3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_368_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.020748770236968993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_369_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_369_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 5fdb818648982e1429c25a138b43d051dd01e5d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_369_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.017847987016042073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_369_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_369_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 4c47f6401c1c546c8f267ff77849eb2b9343a81d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_369_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18129107157389324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_369_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_369_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 2c9512e41a9234939600d38451ffcc5b1504f560..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_369_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.012015974521636963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_370_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_370_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index dee1354bd6ed3c48e986ac56b0f93a3b1b5473d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_370_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0738454818725586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_370_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_370_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 523528dce23c5310ebee907dc18ca49d9c97eef0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_370_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2884301503499349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_370_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_370_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 47514331d9647e2338dbfa1010015282170428c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_370_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06206767161687215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_372_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_372_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 50b8344f085ebfd6059202dd25468c2b84602bdc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_372_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07381175756454468 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_372_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_372_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c08ca5e5d0ce4c465fc565440252a2081b91973d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_372_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24509222507476808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_372_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_372_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 72442ef2461a441c8d61ffda879fa8cc41da8e32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_372_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03283547163009644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_373_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_373_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index fde21a8c0698ae377c514b3028f6b0b85dce4f8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_373_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07481424013773601 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_373_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_373_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 0772b639f0df953d1a1fe95184bd712e40138738..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_373_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.26700661579767865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_373_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_373_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index eb0cfac01c29ffa7d86e94124b9db34701e941ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_373_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.042421666781107585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_374_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_374_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f01a8a8b73355b0b7ee8380bdf7ee1fbd20c9dab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_374_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04897397756576538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_374_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_374_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index bb43f111786d80a0508bdedaa839e171ca6a5013..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_374_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.29616878827412924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_374_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_374_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index cdadb33fc1012255a0a2f03f2276a52df68c30ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_374_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04078149398167928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_375_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_375_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index efeaeecbbb40034a57574ed34e9436cb6b5a3f69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_375_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07420684099197387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_375_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_375_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 2e14d711e5b14839955bf5e35bc30263c9f2a689..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_375_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21844327449798584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_375_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_375_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 2cbc1d4ca2eb1a8196804fb127a229068192f407..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_375_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03810529708862305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_37_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_37_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 763af19b7494d99dbfdc4e74a437e88785334fba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_37_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.846356991926829 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_37_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_37_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 2b52830dda5269d2c8ffd60ec14f2313b6774eb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_37_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3135140776634215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_37_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_37_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index a90b7afc70f6b9ae3a84ba3acb5a4d3b951ba033..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_37_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4303883632024129 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_3_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_3_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 092624fe1a8afdaa48cfdbfd985dc7ba4a8c53a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_3_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.768663720289866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_3_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_3_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index d418cadab33d04ba71129ae77decb64901db0d1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_3_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.327815083662669 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_3_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_3_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index fc36bb796ddb2f6631a4df0e281c1224520521f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_3_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9715476870536803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_40_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_40_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b19cd1cc7082a35e5a6c975ee17e092b33512048..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_40_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.182187553246816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_40_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_40_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 1b614eae44b0cb81c76fd2976fe6e2fc19dadd0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_40_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.318326445420583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_40_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_40_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 9d028d810920e6c64d2152c7c8527f99e3c94630..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_40_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1057791153589887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_41_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_41_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f77c8d9779e65bcca5318487219af25a0b30f400..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_41_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.498006502787272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_41_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_41_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 5322e1670d381e90be13c2b9dd33d016e8f35d3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_41_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5262662768363953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_41_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_41_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index e2e24b42faf6f2e31fb1f7e89cdcb1aa4984f6df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_41_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8623504479726156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_42_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_42_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 68bf50dca6bbb5fa5a3a5790ca61d3bebdfe7fb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_42_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05770165920257568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_42_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_42_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index f4e5906f2064ba1b67d6faadd3f08a8f2dc343f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_42_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4576544165611267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_42_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_42_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 9cbbc0343955809c6318da12b0526c2e444e3c82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_42_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04555817047754924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_43_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_43_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 29b3656cedc99611aaa74c1dbab82a26ba570dd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_43_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0553476850191752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_43_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_43_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 3a13f5f5a32ecff5247775c8b3da25068eb07b07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_43_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5499862114588419 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_43_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_43_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 9342985136eb0dc295669417b0ceb3e176085d47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_43_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1715809901555378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_44_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_44_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index a5a3cd12f199e10e43ec6850313691ee6cd705d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_44_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8968937953313192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_44_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_44_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 109bf674adef68ddc25a31e75fdee04af9379f7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_44_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.8958103815714518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_44_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_44_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index a2854ef278bebf54c29523c388c28b7baf568c50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_44_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0892761588096618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_45_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_45_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 02e571d6333d5e90daa731d1515d870f270302b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_45_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.14514875014623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_45_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_45_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 375feb3b7e128521b56fc2205e2b6fa87056f93b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_45_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6018728534380595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_45_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_45_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index cc0003c1f74e599a2df9f94d96a84effab4ebe94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_45_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.210455393791199 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_46_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_46_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 782b1756feb779b0fe93c30c7768b5d3e34a143a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_46_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.179719106356303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_46_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_46_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 89f72aa7dddc949acb43459077de609a620cf54e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_46_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3422390937805178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_46_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_46_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 9740f016818144c2fd71a3fde175e78f7698f19e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_46_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.644626533985138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_48_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_48_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 70acaafee141d4bab822122a52494438488b4227..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_48_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8444358030954997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_48_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_48_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index d29320d7b03e13a7b617cb4d038751cb0243b981..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_48_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2088635047276814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_48_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_48_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 4a39731648d22c547ec26e978a825c4e62bebd76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_48_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6929734230041504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_4_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_4_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index fb4d7774792a04354026aa6b693efd6ae614ca16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_4_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8641984939575196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_4_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_4_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c7c335e059859d6f4699cc27b71bca6297b402d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_4_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2756001393000285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_4_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_4_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index e5d0f3c1fba6c4c7f9052e1824c7f5885955423e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_4_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5018220186233521 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_51_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_51_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index eabfe01e0f2e0e4f389fee18aa81061bf6020807..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_51_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2436299562454223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_51_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_51_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index f906568ab0864864f4af3193171cb4d624d94db6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_51_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.352549207210541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_51_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_51_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 995036df54330d41200cf8822af7bb3a8d031a3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_51_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1622394323349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_529_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_529_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 2d0a8c475addcb9d4d8d74db1f16e815f510006f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_529_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04124503533045451 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_529_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_529_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 32a23926d06973e0611ffe98076d4ab080fe2dd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_529_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20749574104944865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_529_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_529_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 8ed4c2ed36f9892ed8976f7779300b764f7ff2a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_529_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.022628653049468993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_52_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_52_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 38ddc671989633ec71ec3be03a1740468c456538..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_52_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.49982158342997235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_52_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_52_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 9b3ee354f11de3dd9e7ad8039f1957481106d7fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_52_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9001001437505086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_52_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_52_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 69ce8874314f308050cca8b9c7cc810c9a68b992..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_52_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2186675230662028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_530_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_530_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index ef42fdbb400aedb46777929d012a012726d68a7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_530_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.027876400947570802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_530_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_530_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index b6412ca53d80e1702d0130a055f315b071d99115..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_530_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.19654239018758138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_530_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_530_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 3b1a5c822fab1a5c1211557ccbd3c4539fe4e9e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_530_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.016638561089833578 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_534_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_534_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index e6e76af76bfc4a66a06c1d22b0ac57058b8e53f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_534_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.040098488330841064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_534_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_534_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c496e370d78cbb00cc26bc24bf9fc375182f7786..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_534_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2002862294514974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_534_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_534_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index e110a6595731dc37a858eb06f0a89f4f2928e482..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_534_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02850137948989868 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_540_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_540_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index cc13ed59005b286ce64597f63258fc7a4a29210d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_540_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.012385304768880208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_540_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_540_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 208f44f8d862e846e6550188df0967b5270f04ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_540_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.16726050774256387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_540_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_540_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index fd45a879aaad9f8709c27926835c3ff2968327ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_540_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.005509487787882487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_54_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_54_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 670af9986a3ba69519befaa5ca434ca5a3a595a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_54_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.044023529688517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_54_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_54_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index cf8fcfe6a4dc33406ae559bf228562e0fdd2ec4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_54_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4963980674743653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_54_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_54_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 5e16c8b1cdbb729b4b6c330e201f435eaa5a1832..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_54_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9221620639165242 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_551_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_551_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 7785dab308d23bb8dba0943ef6b76f21f5e03db1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_551_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -551_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.01984151601791382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_551_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_551_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index d5b1dee59bafd59dba90df340f163dc2a64205ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_551_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -551_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.16369433005650838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_551_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_551_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index eddddb6cfd7aba318200df7d658211a81e024d98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_551_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -551_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.008124128977457682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_57_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_57_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index eda908c65c453f63174b10fb4a2f0fc9d7765f91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_57_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.579754590988159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_57_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_57_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 371cc8ebe1df970fec47c12307bc68a81821d4e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_57_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.814412490526835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_57_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_57_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 0ff525b117a66de3d9cfbe94a1b57b12396daa14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_57_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.906449520587921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_59_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_59_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index ba881cdb19c580a515ba0041f9fec93756d4fc32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_59_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6008684277534484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_59_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_59_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index da2fa3963148cfe6daee9fd1ac3de73196fcc280..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_59_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7370840748151144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_59_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_59_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 44e72e828c2065941d71d5b879aede482f4c9eff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_59_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1995192766189575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_5_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_5_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 340bef185bea6ebd3f10015f464eca0a38062d78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_5_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0739585479100546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_5_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_5_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index ceb43b116e2a8a30eedfadfa5f3f995fc2634ab7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_5_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2150494615236918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_5_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_5_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index abf9a7390998ef43c12ffbcda1ddb2cfff824cd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_5_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.618441657225291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_60_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_60_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 844f586533689423a48efd690fcf5c7af39e5668..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_60_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06227851311365763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_60_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_60_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index bf2544c4603a72bac5335ced1ed357e0880733fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_60_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.39164706468582156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_60_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_60_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 30326ed9b50a2ce4ef1933551f3c214094643277..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_60_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0827437957127889 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_61_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_61_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 96ac54f63bfcf3a28db5968bd1e12c2690caef97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_61_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3654771010080973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_61_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_61_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 22c6e7a4aa6a7097a2ea5ee2c9bced9677ce473a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_61_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.823875904083252 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_61_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_61_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 6b31194fc505fab366010846065dc62f9cf913f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_61_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.834790066878001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_62_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_62_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index a9337af038100b9ecece4d73044286ee91538a7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_62_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6306698600451153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_62_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_62_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index c87f16eeb5a45abc3055223fae095286063332d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_62_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.878982679049174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_62_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_62_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 92a0b01469e225efb5fcf2d7fa3f244e27f8d735..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_62_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0160645802815753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_63_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_63_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 4aa7d5a92f07fffb4fa837d7d4bb67dccd03efa4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_63_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.370463482538859 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_63_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_63_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index fbd1144040e2bc7aa38b8b20e7f1f93bd2b91626..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_63_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5484311858812967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_63_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_63_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index b536d6dbac51a4bee0fc37701b12acee8bbc4a16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_63_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8823448419570923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_64_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_64_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 4b0a9d93230d4cd22fc35437aa059b9bdee3fdeb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_64_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.881519349416097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_64_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_64_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 2e0299468f7775b63f33d584ba366b4cb2dc897e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_64_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1718093792597453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_64_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_64_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 3970ec992f040699b56dba1fd8ad8673914d17e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_64_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.34772671858469645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_65_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_65_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 67577b4b757fadde05b769834062eec21d53302d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_65_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.207863712310791 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_65_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_65_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 1760dc7074a718b80b29fe80176407d5ea114e59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_65_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5078184962272644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_65_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_65_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 1c84138fe0573d4a3b905b53d6f3d63f72742142..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_65_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18441121180852255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_68_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_68_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 8eb9cc10f7b36126697da1b4540879753e9d9d66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_68_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.050072904427846274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_68_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_68_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 592545f90d2eec5d9dbe39da301ab7a7168ed6cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_68_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.25556328694025676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_68_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_68_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index f5d599eefe102ca05af0c532456a18b68ef4ca90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_68_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04682008425394694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_6_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_6_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f2679abf667b0562f1e8d26a35711835dbfe04da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_6_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07872793674468995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_6_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_6_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index ab281ef03e85a66bcef4d5a8f1be1350a9c3edae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_6_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4583296775817871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_6_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_6_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 742383c39da9b5358b6c51d9ad408635fd64371d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_6_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3057760715484619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_73_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_73_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index e4ce8df200f4c2f2633046d99ab0eb27fc5e26c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_73_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03047938346862793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_73_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_73_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 429618bd68863c441e4f2ef3b9140ddc3d506263..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_73_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17508910497029623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_73_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_73_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 42c418b576ec01d23658cb9b9cd356dc30e357ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_73_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.01669457753499349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_76_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_76_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index d92f636f55cfab953947022364f22dc019d48906..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_76_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06490562756856283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_76_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_76_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 47e270db2a2342a9debd2ae305cf5ab47c4f125f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_76_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3101094841957092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_76_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_76_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 2959e8ce06821ae221c29cb06a260d8cf6fdf759..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_76_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10268522103627523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_77_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_77_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 5e78282a1bb4978d1946d60cf996823f59002866..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_77_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17232152620951335 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_77_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_77_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 438fddfcdf38dc56cd6aeb145a27e7aa651de482..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_77_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.44230679670969647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_77_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_77_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index a77a108bd86aebdcb6f7bf9e7e68378915abd047..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_77_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4847167690594991 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_79_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_79_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 1b47e5da806a13ad7cdbb2c88bbe3c165cef50b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_79_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1070393959681193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_79_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_79_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 9c8e1516df63a50961a5006a45bfc9eb179100a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_79_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.283928128083547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_79_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_79_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 60b31c0464fa68502e683e20a48169ca21541990..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_79_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6344634731610616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_80_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_80_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index c626ea3dbd54a61d6846796e34a63c363a7c2255..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_80_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8446574807167053 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_80_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_80_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index fb6cca6eb2901fe60472c8d5b914c01a63a0d3e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_80_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2711392442385356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_80_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_80_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 039069d134de23d0ee13dd86372e1982b6c33ec0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_80_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0421378850936889 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_84_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_84_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index f147ef254c428b0d305e7894b7806a2e99341ab1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_84_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.014854872226715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_84_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_84_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 49885fa67e8291525d87a744703a6b6e02fdb114..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_84_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7315942049026489 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_84_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_84_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 1ee80d7a62435b4b02856632174c47f81452c322..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_84_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9581740419069926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_86_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_86_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 436c89294827cf365fe052064188a68af349d120..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_86_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -86_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.38738102118174234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_86_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_86_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 7882a93d9089efbb53597d84afebd12a9ccfbd17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_86_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -86_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4309940616289774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_86_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_86_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 8b46d63f059b76b82190a240bdc29cce9cb7058c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_86_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -86_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7057724515597026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_87_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_87_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 85812026230d986535f54a35475bc2d6ec16834a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_87_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0841845512390136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_87_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_87_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 144f22a53ded0d7ad712a0749615fee7528ff408..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_87_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3481157183647157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_87_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_87_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 41919fc0c707406cbb073b9aa6c980ad79b73b1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_87_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8802962303161621 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_8_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_8_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index b190e733bbd68be53e39e98a4b2bf820d66ab8db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_8_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9363997499148051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_8_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_8_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 8decc4ea45e7e9e05c0cc15d8d4df992fdee9674..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_8_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1516877929369609 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_8_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_8_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 5ebb893b10edec264c44f1fd6827855cc9e6f591..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_8_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7198521614074707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_96_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_96_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 145e04de3f2996ce5e5e5230c4ca14e86d078fad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_96_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7581656217575073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_96_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_96_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 876d5cd2a20968521ba1cf6516d998e65df4066b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_96_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.990154771010081 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_96_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_96_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index 3675fa393f5264aac214f75e0d8a4f8010dfa8f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_96_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3864826440811157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_9_CL(IMC)_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_9_CL(IMC)_D_GLOBAL.out deleted file mode 100644 index 981850c2f57e4174dd6939b0f5afb2e4bcb22ed9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_9_CL(IMC)_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5157979091008504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_9_CL(IMC)_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_9_CL(IMC)_H_GLOBAL.out deleted file mode 100644 index 2736e30cb37ef0e0086b2c024cc18ecaf6e2a760..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_9_CL(IMC)_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.042503289381663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T1/0_9_CL(IMC)_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T1/0_9_CL(IMC)_M_GLOBAL.out deleted file mode 100644 index e7a4230bd88b91bbc9afc32d9e69bcd285d33d67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T1/0_9_CL(IMC)_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_CL(IMC) -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.150937016805013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197812_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197812_D_GLOBAL.out deleted file mode 100644 index c047a41f3b04fd14167a4bca3dd5c60c538be4ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197812 STATION NETCDFs -0.0344786008199056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197812_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197812_H_GLOBAL.out deleted file mode 100644 index 5e83f5da3b54c734ba0754f4d363a6282e23c24c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197812 STATION NETCDFs -0.030895177523295084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197812_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197812_M_GLOBAL.out deleted file mode 100644 index dd9341a5b57f2ac4f0364b4dcd6a0c4a049484ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197812 STATION NETCDFs -0.03253670930862427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197901_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197901_D_GLOBAL.out deleted file mode 100644 index b359b80cffdc662a31176d93a4a1f92c71bdd0ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.04087108373641968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197901_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197901_H_GLOBAL.out deleted file mode 100644 index fdbd26561793353283aa3f6efca1b5735f56713a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.04375604788462321 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197901_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197901_M_GLOBAL.out deleted file mode 100644 index 43057d32c465f8a00168cb852fea5377085e61c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.019353957970937093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197902_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197902_D_GLOBAL.out deleted file mode 100644 index bca7126e9b02ddd2fee182f9dfd8c6acbfaf4f8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197902 STATION NETCDFs -0.032530895868937176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197902_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197902_H_GLOBAL.out deleted file mode 100644 index a023c11a74cd6fd08bdde1261a3eedc8f7b2ed8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197902 STATION NETCDFs -0.01834412415822347 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197902_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197902_M_GLOBAL.out deleted file mode 100644 index 64ba6969e7328a85e97217591d2fe24e8d60b2bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197902 STATION NETCDFs -0.03209222157796224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197903_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197903_D_GLOBAL.out deleted file mode 100644 index 1465ce7629e86ed97f895615143bad6ae98445c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.04450229008992513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197903_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197903_H_GLOBAL.out deleted file mode 100644 index 03e79531d8f87417ac984bbff3eefb6c3e11fc02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.03671576579411825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197903_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197903_M_GLOBAL.out deleted file mode 100644 index 775d9c27535a29713cd97ff5a8aae40f0a389a1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.03359212875366211 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197904_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197904_D_GLOBAL.out deleted file mode 100644 index d5df2266b5fe7bc45f00fdd934cbd41d77b79b29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.024227134386698403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197904_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197904_H_GLOBAL.out deleted file mode 100644 index 4ad527bf17e61afbea32135619b90138937ed22c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.029176684220631917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197904_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197904_M_GLOBAL.out deleted file mode 100644 index 2143349f5ab8b2d76f9e1c7536466816f66a6957..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.042792781194051104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197905_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197905_D_GLOBAL.out deleted file mode 100644 index 645e186f055b6743d1d368126784bd2abf738265..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.03576136827468872 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197905_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197905_H_GLOBAL.out deleted file mode 100644 index 915e15bddbdfe7f7691b5c9169564e3c402567bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.026825475692749023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197905_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197905_M_GLOBAL.out deleted file mode 100644 index cee1f2730536c9e51f78e24c16be884c52c270b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.035906755924224855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197906_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197906_D_GLOBAL.out deleted file mode 100644 index 99b99a846a2a19d699ad2a73b9c75f8c07189f79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.02791894276936849 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197906_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197906_H_GLOBAL.out deleted file mode 100644 index e283741115a539dc08746af49d348a77d14bbfcf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.036621272563934326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197906_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197906_M_GLOBAL.out deleted file mode 100644 index 12d57c3355858e68c4f1e12ce5cb6f195f873078..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.04072056214014689 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197907_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197907_D_GLOBAL.out deleted file mode 100644 index b248d6d17d608618e6dd70bcb411141fd5d1f1d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.03778771956761678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197907_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197907_H_GLOBAL.out deleted file mode 100644 index 5ce1ea8ebefa8152865a3b5b1ab1f46aade68887..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.028610201676686604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197907_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197907_M_GLOBAL.out deleted file mode 100644 index 203d6966c482490b974315fe40c1b6d827c00bf0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.034415022532145186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197908_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197908_D_GLOBAL.out deleted file mode 100644 index 9aae6648006466fa29067444888eea20108cae61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.04876665671666463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197908_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197908_H_GLOBAL.out deleted file mode 100644 index 6a25cf888208c466d542d4f7f78448c032ea3383..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.021712851524353028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197908_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197908_M_GLOBAL.out deleted file mode 100644 index 533c766d0036ed02253f221dc632d2b0542c48a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.030979589621225993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197909_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197909_D_GLOBAL.out deleted file mode 100644 index 83f3f0ebcd55e09263779608f41c62c81f8f3cdd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.0419727881749471 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197909_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197909_H_GLOBAL.out deleted file mode 100644 index 0f6b4a7a50a40fe18f2f19b541bc73392795817e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.037325318654378256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197909_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197909_M_GLOBAL.out deleted file mode 100644 index f4d681cfca40bf91e6d7eda0671435b585a71b59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.03869065046310425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197910_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197910_D_GLOBAL.out deleted file mode 100644 index e1e78f3dec8c5f81867798b41c2df6488c43c066..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.022990914185841878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197910_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197910_H_GLOBAL.out deleted file mode 100644 index cc41d79fcfcaa0ebf23868ca9c2acbd751670b06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.03717386325200399 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197910_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197910_M_GLOBAL.out deleted file mode 100644 index aebfab5067b16aa6c6512ed065ee17dbcbb36e7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.023108029365539552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197911_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197911_D_GLOBAL.out deleted file mode 100644 index 52a55babc586f1ae4472a56a9ce083292680f643..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.030485522747039796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197911_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197911_H_GLOBAL.out deleted file mode 100644 index 438df015f1626483a88541a94beed1a6eb69202f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.024687469005584717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197911_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197911_M_GLOBAL.out deleted file mode 100644 index a407ac16ffa82eb4f01b1e2ba4a41e77c572e7e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.03582532405853271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197912_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197912_D_GLOBAL.out deleted file mode 100644 index a2b49ce2afe993857ad49e460c5b6e5447e884c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.038477142651875816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197912_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197912_H_GLOBAL.out deleted file mode 100644 index 471ba6033b8e2dba60666bcc4c9cf644370201f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.023058847586313883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_197912_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_197912_M_GLOBAL.out deleted file mode 100644 index 9ec45f1ae6838465af098cb882f227a5debdc46a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_197912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.0339435617129008 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198001_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198001_D_GLOBAL.out deleted file mode 100644 index b5a71b7322bb47e654ae5945a2724ff5b4112a2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.04384626150131225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198001_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198001_H_GLOBAL.out deleted file mode 100644 index 372a8cef24a6095c5e015c9b1c022bc1f89cbbc8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.04151287873586019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198001_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198001_M_GLOBAL.out deleted file mode 100644 index 3d503f6a4c95c691a05ce66453511e66e5639b7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.030627059936523437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198002_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198002_D_GLOBAL.out deleted file mode 100644 index a7f503aae7b5fa76a59ff2724b3a40bdaa767646..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.03338544368743897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198002_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198002_H_GLOBAL.out deleted file mode 100644 index 4c2793f64046510ef9876d7d5c7ecbb4741c8c8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.03224090337753296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198002_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198002_M_GLOBAL.out deleted file mode 100644 index ec7e90aa943d90fa269f3f2af20d02f1f042d16a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.03701901833216349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198003_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198003_D_GLOBAL.out deleted file mode 100644 index a2b921149e08394265c5c316da8404f11341eec0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.017731901009877524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198003_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198003_H_GLOBAL.out deleted file mode 100644 index df1b883c6928c4b21b7173cc087a725378d402b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.021919850508371988 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198003_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198003_M_GLOBAL.out deleted file mode 100644 index ba58520fcaaa8611fc9077fcd30f25829e0f255a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.033069523175557454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198004_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198004_D_GLOBAL.out deleted file mode 100644 index 8b0d044e5f957bf18d2fdff9b91651772717340c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.027956068515777588 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198004_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198004_H_GLOBAL.out deleted file mode 100644 index 8a7b2aa8fa3dc225d5c7ade8253efe1b0068d2a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.0205384095509847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198004_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198004_M_GLOBAL.out deleted file mode 100644 index 2d5680ebb1aa62e5771555be6f993ab5f6ec9c33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.034916818141937256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198005_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198005_D_GLOBAL.out deleted file mode 100644 index e21279da19ceae8d6b1193c2a5cb647ac184731d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.03986012140909831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198005_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198005_H_GLOBAL.out deleted file mode 100644 index dde21185cd73f1774bf8d3f1418371c85a3dabdc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.044714895884195964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198005_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198005_M_GLOBAL.out deleted file mode 100644 index 2840251be4d549eafa8b9f7eac1eeabc9094d3e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.028862841924031577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198006_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198006_D_GLOBAL.out deleted file mode 100644 index 0890b57d53aa734bcbad927d237d58f575dbd9d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.02237968842188517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198006_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198006_H_GLOBAL.out deleted file mode 100644 index 9e1ebe6bb76246c1e6fab573e1275af0f677a7b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.022123217582702637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198006_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198006_M_GLOBAL.out deleted file mode 100644 index c9c66881e3294f59bd54bb0d663cb051850a84b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.035739835103352866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198007_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198007_D_GLOBAL.out deleted file mode 100644 index 008d5c02c87d0fff81e219c8680a17740741f668..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.025897332032521567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198007_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198007_H_GLOBAL.out deleted file mode 100644 index 0a0cc88bcbb6b0b28405d94a791f449451d1585d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.033202656110127765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198007_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198007_M_GLOBAL.out deleted file mode 100644 index 18fbf093b7e92906707bf72f4918a996d3e14538..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.040231911341349284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198008_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198008_D_GLOBAL.out deleted file mode 100644 index c96c717908cfaff768794d5daf6b87e32d7651b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.02404145399729411 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198008_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198008_H_GLOBAL.out deleted file mode 100644 index 38b28bd6785511907197d11311fc9bd8dbe810dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.03246010541915893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198008_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198008_M_GLOBAL.out deleted file mode 100644 index 6bed0ef4869fc660635a8386444e04ebeb5d61dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.03971671263376872 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198009_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198009_D_GLOBAL.out deleted file mode 100644 index c4a68221374f4ae7461bdf221e8c680b707b027d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.024310441811879475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198009_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198009_H_GLOBAL.out deleted file mode 100644 index 32269df9eae8cd45b15ca31efeabaaa0470a0daf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.03809600273768107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198009_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198009_M_GLOBAL.out deleted file mode 100644 index c4818d592a436f66544c9d96d06dae6d833d4f0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.018465701738993326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198010_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198010_D_GLOBAL.out deleted file mode 100644 index 237f6315971171e153c6551ba4d52630dda6fe83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.045417726039886475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198010_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198010_H_GLOBAL.out deleted file mode 100644 index 9ae843c04912558b22834f1023d642a9a2d28dcb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.02561507225036621 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198010_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198010_M_GLOBAL.out deleted file mode 100644 index db63f3338093fd76ef53898ec514872ec0476725..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.041900662581125896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198011_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198011_D_GLOBAL.out deleted file mode 100644 index d3e0d663560f2b065cd9f5d476dce1a781c11321..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198011 STATION NETCDFs -0.017145228385925294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198011_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198011_H_GLOBAL.out deleted file mode 100644 index 8c90a744c47c775f3614a2e58f9d4027fa4f5bf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198011 STATION NETCDFs -0.027039233843485513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198011_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198011_M_GLOBAL.out deleted file mode 100644 index 7c69f7eb0383ab7f02fb7a057e2a9f1085779dd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198011 STATION NETCDFs -0.036098845799763996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198012_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198012_D_GLOBAL.out deleted file mode 100644 index 1740d1b623886366482176419b6b6d1404ee3647..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.04477866888046265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198012_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198012_H_GLOBAL.out deleted file mode 100644 index a886aeb906d004031e87a9f05dc7a141788ceadc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.036891313393910725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198012_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198012_M_GLOBAL.out deleted file mode 100644 index b9b05561b50befc30cd2ffde97b6093c1c6a3edd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.024106280008951823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198101_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198101_D_GLOBAL.out deleted file mode 100644 index a1fe65ee72d343fffc9739fc5a1140384e868317..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.026508045196533204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198101_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198101_H_GLOBAL.out deleted file mode 100644 index a23971c23dd3b235a2ea45d9d752a195d946d257..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.039815974235534665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198101_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198101_M_GLOBAL.out deleted file mode 100644 index 766a428f642b58e6ab5772ff5af0d073545dca45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.028812833627065024 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198102_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198102_D_GLOBAL.out deleted file mode 100644 index 999ceb608550d86f45a99c87bc8d07b8f1cffcfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.026836899916330974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198102_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198102_H_GLOBAL.out deleted file mode 100644 index c06c7ab21b3e25e5e567fbda540033bbfd3846b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.03490962187449138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198102_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198102_M_GLOBAL.out deleted file mode 100644 index 3b1329fadfc3d7b967f8bc4480916be0497985d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.03372360467910766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198103_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198103_D_GLOBAL.out deleted file mode 100644 index ad6a80b6a29de13f2387c76cc2a7065ddf022a29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.04236063957214355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198103_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198103_H_GLOBAL.out deleted file mode 100644 index 10e08232924787030776ed722cb88cf7ab876977..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.03329890569051107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198103_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198103_M_GLOBAL.out deleted file mode 100644 index a7a4b04c6ad6e883139041c96e7d2631d98dd5fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.03551559448242188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198104_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198104_D_GLOBAL.out deleted file mode 100644 index 78ce07098427db94ec1ad08921df5426f6a0058b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198104 STATION NETCDFs -0.029517964522043864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198104_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198104_H_GLOBAL.out deleted file mode 100644 index 5ca9151bae7df87ffad5d71418e082969f513e2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198104 STATION NETCDFs -0.035782265663146975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198104_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198104_M_GLOBAL.out deleted file mode 100644 index 1589cf134c4c45ca02a8676d7bc4cef9f14e823f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198104 STATION NETCDFs -0.04163012107213338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198105_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198105_D_GLOBAL.out deleted file mode 100644 index a136a63c183f928c3d150146bb83e2cbe95638a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198105 STATION NETCDFs -0.04542838335037232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198105_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198105_H_GLOBAL.out deleted file mode 100644 index f606af4531c53813cb1d380ae9f94aa89382e02b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198105 STATION NETCDFs -0.02142150402069092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198105_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198105_M_GLOBAL.out deleted file mode 100644 index 336f2c3a78bec63e96cd29b5db0b554222b05afc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198105 STATION NETCDFs -0.034909435113271076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198106_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198106_D_GLOBAL.out deleted file mode 100644 index 516d08dea9a61e6842a6deb30aa1c8cbc9cbe15a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.03696736494700114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198106_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198106_H_GLOBAL.out deleted file mode 100644 index 3bce4f83565bfb1555e8e648e0c2da36a22f5820..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.035823071002960206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198106_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198106_M_GLOBAL.out deleted file mode 100644 index 3fc42cc4054fd38c31c44a1ec31f23aeae12446e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.0369585116704305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198107_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198107_D_GLOBAL.out deleted file mode 100644 index e9b431dd280ad1c5c1e3362a988d4d4c371ba413..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.019224135080973308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198107_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198107_H_GLOBAL.out deleted file mode 100644 index dc92a0a9b900f432c3dffbe86c3a4ad2040c3d7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.03411899407704671 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198107_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198107_M_GLOBAL.out deleted file mode 100644 index 8660120659531a96007c9b20bff5a7348e1e5516..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.03712087074915568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198108_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198108_D_GLOBAL.out deleted file mode 100644 index cd78823507a0555e2c54443abe8707912c1d897e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.05265198945999146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198108_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198108_H_GLOBAL.out deleted file mode 100644 index 175be3c9550bd201730e4caabda7b9f54a86d371..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.03750823736190796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198108_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198108_M_GLOBAL.out deleted file mode 100644 index dcc00327e921315a4f80e0b160873bd08f26c7b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.02806966702143351 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198109_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198109_D_GLOBAL.out deleted file mode 100644 index 906065b1404df03433b4a96b9e1f3e7e5b4823a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.04526668389638265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198109_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198109_H_GLOBAL.out deleted file mode 100644 index 8bf0234b734c26276def6e5f37064569a1632b12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.024539260069529216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198109_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198109_M_GLOBAL.out deleted file mode 100644 index 97a7b029d58c40a27ca066b77d41b34a84ccf31d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.038102372487386064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198110_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198110_D_GLOBAL.out deleted file mode 100644 index d6416064f89f45ffd7e8d0eaf619d2ab5f5ddd2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.021193663279215496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198110_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198110_H_GLOBAL.out deleted file mode 100644 index e3dad8489dd9466177893c07648791b0e23b6118..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.025968496004740396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198110_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198110_M_GLOBAL.out deleted file mode 100644 index f77acc37496ec268bbef19a75c5e3df5441bfa13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.0312061071395874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198111_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198111_D_GLOBAL.out deleted file mode 100644 index a04e638f0c841d99ff129ab705dbb405f29708c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.028791403770446776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198111_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198111_H_GLOBAL.out deleted file mode 100644 index 09e26975be93d64e3ed0af8d469d31a34c9c6fc5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.018909160296122232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198111_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198111_M_GLOBAL.out deleted file mode 100644 index 19d3ccb1a1452909faf9d78e93bc7bb95cb5c911..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.04518407980600993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198112_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198112_D_GLOBAL.out deleted file mode 100644 index 2208f48481fb7ff0dd6f05371c5d8eca5dcc2e23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.02777333656946818 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198112_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198112_H_GLOBAL.out deleted file mode 100644 index 3307c12e7528f7ff45389b7d0d18c36557238465..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.023378264904022217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198112_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198112_M_GLOBAL.out deleted file mode 100644 index f07864ad40de972d3a5308a1c8bfd3badce6fbde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.03392716646194458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198201_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198201_D_GLOBAL.out deleted file mode 100644 index 8d3a58dfa53efcd56ca69dad862b1e1d5b261faf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.03481980164845785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198201_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198201_H_GLOBAL.out deleted file mode 100644 index f73d13404acc6b5d29a0ddb3a3a98ae0b427c6f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.029260659217834474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198201_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198201_M_GLOBAL.out deleted file mode 100644 index c8265484489fea20157ceb1b3874439642b99b4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.037828469276428224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198202_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198202_D_GLOBAL.out deleted file mode 100644 index 5702a9fac56bb18d908b542a8c8c97bf570bcaba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.03501679499944051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198202_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198202_H_GLOBAL.out deleted file mode 100644 index f45a0af1a0ccb46045f69045f6783bed7b8b87cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.04146254857381185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198202_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198202_M_GLOBAL.out deleted file mode 100644 index cb6f27de61cb467195084f81f797326b6d6fdbaf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.030556559562683105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198203_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198203_D_GLOBAL.out deleted file mode 100644 index 90e8ae8783603ad3944b7bf4b1ff0fd2f18431d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.03655636707941691 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198203_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198203_H_GLOBAL.out deleted file mode 100644 index 7e151c5750b91c6806cdad871a5e99e402000c8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.043925432364145915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198203_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198203_M_GLOBAL.out deleted file mode 100644 index 576166e6f7099165467bf37b97559c20eef57aaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.03243084748586019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198204_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198204_D_GLOBAL.out deleted file mode 100644 index dfe0529b6b58ee640171ad092f77488b03b4c543..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.04211297035217285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198204_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198204_H_GLOBAL.out deleted file mode 100644 index 0e14e2f18226038d84f12dd1c1f611150476e562..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.03714115222295125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198204_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198204_M_GLOBAL.out deleted file mode 100644 index 1b0c70c3fa6576351013bc42e3ac539d61d6556a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.025868892669677734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198205_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198205_D_GLOBAL.out deleted file mode 100644 index 7801860dbdd30fbf8f658eb1ba0c1ba2c3417a09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.029259101549784342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198205_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198205_H_GLOBAL.out deleted file mode 100644 index c66026938d644de1d68b3b8c4bfa04cf8f9d8956..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.040875331560770674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198205_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198205_M_GLOBAL.out deleted file mode 100644 index b5a2674fed06719454e17c8a37da24fdf09b4591..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.03937641382217407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198206_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198206_D_GLOBAL.out deleted file mode 100644 index d1d96670bf2fae93c52a07c3645605d1dca487e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.02901741663614909 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198206_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198206_H_GLOBAL.out deleted file mode 100644 index 0ea0b3cbbaf9e05e5869ffcaeedea71d01cda7d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.03953355550765991 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198206_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198206_M_GLOBAL.out deleted file mode 100644 index ef24576e5ee061302403aaed2d7120d83c67caaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.04118121862411499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198207_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198207_D_GLOBAL.out deleted file mode 100644 index 559beb6b88cf93fa1c94f0308c69385d9aba485d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.042945607503255205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198207_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198207_H_GLOBAL.out deleted file mode 100644 index 9bc62d093f73f7fa3f655b7be4b08744a089ea2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.04257698059082031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198207_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198207_M_GLOBAL.out deleted file mode 100644 index 670e1858544b8076271d92b1cd2e052e810df93f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.03251149654388428 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198208_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198208_D_GLOBAL.out deleted file mode 100644 index e279f5e42bdad80801d03b9e78c5a6a65ef2dec9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.051367406050364176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198208_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198208_H_GLOBAL.out deleted file mode 100644 index 94d5b6f876be4f5d3964f3ad2cdbfc21e21f0fe8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.032773955663045244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198208_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198208_M_GLOBAL.out deleted file mode 100644 index 44d20de7f39c7b0789517a23b04d599b4779fc7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.030735544363657632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198209_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198209_D_GLOBAL.out deleted file mode 100644 index fbf32825ed3897f942253b4198de51e299639240..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.028108465671539306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198209_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198209_H_GLOBAL.out deleted file mode 100644 index 9fa1542fd4c64b7751711d4f6c90935fa5d65b56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.036787323156992596 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198209_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198209_M_GLOBAL.out deleted file mode 100644 index 8021d431fdf2ab72b4e5d20448f2f384c13f236a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.03934350808461507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198210_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198210_D_GLOBAL.out deleted file mode 100644 index 44c766576b9698507f5c29e935d813455f933c26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.018171759446461995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198210_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198210_H_GLOBAL.out deleted file mode 100644 index 2387bf9920e1babb51306f996514ed508fafe7c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.033166189988454185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198210_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198210_M_GLOBAL.out deleted file mode 100644 index afc6cdc8e555a71bd70484ae44daa5125cc74fd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.031610405445098876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198211_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198211_D_GLOBAL.out deleted file mode 100644 index bf25eb4643880af1269b217c0fb5b8636789e07c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.03742547432581584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198211_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198211_H_GLOBAL.out deleted file mode 100644 index ea7aa7b1e3f0a3a50380631b26ca402f682fb958..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.03859523137410482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198211_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198211_M_GLOBAL.out deleted file mode 100644 index 40a98ed68d5bb685ee82eacd986ac420f7a42538..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.03410709698994954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198212_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198212_D_GLOBAL.out deleted file mode 100644 index a9cfd71eb6cbf68e702b869e81c0a947fe599f45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.03399839798609416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198212_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198212_H_GLOBAL.out deleted file mode 100644 index c1714ba8eac9f68a5a530e3272ba41044b21af6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.03470894893010457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198212_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198212_M_GLOBAL.out deleted file mode 100644 index 297adb6d3832e5aa4f57bc87093ac37b13dfffcf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.022386924425760905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198301_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198301_D_GLOBAL.out deleted file mode 100644 index 8c5d8c6fb3a155859e3750e2805ffd1a7fb9a120..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.03294039169947306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198301_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198301_H_GLOBAL.out deleted file mode 100644 index 4b979a7db631a4b62c791990ec986babb0300ae4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.044980116685231525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198301_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198301_M_GLOBAL.out deleted file mode 100644 index 2ab43a4d061d30e26bbc1715f96ec084c598e4e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.0247275710105896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198302_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198302_D_GLOBAL.out deleted file mode 100644 index d4f09340bad8b8b50dfa4f042407f47e51b6eca9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.023323643207550048 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198302_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198302_H_GLOBAL.out deleted file mode 100644 index 1c95e5819e17fe9219ae2deccbd30513794fd125..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.028896923859914145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198302_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198302_M_GLOBAL.out deleted file mode 100644 index 89470c92854ada7bf317f2adc97ed8d4d7123d70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.03017483154932658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198303_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198303_D_GLOBAL.out deleted file mode 100644 index e60330ad9dd7a8adbc1e9d6ba745331d2f0d31ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.040342811743418375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198303_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198303_H_GLOBAL.out deleted file mode 100644 index 02394165becd51e67f8867c7546a6ea813b88554..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.039954737822214766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198303_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198303_M_GLOBAL.out deleted file mode 100644 index a9bca10bee4ec52918e64a482c4918ea64f07886..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.035502580801645915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198304_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198304_D_GLOBAL.out deleted file mode 100644 index c6e846e038d9455c7bcf352a36cb23de82baf76b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.030161420504252117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198304_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198304_H_GLOBAL.out deleted file mode 100644 index efa7a580e3b0d342c76107d82e06b32b1eb88056..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.028457621733347576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198304_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198304_M_GLOBAL.out deleted file mode 100644 index 6a84ed89ba7f90b13071fdbbaee9693a81a4fda9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.03808466990788777 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198305_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198305_D_GLOBAL.out deleted file mode 100644 index 0c64089ab7e5b6d0fa2fb27085b47c73d92b36db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.03459013700485229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198305_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198305_H_GLOBAL.out deleted file mode 100644 index 3174b86b9c62121908e15071bdb145a85ba9ab9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.03891607522964478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198305_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198305_M_GLOBAL.out deleted file mode 100644 index a2ca73ef159e72b4d9c3ec93f9ff4b756effbaa9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.04056187868118286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198306_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198306_D_GLOBAL.out deleted file mode 100644 index a0cdddcc80b7752ffedf6e23b74f63db97e9fa94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.03522266546885173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198306_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198306_H_GLOBAL.out deleted file mode 100644 index e72c26a9e9c34a51b5c3eb9000c2d64db4c28fe5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.029556775093078615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198306_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198306_M_GLOBAL.out deleted file mode 100644 index ecc7f07ed45f88f48b2ba1844b4f6695a568e433..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.026301379998524985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198307_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198307_D_GLOBAL.out deleted file mode 100644 index d843f459fb658386965a15c14d5c88567609f2a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.04951228698094686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198307_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198307_H_GLOBAL.out deleted file mode 100644 index 1f3bc0872a4d4db226c4028963fe352f30f6be74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.03244723478953044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198307_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198307_M_GLOBAL.out deleted file mode 100644 index cd0e8ee7c5bbe04f205f8f620007eee1fe48034e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.03202754259109497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198308_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198308_D_GLOBAL.out deleted file mode 100644 index 1626d0b80494fb21c6a503341eafd0144d27c597..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.020827984809875487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198308_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198308_H_GLOBAL.out deleted file mode 100644 index 65d1cbc99929c6a4ea1106dcdd639deabe01957e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.04591701030731201 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198308_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198308_M_GLOBAL.out deleted file mode 100644 index a5e7020342435144f17d3152250e43c8f8057ee5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.026520844300587973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198309_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198309_D_GLOBAL.out deleted file mode 100644 index b9ed4ad9e8577465a50fd10810c0c99d417a8536..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.0384692907333374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198309_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198309_H_GLOBAL.out deleted file mode 100644 index 3ff45263423c86cc6786b6811a7f54ea3bc9dec1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.023034576574961343 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198309_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198309_M_GLOBAL.out deleted file mode 100644 index 9a458e3cb3811d14587b2a76a67d2735a29bff4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.0424955685933431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198310_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198310_D_GLOBAL.out deleted file mode 100644 index a6599faf3b3ee424dda878e76b733520fb1fc298..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.03491028944651286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198310_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198310_H_GLOBAL.out deleted file mode 100644 index 4ad6e48ad17ad6dad3fed9741dba4026239440c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.02489515542984009 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198310_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198310_M_GLOBAL.out deleted file mode 100644 index 62371d387e4266c1a7b546b6f7b25b1b37b3242e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.05340991417566935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198311_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198311_D_GLOBAL.out deleted file mode 100644 index 43ce8c848f50ccfc1fc6df4a12571ded5fd44846..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.042887250582377114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198311_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198311_H_GLOBAL.out deleted file mode 100644 index 51714b805927a06a9cf80231ccbde0eec5a9bdab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.04354437987009684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198311_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198311_M_GLOBAL.out deleted file mode 100644 index a72bd246c001385b2a4b187551b56e501d403138..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.03642293214797974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198312_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198312_D_GLOBAL.out deleted file mode 100644 index 09997ecc01b42e4db17e9fa76dfd1771540bf0ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.03332839806874593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198312_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198312_H_GLOBAL.out deleted file mode 100644 index 58fc682a652b4eeee17b38e9aa468fa86e5a1d35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.030971948305765787 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198312_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198312_M_GLOBAL.out deleted file mode 100644 index fa03811033be86d109c469b522ec90675363f7ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.03726039330164591 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198401_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198401_D_GLOBAL.out deleted file mode 100644 index 88d80bf6c859d0bc5f25c57a1c9984ff12cc7608..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.030488268534342448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198401_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198401_H_GLOBAL.out deleted file mode 100644 index 026ac27d9478343a85fc22d696fa365306afc8cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.04151400327682495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198401_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198401_M_GLOBAL.out deleted file mode 100644 index 025e92b80aa972e9a42b1dcd44a90d7a9d8e0d2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.039636536439259844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198402_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198402_D_GLOBAL.out deleted file mode 100644 index a5053f966a329e7637fa4ce74de94d69963fc500..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.04690918525060018 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198402_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198402_H_GLOBAL.out deleted file mode 100644 index a1d8d307f502a846bbba986d761b81c3d7d01545..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.038053866227467856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198402_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198402_M_GLOBAL.out deleted file mode 100644 index 9cf4f7b65b53d868512b0201f2e546753204a793..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.02806567351023356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198403_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198403_D_GLOBAL.out deleted file mode 100644 index f992472d98b49a2be69efa712a806bc4832a07ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.0254350741704305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198403_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198403_H_GLOBAL.out deleted file mode 100644 index bbce01a5770e8537869ec6570f72ec98ab077ab5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.03826482693354289 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198403_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198403_M_GLOBAL.out deleted file mode 100644 index ba2011fd797622cbda5cb22657fb1f74932e117f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.02188937266667684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198404_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198404_D_GLOBAL.out deleted file mode 100644 index 8b7506eacfd543ae10f2caeadbcb1f115f039918..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.03401861190795898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198404_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198404_H_GLOBAL.out deleted file mode 100644 index 9fbe674169ab29aadb684707ad502a46647d186a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.028155306975046795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198404_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198404_M_GLOBAL.out deleted file mode 100644 index 4caca9412a72d5f243a408f7da85bb6069a3262e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.046395119031270346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198405_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198405_D_GLOBAL.out deleted file mode 100644 index b08a368b5df94d31c3dd9fe640fa42d79782a4db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.03819962739944458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198405_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198405_H_GLOBAL.out deleted file mode 100644 index cd29b4f494ded934f720937bd5731100cb999798..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.03660109043121338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198405_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198405_M_GLOBAL.out deleted file mode 100644 index a4d270730d32fc84ebbf35c85de82b442b3da21e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.034274311860402425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198406_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198406_D_GLOBAL.out deleted file mode 100644 index 4f3535304c7ae817f4b14d881db6ced63d5a41ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.03943626880645752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198406_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198406_H_GLOBAL.out deleted file mode 100644 index 19f9d29c2daf6b75541bdbff89f6b86161e55244..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.04055004914601644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198406_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198406_M_GLOBAL.out deleted file mode 100644 index c6736d13068b0b63bb69080239b90c20e328717c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.028880031903584798 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198407_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198407_D_GLOBAL.out deleted file mode 100644 index c56c33fb970dfec21b1c4602f4c294cbf6bda182..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.03701153596242269 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198407_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198407_H_GLOBAL.out deleted file mode 100644 index 9af82c5706e47aeaf2ccbe19d9f5bf4066b1bc20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.040543500582377115 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198407_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198407_M_GLOBAL.out deleted file mode 100644 index aac5956713411d3d17855f762428b63dde501846..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.026370882987976074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198408_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198408_D_GLOBAL.out deleted file mode 100644 index 25b3c3d878a51357d95f014a00474ddc82c2ecae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.02335883378982544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198408_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198408_H_GLOBAL.out deleted file mode 100644 index 2e6ae27348a75bbd4d289c2ef86a4e5d50e96f52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.04802737236022949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198408_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198408_M_GLOBAL.out deleted file mode 100644 index bf7755a717864e6d2d54ba97565f1aba3c9ddcd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.034582316875457764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198409_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198409_D_GLOBAL.out deleted file mode 100644 index 0f8b9f294b00c6eb81a08ca881f21c37434c7e06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.0455722451210022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198409_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198409_H_GLOBAL.out deleted file mode 100644 index 840e4cad2c6e75888998aea73fbbc24134cc7214..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.035159730911254884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198409_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198409_M_GLOBAL.out deleted file mode 100644 index 3ba28b1c6106c79eb45844c1a1f2fd5c62a5f43d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.04453056255976359 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198410_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198410_D_GLOBAL.out deleted file mode 100644 index 32ffc8e72c4f01d357c566b5adc2d4e150a513f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.02702707846959432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198410_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198410_H_GLOBAL.out deleted file mode 100644 index efcdcc9f4aea5bbd1820de4c24cbbfa5a0526eee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.04212890068689982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198410_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198410_M_GLOBAL.out deleted file mode 100644 index 9ae9b4319cd19a5dec8611947e2c59eea65bcf00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.03468681176503499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198411_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198411_D_GLOBAL.out deleted file mode 100644 index 050979fc759382f3c0dfe5e1fb4e2b6790e6693e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.05497920513153076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198411_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198411_H_GLOBAL.out deleted file mode 100644 index 4aaef2ed010e7fb3e53732e086ed8bbbd37260e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.028819175561269124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198411_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198411_M_GLOBAL.out deleted file mode 100644 index 70925c966fc6db9a1a7a912bc6407fcf26c63895..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.04589334726333618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198412_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198412_D_GLOBAL.out deleted file mode 100644 index cfeb82f5375eef78f113beb59d1fd9bb94a81d07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.04365349213282267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198412_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198412_H_GLOBAL.out deleted file mode 100644 index 78cc54aa1bf85df2f5cdd49b1fb0c17a9e370a3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.026829469203948974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198412_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198412_M_GLOBAL.out deleted file mode 100644 index 738f1e6682eb07abe6db346fe4c67533ba616060..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.04356050491333008 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198501_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198501_D_GLOBAL.out deleted file mode 100644 index 83fb7ab174a1225a183108ac2051ef16a4de4932..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.04280795256296794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198501_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198501_H_GLOBAL.out deleted file mode 100644 index b325581884f130872462189995eb56b984310bde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.04459003607432047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198501_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198501_M_GLOBAL.out deleted file mode 100644 index 3333db9b986f01f41b50b279cb927d76d79efccf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.033793691794077554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198502_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198502_D_GLOBAL.out deleted file mode 100644 index bbfc71c952659e5629d2e856fdd8eca961fc0297..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.04570654233296712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198502_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198502_H_GLOBAL.out deleted file mode 100644 index 65dcf1b633e7d1760a8e2aad7500e6f7bce1f875..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.04146007696787516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198502_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198502_M_GLOBAL.out deleted file mode 100644 index 5e4901ebba20487c28f215b53089998e680c6eb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.030782540639241535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198503_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198503_D_GLOBAL.out deleted file mode 100644 index 9b898d4fec244cffa2674448f36961eed3ef8340..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.04047269026438395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198503_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198503_H_GLOBAL.out deleted file mode 100644 index b60b9f0235648f8c92d7832828c79b1ed0da209f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.023549441496531168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198503_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198503_M_GLOBAL.out deleted file mode 100644 index 3189de6647ad473cb17d1e6873656d849cb4c16d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.03443333705266317 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198504_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198504_D_GLOBAL.out deleted file mode 100644 index c7334c522c87c8529a9d7bf3a8b07e3644ba4daa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.05350462992986043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198504_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198504_H_GLOBAL.out deleted file mode 100644 index bc761b423a79aa15e62a9517a49e69e14fc50dbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.022861913839975993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198504_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198504_M_GLOBAL.out deleted file mode 100644 index eef4f6d812778bb4082df2db21b68f6e7769ba67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.05205799738566081 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198505_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198505_D_GLOBAL.out deleted file mode 100644 index 0bc84bde95e1495129a88906f505e3ab906d04a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.040442363421122236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198505_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198505_H_GLOBAL.out deleted file mode 100644 index c2a03ed9547084a779a1421ee483ccfcde9d1990..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.05056785345077515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198505_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198505_M_GLOBAL.out deleted file mode 100644 index 2e64770e77012e15061fe7dcda54d35fb5e18da3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.031067593892415365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198506_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198506_D_GLOBAL.out deleted file mode 100644 index 309b44dbbf8180bece1ad6fe8cc90e73b46507bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.024319036801656087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198506_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198506_H_GLOBAL.out deleted file mode 100644 index 67d3b00dc0cd2d044f87ed28955f2625b3d8f197..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.03749442497889201 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198506_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198506_M_GLOBAL.out deleted file mode 100644 index 0925f5ef2e6723c0bd7e738b81f8657d7da9a306..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.034516525268554685 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198507_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198507_D_GLOBAL.out deleted file mode 100644 index f45f103acdfc4ec24b5ab28dca085e44f39cc437..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.04325632254282633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198507_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198507_H_GLOBAL.out deleted file mode 100644 index ac961a46f509bfcc7e7afbf92bca88516cfa2ed3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.03877613544464111 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198507_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198507_M_GLOBAL.out deleted file mode 100644 index 32134f864b2720d21164ef612d235177870c23ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.04294238487879435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198508_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198508_D_GLOBAL.out deleted file mode 100644 index c1843fd86ff81bcb94ec0f93fc69bbe239de524b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.03634341955184937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198508_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198508_H_GLOBAL.out deleted file mode 100644 index 64e2d1bb493265a6bd09c35c3f2e977a36e84a82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.044914122422536215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198508_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198508_M_GLOBAL.out deleted file mode 100644 index dd35bc37ba335a21ba031c07a1cb8f0560421cbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.03748189608256022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198509_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198509_D_GLOBAL.out deleted file mode 100644 index aa0572df85bf9ec03f4d7132c1aabaee1b1973e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.04561491012573242 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198509_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198509_H_GLOBAL.out deleted file mode 100644 index 67361d7ecbc1d141c4bbd1b145edd410db2071e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.02371608813603719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198509_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198509_M_GLOBAL.out deleted file mode 100644 index 5f91a7ac51aa46e6d9ada5f83cc8643cf252f4a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.04701873461405436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198510_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198510_D_GLOBAL.out deleted file mode 100644 index 14e9a4bfec557dbcb0089aa0676a9f64d6bba4d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.025262526671091714 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198510_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198510_H_GLOBAL.out deleted file mode 100644 index 82999e8429d02d9e7cc966cd413daefe6b21f2dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.04296997388203939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198510_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198510_M_GLOBAL.out deleted file mode 100644 index 85dcc1a8c98ecebd40bd17f66fdf41d567e819b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.03355960448582967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198511_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198511_D_GLOBAL.out deleted file mode 100644 index 1580c527b455dea71ff912214bfc81b88ccab2e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.034668187300364174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198511_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198511_H_GLOBAL.out deleted file mode 100644 index 37cc0f0fa89ee3e53a1ebcb6e6a906793cfd4337..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.027891357739766438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198511_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198511_M_GLOBAL.out deleted file mode 100644 index c3ffe54f9d5e6f4c27b4cd25d18a1fde87d64ae7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.032996221383412676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198512_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198512_D_GLOBAL.out deleted file mode 100644 index 3e0a8b944bc3951489a4269a1d41da7db25038f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.03719753424326579 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198512_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198512_H_GLOBAL.out deleted file mode 100644 index b494dc3cf7159028423e81a99e59289e2033ec90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.03856376012166341 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198512_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198512_M_GLOBAL.out deleted file mode 100644 index 77f6e9839215e88293f68e3ca81b7c7dd3c2807b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.03839893341064453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198601_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198601_D_GLOBAL.out deleted file mode 100644 index 88dd2f1b10e9d96435c5c8cb864c52dc9928ba62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.05162067413330078 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198601_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198601_H_GLOBAL.out deleted file mode 100644 index 51c297613b934bbbae2028a66f5a539fdcbae773..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.04855533838272095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198601_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198601_M_GLOBAL.out deleted file mode 100644 index b7fe83efd643de5e6147dc85a27595d0c5bc0a98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.03160729010899862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198602_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198602_D_GLOBAL.out deleted file mode 100644 index 5e002f30567f8a3a68c91744b576018a783d8983..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.04600077470143636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198602_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198602_H_GLOBAL.out deleted file mode 100644 index 61617c4c088f8f34a89c6a5424c8d8999afb7111..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.02622764507929484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198602_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198602_M_GLOBAL.out deleted file mode 100644 index 6074d836c272d6d69c53509f7a76a850ff5ec915..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.038121151924133304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198603_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198603_D_GLOBAL.out deleted file mode 100644 index 56632fd4a57ab2823aed533983d7ee84f100a5ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.03071577548980713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198603_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198603_H_GLOBAL.out deleted file mode 100644 index 823850a1d1df675d2f80da1a4e1ce19965cca180..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.03877174456914266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198603_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198603_M_GLOBAL.out deleted file mode 100644 index 7f9638034ada93c0d3e8cb80f06855f202853d9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.02814017136891683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198604_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198604_D_GLOBAL.out deleted file mode 100644 index 8a3e6b2a55dffb2502bd9936fcce73c1fded266d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.04657805760701497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198604_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198604_H_GLOBAL.out deleted file mode 100644 index f98c1dc0b963e84e4cf2b9eb4554134e8c79923b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.03340238332748413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198604_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198604_M_GLOBAL.out deleted file mode 100644 index 43b714f8655230641fe5f47ce5ebf9829af14239..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.026743110020955405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198605_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198605_D_GLOBAL.out deleted file mode 100644 index 9325bb898c9804e398702094df07082545fc8307..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.027265151341756184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198605_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198605_H_GLOBAL.out deleted file mode 100644 index 6d048be402b77909e390f19cd2265d7d91699c17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.02353538672129313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198605_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198605_M_GLOBAL.out deleted file mode 100644 index 49125c8efb8f11dd7fa121c1bbd67d7673c07113..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.04352933168411255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198606_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198606_D_GLOBAL.out deleted file mode 100644 index 82b2319827910cf4b95fc7ea1aebeb7790f0f2e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.04999743302663167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198606_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198606_H_GLOBAL.out deleted file mode 100644 index 026ff248e6bbf496149a68412281b29d6c20eb47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.023941234747568766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198606_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198606_M_GLOBAL.out deleted file mode 100644 index 54e83e598460699bda97bb39eff6aeea941c4fc3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.038071664174397786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198607_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198607_D_GLOBAL.out deleted file mode 100644 index 7ea1199685fa6c37a36dd1149f4a5f48d03681ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.025049289067586262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198607_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198607_H_GLOBAL.out deleted file mode 100644 index b13b47d1d043636b1e3f5354a8c9f6acfac10618..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.037271547317504886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198607_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198607_M_GLOBAL.out deleted file mode 100644 index 577be7e205b197107f642a50d75942149aead3f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.04184672435124715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198608_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198608_D_GLOBAL.out deleted file mode 100644 index ce3daf303e4cb4fdcccb1408ff8e22832c89feec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.05286223491032918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198608_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198608_H_GLOBAL.out deleted file mode 100644 index 6f187809019f15f31a59df78cb8faa509eff37eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.03541725476582845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198608_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198608_M_GLOBAL.out deleted file mode 100644 index f2f04396efaa0f8a6bdb56c6fb1d085098b9b7f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.03800667524337768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198609_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198609_D_GLOBAL.out deleted file mode 100644 index 8b40954a5e8187553ccb52e782ea9d9b5d2744e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.02734527587890625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198609_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198609_H_GLOBAL.out deleted file mode 100644 index e0172e997215006ad8d669c0a2e20fd536b7ff34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.02240187724431356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198609_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198609_M_GLOBAL.out deleted file mode 100644 index 348046d01f9f5804249aff82818d03fa8391088d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.02381706635157267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198610_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198610_D_GLOBAL.out deleted file mode 100644 index 3fe29da831ee4464692ea8abf675fa87181419fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.04422810872395833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198610_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198610_H_GLOBAL.out deleted file mode 100644 index 9e10017a395b0a91eadcaf83750ee11d840a907d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.05632132291793823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198610_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198610_M_GLOBAL.out deleted file mode 100644 index 5fbd9ec85c6a2fa1b3a43b6356ba1d46c7c57044..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.03908270994822184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198611_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198611_D_GLOBAL.out deleted file mode 100644 index fecac73eec8cef6811d13a011b9cac3b06fd0660..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.040877064069112144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198611_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198611_H_GLOBAL.out deleted file mode 100644 index 334f261ac62b67abd60d39adfff24f3dc704873b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.03249354759852092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198611_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198611_M_GLOBAL.out deleted file mode 100644 index e0b99f434ac95247173794f4ff5945f519a16cb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.028214184443155925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198612_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198612_D_GLOBAL.out deleted file mode 100644 index 45151b9fffc1ba30d3f625f6d5964866febbe438..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.04122570753097534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198612_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198612_H_GLOBAL.out deleted file mode 100644 index 437d20a83263313358108a1e0eaf753234e4ee68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.02236491044362386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198612_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198612_M_GLOBAL.out deleted file mode 100644 index a8214027cea6b247578eae5a80a83859d9d4b485..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.04282859166463216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198701_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198701_D_GLOBAL.out deleted file mode 100644 index d2791215246ea0c311ed217282ce1eeb0561ab6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.031521964073181155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198701_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198701_H_GLOBAL.out deleted file mode 100644 index bbb45a40fa78f072345bf9a2e834b4acc0eaf678..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.040445717175801595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198701_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198701_M_GLOBAL.out deleted file mode 100644 index 4a0693ebb90e9f74a31fcc26d81ff8652e28aa2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.0359981099764506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198702_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198702_D_GLOBAL.out deleted file mode 100644 index f67044bd8de6d5a468fb88560714c2d2b40cbe5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.03799728155136108 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198702_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198702_H_GLOBAL.out deleted file mode 100644 index 64cd8f19480126a5fb18aa902a19b99fce04f340..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.04514531294504801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198702_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198702_M_GLOBAL.out deleted file mode 100644 index c5df976945930e1b0fe27f8d6bbef612b389520a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.04056131839752197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198703_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198703_D_GLOBAL.out deleted file mode 100644 index 93d5be7473accb66ad6b6e3ca26af0c58849f368..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.03752180735270182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198703_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198703_H_GLOBAL.out deleted file mode 100644 index c300921ee485a874b8067f2741b10db8756bcd71..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.021143126487731933 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198703_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198703_M_GLOBAL.out deleted file mode 100644 index 8832c0ae58527af3cdb2840f391ca7eed4e6dd47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.056693422794342044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198704_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198704_D_GLOBAL.out deleted file mode 100644 index 8214e94b23fc429536c9759fb0170eddd29dc75f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.04724088907241821 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198704_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198704_H_GLOBAL.out deleted file mode 100644 index 7d8e5806978abeaeab2de4acab38a26ee479d0d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.04215120871861776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198704_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198704_M_GLOBAL.out deleted file mode 100644 index 4c2823fc5639214338cf4768070ab4849a09f990..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.044909409681955975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198705_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198705_D_GLOBAL.out deleted file mode 100644 index fa54e345112f514a46a4f0c35278f5c36359f1ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.019518705209096272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198705_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198705_H_GLOBAL.out deleted file mode 100644 index 14e62e8173c39887a7f99512353110c60f33a2c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.044585712750752765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198705_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198705_M_GLOBAL.out deleted file mode 100644 index 56a470daf9cc3a591781a9b2fd53426897796453..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.04957575003306071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198706_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198706_D_GLOBAL.out deleted file mode 100644 index f9a328a40386a1f96907e20122126fb246770054..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198706 STATION NETCDFs -0.03869094053904216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198706_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198706_H_GLOBAL.out deleted file mode 100644 index a5c55277e348965bd0c22a05968265d8a1688758..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198706 STATION NETCDFs -0.04106244643529256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198706_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198706_M_GLOBAL.out deleted file mode 100644 index f78bd6bcd8e0cdcfd3337d866f832b3ffe9f66be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198706 STATION NETCDFs -0.022556241353352866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198707_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198707_D_GLOBAL.out deleted file mode 100644 index 2b9861b956b52c3ed6e571baef5eada4219b7e58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198707 STATION NETCDFs -0.02642620007197062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198707_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198707_H_GLOBAL.out deleted file mode 100644 index 62dee188a6d317b8c618c8164ac0e92a1c322494..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198707 STATION NETCDFs -0.04418853521347046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198707_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198707_M_GLOBAL.out deleted file mode 100644 index b9986da6017be93ae803d9ad0405fc15e146e5aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198707 STATION NETCDFs -0.03586994806925456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198708_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198708_D_GLOBAL.out deleted file mode 100644 index e7118107134ea59ee7760036998d5503b1bd7df8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198708 STATION NETCDFs -0.05633113384246826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198708_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198708_H_GLOBAL.out deleted file mode 100644 index 0d68195eb230d7f85149c866bec3dd5f2e0a990f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198708 STATION NETCDFs -0.03640776077906291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198708_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198708_M_GLOBAL.out deleted file mode 100644 index d9a1efee5503ea72e6b23808838fbc16dd8627ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198708 STATION NETCDFs -0.02365355889002482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198709_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198709_D_GLOBAL.out deleted file mode 100644 index 4f4cce6707b10048fb56b462d03784dc249b95d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198709 STATION NETCDFs -0.031177584330240884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198709_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198709_H_GLOBAL.out deleted file mode 100644 index 3b3ff4a86f9cdf6dc11e048b4a3d0a3c89ac66bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198709 STATION NETCDFs -0.0404605229695638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198709_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198709_M_GLOBAL.out deleted file mode 100644 index a151d6d6ed44f6f5d33d710851de9ec63bc91d3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198709 STATION NETCDFs -0.04131045738855998 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198710_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198710_D_GLOBAL.out deleted file mode 100644 index 157e86ea5a5db721c778e0f126d2bf0bba7371ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198710 STATION NETCDFs -0.031149125099182128 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198710_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198710_H_GLOBAL.out deleted file mode 100644 index dd4d5cec92acd16abcc4debe6b348275251ed8c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198710 STATION NETCDFs -0.04112939437230428 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198710_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198710_M_GLOBAL.out deleted file mode 100644 index 08c68363d998624079bae2e869e0077bc4763efc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198710 STATION NETCDFs -0.04106763998667399 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198711_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198711_D_GLOBAL.out deleted file mode 100644 index 8cd90e59dac4140fa30b3e7ed1d0796b2d075f8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198711 STATION NETCDFs -0.02315374215443929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198711_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198711_H_GLOBAL.out deleted file mode 100644 index b770000b897cab52d13f83caa2c357f5d4f5e901..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198711 STATION NETCDFs -0.041013952096303305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198711_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198711_M_GLOBAL.out deleted file mode 100644 index f9c06e66b2eb8c88aec21ee2a65548e0e3689963..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198711 STATION NETCDFs -0.04115993976593017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198712_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198712_D_GLOBAL.out deleted file mode 100644 index be71c14cc88c704cf8c366dfbe495724c73ff337..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198712 STATION NETCDFs -0.04153295358022054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198712_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198712_H_GLOBAL.out deleted file mode 100644 index c47bb3ead895150df76dea75bbc2f7a24b898435..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198712 STATION NETCDFs -0.03156510988871256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198712_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198712_M_GLOBAL.out deleted file mode 100644 index 8d09bb25e3fe46e2dac3dbba18b0240dd4bb7a11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198712 STATION NETCDFs -0.02455151081085205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198801_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198801_D_GLOBAL.out deleted file mode 100644 index 549c545172a22185b7459921eaf224604a1d38f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198801 STATION NETCDFs -0.04931631088256836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198801_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198801_H_GLOBAL.out deleted file mode 100644 index 3a021ebcb7368c6c5d3618e2d130b72504d7975e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198801 STATION NETCDFs -0.034688226381937665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198801_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198801_M_GLOBAL.out deleted file mode 100644 index 2c74d42a840d0c20d8922fd816dba3e365bf6115..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198801 STATION NETCDFs -0.02630724509557088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198802_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198802_D_GLOBAL.out deleted file mode 100644 index f3105d3590a14be03c46bd97c64dca6f5f05d95e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198802 STATION NETCDFs -0.04941380023956299 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198802_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198802_H_GLOBAL.out deleted file mode 100644 index e17a0e869ac11b961b2f33e6977500a44f0edfa0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198802 STATION NETCDFs -0.03963778813680013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198802_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198802_M_GLOBAL.out deleted file mode 100644 index 9746b5a4c65e86487da5381bfc594b0073827dc1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198802 STATION NETCDFs -0.04113208850224813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198803_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198803_D_GLOBAL.out deleted file mode 100644 index 08748a6d2f146086e3c5de2928607b5889b8c5b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198803 STATION NETCDFs -0.03979827960332235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198803_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198803_H_GLOBAL.out deleted file mode 100644 index 7232c533e1380da5899108edea1e7bacc5f5f34d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198803 STATION NETCDFs -0.03663382530212402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198803_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198803_M_GLOBAL.out deleted file mode 100644 index 9691120486f8cd4e67281d5b4179c6137a0499eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198803 STATION NETCDFs -0.03490062554677328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198804_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198804_D_GLOBAL.out deleted file mode 100644 index 8bc8e1cd5ecd4dec02e7353bb774ea7e8fe53d6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.03793351252873738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198804_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198804_H_GLOBAL.out deleted file mode 100644 index 8ad839e51e7ece14228c3a86b9fb8076fc3123ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.03771963119506836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198804_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198804_M_GLOBAL.out deleted file mode 100644 index 99abec2770b9fe8a59ab7769009d75e1af06fc0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.03671965996424357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198805_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198805_D_GLOBAL.out deleted file mode 100644 index 17503f317316d07b922f2eb9fd3bfa664d58bf08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198805 STATION NETCDFs -0.05217639605204264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198805_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198805_H_GLOBAL.out deleted file mode 100644 index 16800e837df97530b43a17d316cd241b76bfc583..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198805 STATION NETCDFs -0.025654423236846923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198805_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198805_M_GLOBAL.out deleted file mode 100644 index 57c36d499990641c3204982b323d6ef42e67156f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198805 STATION NETCDFs -0.0409629503885905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198806_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198806_D_GLOBAL.out deleted file mode 100644 index 0c48a60f50bc968ccf59d1cb6c38d33ec871c711..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198806 STATION NETCDFs -0.04160435994466146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198806_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198806_H_GLOBAL.out deleted file mode 100644 index e7e0ad4779ed2ed4227eea294629fa44034ca8f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198806 STATION NETCDFs -0.03740710417429606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198806_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198806_M_GLOBAL.out deleted file mode 100644 index d70d9ee6791e3b5521e1686b100d049d8f11599b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198806 STATION NETCDFs -0.047223226229349775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198807_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198807_D_GLOBAL.out deleted file mode 100644 index ea8e7a81243c631bcc06fd5fd56f0dc2c10f79fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198807 STATION NETCDFs -0.03889311552047729 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198807_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198807_H_GLOBAL.out deleted file mode 100644 index e9e5df0a06f7b39c3c4211ae5a93baa7cd8d02f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198807 STATION NETCDFs -0.024512736002604167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198807_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198807_M_GLOBAL.out deleted file mode 100644 index f98dbe6d17155e362c89508d9ab8d29122b2fcb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198807 STATION NETCDFs -0.03487802743911743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198808_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198808_D_GLOBAL.out deleted file mode 100644 index 34b56c825ef2a5de4778acf3d8e82d81ee617d90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198808 STATION NETCDFs -0.022309625148773195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198808_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198808_H_GLOBAL.out deleted file mode 100644 index 198ab6d80ee465d5abd1c2741cf41142fd2f3708..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198808 STATION NETCDFs -0.035045095284779865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198808_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198808_M_GLOBAL.out deleted file mode 100644 index 049b3208151da7edcc88cd3f0fdc3ad9914f7ed0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198808 STATION NETCDFs -0.046422576904296874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198809_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198809_D_GLOBAL.out deleted file mode 100644 index b2a2962622d7f780cae27a4b22dc60cecdd13f6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198809 STATION NETCDFs -0.043234546979268394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198809_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198809_H_GLOBAL.out deleted file mode 100644 index 5aa78bb24337b58d3f4afc8157439cfbdfef7b2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198809 STATION NETCDFs -0.04217834075291951 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198809_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198809_M_GLOBAL.out deleted file mode 100644 index 9f997904c2a4d0fa6b98c3f1b4105c4652bd7143..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198809 STATION NETCDFs -0.03217007716496786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198810_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198810_D_GLOBAL.out deleted file mode 100644 index bb55055208f472dd308235ec04a99df50e6ea445..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.04361081520716349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198810_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198810_H_GLOBAL.out deleted file mode 100644 index c7d8630d52f048a233bf1260950b4dbc18f87316..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.048733015855153404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198810_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198810_M_GLOBAL.out deleted file mode 100644 index 6326c27aa7fb7eb2c6035994b3c55b98e82608b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.023882945378621418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198811_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198811_D_GLOBAL.out deleted file mode 100644 index 74633059fb432165bcd23f698259a2c8f555acfe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.043822614351908366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198811_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198811_H_GLOBAL.out deleted file mode 100644 index 19a67203743702a507e15a6adebf963ca525826a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.047467235724131265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198811_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198811_M_GLOBAL.out deleted file mode 100644 index eac09a7f28c96d6545f395c2a786da3bc937430d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.05203043619791667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198812_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198812_D_GLOBAL.out deleted file mode 100644 index 6b2e8d44694e50738964624c1d908cb155c75457..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.031380756696065264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198812_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198812_H_GLOBAL.out deleted file mode 100644 index da4efc35b87eae5fd678bf9156f2cd489533e5dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.03420523007710775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198812_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198812_M_GLOBAL.out deleted file mode 100644 index d021da77508c83db4ce2f3f54be0b1494cf2a0fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.02494316895802816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198901_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198901_D_GLOBAL.out deleted file mode 100644 index cf1fce917113223af473cb5be3941a13f82da96f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.030267898241678873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198901_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198901_H_GLOBAL.out deleted file mode 100644 index f1a24fd7b320eea2427e4d2b4a31d877a6bb6867..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.02726429303487142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198901_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198901_M_GLOBAL.out deleted file mode 100644 index 061b8e29b2f3f73a54c427ac2668d67ee1aea20a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.030650738875071207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198902_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198902_D_GLOBAL.out deleted file mode 100644 index fb71e592a9fa6e3e1dcfe1f86945777faec088a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.033173946539560954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198902_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198902_H_GLOBAL.out deleted file mode 100644 index 3d0b3ba29ecebc2a36551b3c1a30273caf98ba2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.0464406689008077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198902_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198902_M_GLOBAL.out deleted file mode 100644 index 48405688b065924141bcdaadef7345e5e44d4ba8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.04124224583307902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198903_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198903_D_GLOBAL.out deleted file mode 100644 index 778fe1ab5e560f8955dd13e23123d832a44d0990..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.04951400359471639 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198903_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198903_H_GLOBAL.out deleted file mode 100644 index 9db933136f876701d1d11c33e18bb6322f1871fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.038689740498860675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198903_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198903_M_GLOBAL.out deleted file mode 100644 index 49d2b01e299ea3e4269808288ece6d08e71f3293..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.030618417263031005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198904_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198904_D_GLOBAL.out deleted file mode 100644 index a2fffd93e9d14d9819721d337f5c12ca171e364b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.05228470166524251 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198904_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198904_H_GLOBAL.out deleted file mode 100644 index 164e426bf723ffd4fdeb2e68a7aef697a7788606..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.039266486962636314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198904_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198904_M_GLOBAL.out deleted file mode 100644 index 8cfbbc69bee97ec1cc6e9829c960bcc8ab3c5f8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.03558042844136556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198905_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198905_D_GLOBAL.out deleted file mode 100644 index 842fea97383c2ca1a1528f4d3adf1d45e1596b5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.03800183137257894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198905_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198905_H_GLOBAL.out deleted file mode 100644 index 321ffc7845869bb4047b9d86fb4e292ab8f4c5cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.03307478030522664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198905_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198905_M_GLOBAL.out deleted file mode 100644 index e48b2fed7335cbda390ef7474a0de47325181ca1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.048051440715789796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198906_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198906_D_GLOBAL.out deleted file mode 100644 index 6165a8cae5780d1eb77b083423ff86ee891e18e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.04354050556818644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198906_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198906_H_GLOBAL.out deleted file mode 100644 index dafc5ca4121ae74fc760cb30ffa2b97a98499282..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.02313536802927653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198906_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198906_M_GLOBAL.out deleted file mode 100644 index feb3233c1a572965f7e0ed7e2af078cdc048cda9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.04105071624120076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198907_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198907_D_GLOBAL.out deleted file mode 100644 index b7fd3cfd94fa08658e508550285adf3495d0733a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.03500904639561971 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198907_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198907_H_GLOBAL.out deleted file mode 100644 index 96437e8543c9048e2c0d7d098c567d59911d3a00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.030750751495361328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198907_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198907_M_GLOBAL.out deleted file mode 100644 index 9faab814cdcc05eb36bccd2561fba92bbaa366ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.048330056667327884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198908_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198908_D_GLOBAL.out deleted file mode 100644 index 4a4080b105d031a771fc7555970158c22ceb038b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.04282601277033488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198908_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198908_H_GLOBAL.out deleted file mode 100644 index c69fa5c59b1c148eed054e34bc341d857d212a45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.035877108573913574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198908_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198908_M_GLOBAL.out deleted file mode 100644 index c1a076d73f67acb9da2ae72f0059d12925f61e64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.025410032272338866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198909_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198909_D_GLOBAL.out deleted file mode 100644 index 9ca8611ba8b5e2d16f7b548b10312364d2d15031..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.040778557459513344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198909_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198909_H_GLOBAL.out deleted file mode 100644 index 12da194abc4fbc8cd3aa2b770eefeb7a9fb9e0a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.0436426321665446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198909_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198909_M_GLOBAL.out deleted file mode 100644 index e3526eee5b690fa2610b6f69dca2de6f81f3964e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.028611294428507485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198910_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198910_D_GLOBAL.out deleted file mode 100644 index 9700033dca5c25193332164113bb3f5344bdb50b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.03674835761388143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198910_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198910_H_GLOBAL.out deleted file mode 100644 index 86a31dd66e60ed92eecf252d4fc8473bbc57ff8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.046574358145395914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198910_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198910_M_GLOBAL.out deleted file mode 100644 index 915291816f0b56f93f2a7f6383662473803d8755..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.0457131822903951 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198911_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198911_D_GLOBAL.out deleted file mode 100644 index 97c85a7b8a1001b9fbe71ed667d476b006dbf88e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.027051985263824463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198911_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198911_H_GLOBAL.out deleted file mode 100644 index 0228d097aaa0d84d941ddefd6ecd6f4576014b8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.02869714101155599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198911_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198911_M_GLOBAL.out deleted file mode 100644 index 297cb3bf977beca3f9bccda76f018607f9b65140..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.03416051467259725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198912_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198912_D_GLOBAL.out deleted file mode 100644 index 98218c4f5ddbc12783c7091d84f0ed12dceed8c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.022695239384969076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198912_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198912_H_GLOBAL.out deleted file mode 100644 index d993dc2605c0a009015fe071d885e2efb008f673..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.02691882848739624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_198912_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_198912_M_GLOBAL.out deleted file mode 100644 index aee2772ef3a689a42dfb4cc42242da368012b156..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_198912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.02771445910135905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199001_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199001_D_GLOBAL.out deleted file mode 100644 index 4d4a4632d7c34e2d5e24837efd41c7bfe3b241bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.04639804760615031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199001_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199001_H_GLOBAL.out deleted file mode 100644 index 979f4a3a040ebc730e243e94b583457f6eea251a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.0302987535794576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199001_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199001_M_GLOBAL.out deleted file mode 100644 index 6d66aafffb134a57d7a894d463b635f59a415238..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.027817702293395995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199002_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199002_D_GLOBAL.out deleted file mode 100644 index e02921df73166b26eb56b57f4038e35559fae401..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.03209763765335083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199002_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199002_H_GLOBAL.out deleted file mode 100644 index 1f11fcbc6ef1cf005916719faec67f75c74a2e99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.03915707270304362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199002_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199002_M_GLOBAL.out deleted file mode 100644 index c13674f7c7c97bdd812a802eff89411a4b74ef8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.052226138114929196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199003_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199003_D_GLOBAL.out deleted file mode 100644 index e83367e81ff433f4476b67d6c11819e726c402dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.04260466893513997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199003_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199003_H_GLOBAL.out deleted file mode 100644 index f7c74fc16bc0f44fec0f9690074d66d7afd407b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.027043708165486655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199003_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199003_M_GLOBAL.out deleted file mode 100644 index 5da265a417dd238666d2d59d7c48a7cb1661aaab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.03677048683166504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199004_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199004_D_GLOBAL.out deleted file mode 100644 index 2d08e5d2d7f8428388c57ca9c475dab4bc5902ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.026388776302337647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199004_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199004_H_GLOBAL.out deleted file mode 100644 index 0bd582cccc5bb231b48d21d48a3719ba75f23a79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.022159977753957113 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199004_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199004_M_GLOBAL.out deleted file mode 100644 index 2412f91e8ecf802369fba8334bb3587bb09eaa11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.04810181458791097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199005_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199005_D_GLOBAL.out deleted file mode 100644 index ec2e7805dae701cb1ebc583bfc6852bd762837f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.03237987359364827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199005_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199005_H_GLOBAL.out deleted file mode 100644 index e3d3c2b1981390c20287d2a519501eccfce9d1c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.035176626841227215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199005_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199005_M_GLOBAL.out deleted file mode 100644 index eb14a66f8246c55f46430b8bc7b63300200b058e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.043474435806274414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199006_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199006_D_GLOBAL.out deleted file mode 100644 index b72f524eaf17f8cb83f2cd7ac0d2f95d9bb8cd5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.05292228857676188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199006_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199006_H_GLOBAL.out deleted file mode 100644 index da29393818ca84caf6ca3bef69be2086dc5ab3f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.0388726274172465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199006_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199006_M_GLOBAL.out deleted file mode 100644 index 8bf4be5d20acd6e29c74a0c79d55ebbf01edcb41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.04310093323389689 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199007_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199007_D_GLOBAL.out deleted file mode 100644 index afc51774b4d616aeddc14d5ac6fd5bd976427b45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.023294663429260253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199007_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199007_H_GLOBAL.out deleted file mode 100644 index 0ac5624caee9ef9f6561f0ed4db6c478e3052cb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.036910792191823326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199007_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199007_M_GLOBAL.out deleted file mode 100644 index a7036c3df43f242f01ad7b86a95e68d272218b21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.05132422844568888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199008_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199008_D_GLOBAL.out deleted file mode 100644 index f7b87609042b2d8e1e337ce0d6a927a196ce69bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.028544231255849203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199008_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199008_H_GLOBAL.out deleted file mode 100644 index 2fc53b9ccda3bd961de220ae8ab875510fbe236c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.047915693124135336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199008_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199008_M_GLOBAL.out deleted file mode 100644 index 375ac738713e100ca3103d1de7da0563673af292..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.029247236251831055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199009_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199009_D_GLOBAL.out deleted file mode 100644 index fb232f71131f1f80192755460a28e53aad3edd48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.028913668791453042 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199009_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199009_H_GLOBAL.out deleted file mode 100644 index 4ffcd208f3792af283b862fcf0233c917ee6ccaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.04060545762379964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199009_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199009_M_GLOBAL.out deleted file mode 100644 index 104cae640dac92991e2317fb508c60e63469a49d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.031898073355356854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199010_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199010_D_GLOBAL.out deleted file mode 100644 index bf97130343a000eb43387b9b760cfff784665b0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.039194917678833006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199010_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199010_H_GLOBAL.out deleted file mode 100644 index 96a3a602b4e378937d66dd620183280813998f29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.02375503381093343 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199010_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199010_M_GLOBAL.out deleted file mode 100644 index 504fc8c4b70255b83395376b52763f9b2108a4f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.03490386803944905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199011_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199011_D_GLOBAL.out deleted file mode 100644 index c0c251c5e088a44ce04b2c7623b08bd312af47aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.04041502873102824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199011_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199011_H_GLOBAL.out deleted file mode 100644 index 2066d052bbf535345cb77ee615ed20c12c7e3baf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.03777558803558349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199011_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199011_M_GLOBAL.out deleted file mode 100644 index 5cf48cfbb733f6963efcaaa617e15938eb382282..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.04000310103098551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199012_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199012_D_GLOBAL.out deleted file mode 100644 index 5cb37addfc2db2cc79afeb73d80b057a39b9d7f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.021903252601623534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199012_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199012_H_GLOBAL.out deleted file mode 100644 index 978ebce3bad465c1c660471f3b338d38c498be42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.027335019906361897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199012_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199012_M_GLOBAL.out deleted file mode 100644 index 494f13d1b7f312b2002c63a55cb33f4241318b6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.03790273666381836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199101_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199101_D_GLOBAL.out deleted file mode 100644 index bd4d97846329cc8e82978956b4a5abb3aa8ab14b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.05335028966267904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199101_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199101_H_GLOBAL.out deleted file mode 100644 index 18c0d7262caab7f47e7ce8a4c214d5fdfc561d81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.03031793435414632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199101_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199101_M_GLOBAL.out deleted file mode 100644 index 67ef7aa3ae29ceb76103ac5acc71d691838067b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.049251286188761394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199102_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199102_D_GLOBAL.out deleted file mode 100644 index 7c76458a2f7d5e057db594321d54d254ed5ac71e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.03719750245412191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199102_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199102_H_GLOBAL.out deleted file mode 100644 index 05047ab09780260e2bf9d5766d365217fa619149..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.023071901003519694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199102_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199102_M_GLOBAL.out deleted file mode 100644 index f05ad8c4f35dbe56c89f56cb4ffc36b85730ac44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.03295756578445434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199103_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199103_D_GLOBAL.out deleted file mode 100644 index a00875bedae7915ebc52bd869652d1f438e8766c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.03858403364817301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199103_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199103_H_GLOBAL.out deleted file mode 100644 index 25ed1ec54c061300caccb6e82e4db0a8f6c4bb77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.04698752562204997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199103_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199103_M_GLOBAL.out deleted file mode 100644 index a8357d73128994d7bf847b55c68352eed3751bd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.03987245162328084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199104_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199104_D_GLOBAL.out deleted file mode 100644 index fa5b5726ed5024a10e9720a26dedc2b51e5aed90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.03557505210240682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199104_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199104_H_GLOBAL.out deleted file mode 100644 index 6a28962570c4ffff026db8e07659510b33d8d611..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.030596923828125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199104_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199104_M_GLOBAL.out deleted file mode 100644 index 8e7880f949e1bc8ac9980b14ecca303fc32441f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.03748133977254232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199105_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199105_D_GLOBAL.out deleted file mode 100644 index 81dc1498dada3d68257ab8833f110b6230e1c8db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.04130549430847168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199105_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199105_H_GLOBAL.out deleted file mode 100644 index a513d27837d52297a6491b0d5b51d5008c4afb7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.05137447913487752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199105_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199105_M_GLOBAL.out deleted file mode 100644 index 73c055c18dc4bbf91494d7cb39929ca945cd416c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.04036414623260498 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199106_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199106_D_GLOBAL.out deleted file mode 100644 index 0df05c0c1c766428c01690d624b5673da3a7ce03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.04358758131663005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199106_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199106_H_GLOBAL.out deleted file mode 100644 index 2293ae4cf7097a0b4faa81acf7fd29e10f23b920..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.030133505662282307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199106_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199106_M_GLOBAL.out deleted file mode 100644 index b5133ea4c00687969b77dc00e3f6f7c80427f0d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.03887365659077962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199107_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199107_D_GLOBAL.out deleted file mode 100644 index 3c65f4ab97a45de1aaf30106bf0c5fcb377e916f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.033008046944936115 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199107_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199107_H_GLOBAL.out deleted file mode 100644 index d9588f578f50e62d5128589be7af080294b6eaa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.050207308928171795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199107_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199107_M_GLOBAL.out deleted file mode 100644 index 4d1e4dd6a8c1badf180df76be96d32fb8d72884f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.030062870184580485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199108_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199108_D_GLOBAL.out deleted file mode 100644 index 9242fba23275dd22c0f10a488f4ecc4a3450bba2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.038090924421946205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199108_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199108_H_GLOBAL.out deleted file mode 100644 index e94cb09cedd801ce890279a2b917d56d75823fb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.0445702870686849 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199108_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199108_M_GLOBAL.out deleted file mode 100644 index 33374a79482b7578fb19d38238d721c6d17b4f49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.0582210381825765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199109_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199109_D_GLOBAL.out deleted file mode 100644 index 92633f2f8a52adf26948b03642e3eb08dea85d76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.025854154427846273 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199109_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199109_H_GLOBAL.out deleted file mode 100644 index 8ad3ec75c575c5c6ff214d780cd010dcdfc9c43d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.038108638922373456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199109_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199109_M_GLOBAL.out deleted file mode 100644 index 2c02d8934d00cfdafaaef766ff3a2101d8cf85ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.04615285396575928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199110_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199110_D_GLOBAL.out deleted file mode 100644 index c19f0e6b860c011cf13af05e00d537467911b74a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.02784136136372884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199110_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199110_H_GLOBAL.out deleted file mode 100644 index f121461f92d1e7f6ea750122ed82e81b39bc90a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.05132306814193725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199110_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199110_M_GLOBAL.out deleted file mode 100644 index 5fbe10f526403c28ca25f22034bc0d6cb7a8f074..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.023122783501942953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199111_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199111_D_GLOBAL.out deleted file mode 100644 index e94e899a10efb8c7a7c8fe62adce2995b1b2a920..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.04505205551783244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199111_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199111_H_GLOBAL.out deleted file mode 100644 index 4adb713e2dbcd620063ca3f99f2af232ba62e518..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.03720243374506633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199111_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199111_M_GLOBAL.out deleted file mode 100644 index c9a082fcf9ae98bd32b357410b56e7a25c79ac72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.03541792631149292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199112_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199112_D_GLOBAL.out deleted file mode 100644 index f7cc4b0611606417727a7e088881d6b0cd978116..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.04136624336242676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199112_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199112_H_GLOBAL.out deleted file mode 100644 index e7159d41b6c5d6b0dca76bd304b757824edfccb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.0363287091255188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199112_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199112_M_GLOBAL.out deleted file mode 100644 index 6d4b71fb0a3ea58e6f5724ca63563e662aa6f090..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.05177566607793172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199201_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199201_D_GLOBAL.out deleted file mode 100644 index 643ced094995e4d4104d5b0bd09552810e4121f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.04138013521830241 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199201_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199201_H_GLOBAL.out deleted file mode 100644 index 2911068656c30ec66eade532c90f710dcee4bcad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.024705541133880616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199201_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199201_M_GLOBAL.out deleted file mode 100644 index dab4323ca56e09028765914c7284d6763a495cac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.02438950538635254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199202_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199202_D_GLOBAL.out deleted file mode 100644 index 700b7e572b5caed0cf1f9a4037f35f5ac1795482..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.0375312606493632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199202_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199202_H_GLOBAL.out deleted file mode 100644 index 034ae3e316761dd808c5a5425d3572dfc8e6c4cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.029045228163401285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199202_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199202_M_GLOBAL.out deleted file mode 100644 index 51adc8cc6ee96588f9447d12cfeb4dc66ac9bfbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.04702462752660116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199203_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199203_D_GLOBAL.out deleted file mode 100644 index 314a13d20c4ef6f033fd65d5ba784af53ddf4104..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.028601094086964925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199203_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199203_H_GLOBAL.out deleted file mode 100644 index d08e1ff90e530f2831b6133b8a3b458862512da6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.04841303030649821 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199203_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199203_M_GLOBAL.out deleted file mode 100644 index 2ef894ca51f8f84a9877498c2e22d25383d9d549..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.055635193983713783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199204_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199204_D_GLOBAL.out deleted file mode 100644 index e470bfabf47b7257d87ee2f04e70eea02dd1bb00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.027271556854248046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199204_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199204_H_GLOBAL.out deleted file mode 100644 index e80c089890a2c262ec1999ed35a6ed3506b73998..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.049631043275197344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199204_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199204_M_GLOBAL.out deleted file mode 100644 index 0460ba2a554e6f0a6101744885c658fc5c1dbd9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.042482391993204756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199205_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199205_D_GLOBAL.out deleted file mode 100644 index afd6322eb8c44bd3173fffd8cab61266bbc2e896..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199205 STATION NETCDFs -0.0404219110806783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199205_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199205_H_GLOBAL.out deleted file mode 100644 index 03abcb35507ab50188ff4fc973f0e1608e945b7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199205 STATION NETCDFs -0.028108243147532144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199205_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199205_M_GLOBAL.out deleted file mode 100644 index 6add05f15d921b8e663fca21b26d310b0b792325..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199205 STATION NETCDFs -0.02050085465113322 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199206_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199206_D_GLOBAL.out deleted file mode 100644 index 76d54a6b6fc6adc25332462ebf32b1bd11430f51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199206 STATION NETCDFs -0.045666547616322835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199206_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199206_H_GLOBAL.out deleted file mode 100644 index b11925fec76247627def6d728bb72dab8a23e274..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199206 STATION NETCDFs -0.024866549173990886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199206_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199206_M_GLOBAL.out deleted file mode 100644 index c3624904412ef2686b5341458c1bf3ef0ac39c68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199206 STATION NETCDFs -0.044515252113342285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199207_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199207_D_GLOBAL.out deleted file mode 100644 index 1add07e3bcb81cb00eb2ec89b9410b3c24ffebbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.050242666403452554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199207_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199207_H_GLOBAL.out deleted file mode 100644 index 1fc2293f26da3d7672b506a6d1e92f2917487cbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.05174687703450521 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199207_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199207_M_GLOBAL.out deleted file mode 100644 index 6238dd237f782600db625089ef77f0d967a8cda1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.04485987027486165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199208_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199208_D_GLOBAL.out deleted file mode 100644 index 096c04dd69f369c5c7e4f095e7d634b29c7313f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.04415070613225301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199208_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199208_H_GLOBAL.out deleted file mode 100644 index 2cf7a2a7a79a21d7de578274476176011ed07aa7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.04142350355784098 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199208_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199208_M_GLOBAL.out deleted file mode 100644 index 5bcd9619c6218ff15a9c83a8790024032144477e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.03022944927215576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199209_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199209_D_GLOBAL.out deleted file mode 100644 index 20e2de95fa41eca63e96202a90a9a56f2a00252a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.04020928939183553 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199209_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199209_H_GLOBAL.out deleted file mode 100644 index d89334ceb18ecb4c3e7ffb966dc6ea69d26d3c2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.027657318115234374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199209_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199209_M_GLOBAL.out deleted file mode 100644 index bd2ffad955ae6c8fea250d20725a0dacd832233a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.0390127698580424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199210_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199210_D_GLOBAL.out deleted file mode 100644 index fd2c6a50ae889cbb64a510cb6cd43f39cb44c9cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.05433189074198405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199210_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199210_H_GLOBAL.out deleted file mode 100644 index 9849c1b8b876e6aa912c3dac1aaddabe96e02b43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.04197812477747599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199210_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199210_M_GLOBAL.out deleted file mode 100644 index 00712e994abcfaa3775b730fe46ddbb8c182cd61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.029524290561676027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199211_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199211_D_GLOBAL.out deleted file mode 100644 index 21bf7e098552ebe1bc3136084d79c3f34462d50a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.029633788267771403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199211_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199211_H_GLOBAL.out deleted file mode 100644 index 1f65e8759a3c4533b85ad099eab1e86561739906..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.029712335268656413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199211_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199211_M_GLOBAL.out deleted file mode 100644 index 68f302592594a95f554a762d38aea0c45141c57b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.03940238157908122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199212_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199212_D_GLOBAL.out deleted file mode 100644 index 25acf21f72d0e4c2c3bbcdf112791927cabeba87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.04184851249059041 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199212_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199212_H_GLOBAL.out deleted file mode 100644 index 98fb955957e178c26b3e90a1d602826922ac313f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.03681888580322266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199212_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199212_M_GLOBAL.out deleted file mode 100644 index a54a2cf358825d708a72e2d00549139961abc060..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.0482132871945699 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199301_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199301_D_GLOBAL.out deleted file mode 100644 index 4a0c66ddda735f56d2b7c3e6cc08162649d3c4fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.024944448471069337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199301_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199301_H_GLOBAL.out deleted file mode 100644 index d58e0787751364371142c8b4f3813d980c7fafa3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.050343259175618486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199301_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199301_M_GLOBAL.out deleted file mode 100644 index d5fd154e5c9001b7bafa83a1340e7f6635c6e6da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.056223865350087485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199302_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199302_D_GLOBAL.out deleted file mode 100644 index c8916a98280b735978073c3cc1d19bd6270e0b88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.04646784067153931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199302_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199302_H_GLOBAL.out deleted file mode 100644 index 75c82e1f812235f009b8bd201cee95a9f46677ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.02601458231608073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199302_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199302_M_GLOBAL.out deleted file mode 100644 index 32e9f1a988ce1913126847af782660beca03a9ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.028900746504465738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199303_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199303_D_GLOBAL.out deleted file mode 100644 index 917f70cd2d0b81b02d07e17a23f14ae40c4ae8eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.051578466097513834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199303_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199303_H_GLOBAL.out deleted file mode 100644 index edba6f93e9d845a0bdeb4689bea7bfa85a488a6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.04063557386398316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199303_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199303_M_GLOBAL.out deleted file mode 100644 index 2526ab7e07295bc0f85b1fca4929d960edcffb07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.04527693589528402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199304_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199304_D_GLOBAL.out deleted file mode 100644 index bbec4408ac2e02f24fd0bfbf12e7ef1dae84e571..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.04452525774637858 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199304_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199304_H_GLOBAL.out deleted file mode 100644 index b58e47649a424b0c8e5fb7fee8d6ca1b22a9811b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.04105700254440307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199304_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199304_M_GLOBAL.out deleted file mode 100644 index 3466784ff8788cf4e2f25a78facadcd2399dc223..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.04532839457194011 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199305_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199305_D_GLOBAL.out deleted file mode 100644 index 7eeb9cd7ae61d19fc26c301660fa986a55c687a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.04529414574305216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199305_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199305_H_GLOBAL.out deleted file mode 100644 index c1b7f4d1c014bc9efcdffb3407c9e388ff80387c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.04182859261830648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199305_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199305_M_GLOBAL.out deleted file mode 100644 index 02b7cb04d9b1c9775f52b63fe39b43cdcc5776b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.04003538688023885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199306_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199306_D_GLOBAL.out deleted file mode 100644 index 20922a8a4cca61b366543916b4bb4bec7e98900f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.03994060357411702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199306_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199306_H_GLOBAL.out deleted file mode 100644 index 30150c5c44e56291e8a4e5c76f156b8755a3e749..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.04301602045694987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199306_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199306_M_GLOBAL.out deleted file mode 100644 index c476d216cc0c4f489a950df38720e719dfc6dd4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.04382245540618897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199307_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199307_D_GLOBAL.out deleted file mode 100644 index 05089cd21b6b121c836f4aaa132c73a8103d1fbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.04659969806671142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199307_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199307_H_GLOBAL.out deleted file mode 100644 index 48b080a14fdcbaec7f3a7a9835e92552dec2637b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.045271046956380206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199307_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199307_M_GLOBAL.out deleted file mode 100644 index 3d5227554c49a4179303ee2e3703ad2aea79fad1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.041105814774831134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199308_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199308_D_GLOBAL.out deleted file mode 100644 index 1fcb1c27c80ca288ff0d8ef911513b791fa5f8dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.042149798075358076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199308_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199308_H_GLOBAL.out deleted file mode 100644 index cfa0c3a0b134e5beed11e27dbe1ade839abd43d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.057390300432840984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199308_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199308_M_GLOBAL.out deleted file mode 100644 index 21ecf8bd150f9e3ccedfb7d5f2faf065c646177f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.04416865110397339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199309_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199309_D_GLOBAL.out deleted file mode 100644 index 4645625454917b116ce3e9a6071c93db72e0be9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.042298972606658936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199309_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199309_H_GLOBAL.out deleted file mode 100644 index 512441c19a5542d7d5a2adb7bf6aff6e5d74b742..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.025348190466562906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199309_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199309_M_GLOBAL.out deleted file mode 100644 index 33872802ffbfc8058e50bc69abf3ce38a4546f29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.027149403095245363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199310_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199310_D_GLOBAL.out deleted file mode 100644 index a203563ec3fa0652fab722b8375e00fbfed5d5a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.05173505544662475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199310_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199310_H_GLOBAL.out deleted file mode 100644 index 3d226ad36c4c60a3f2231ab77e03f31aabb172a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.041033116976420085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199310_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199310_M_GLOBAL.out deleted file mode 100644 index de6b31ccdb5c2842193c7a25569c4bb0f3d76d37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.03379950126012166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199311_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199311_D_GLOBAL.out deleted file mode 100644 index f133fb7f21f578c8a5a8a5db38481c964b5db329..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.044226757685343426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199311_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199311_H_GLOBAL.out deleted file mode 100644 index aa98a5a756eeddfd1dafdd184c6a4ef944bdd92d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.04406784375508626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199311_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199311_M_GLOBAL.out deleted file mode 100644 index 5ec66b6400aa083f183d6d8976a35ec806ae9382..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.04193172057469686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199312_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199312_D_GLOBAL.out deleted file mode 100644 index 4bb508678b0c31d6bbb7a153882e480ec818ab4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.052634779612223306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199312_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199312_H_GLOBAL.out deleted file mode 100644 index 321770611c035d84674c0e734d79d4555fc7ae67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.046056918303171795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199312_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199312_M_GLOBAL.out deleted file mode 100644 index bf3d54277a981fbd2909e1f273d82957a779baad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.060614013671875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199401_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199401_D_GLOBAL.out deleted file mode 100644 index 551f59013b143fe1964add1637318ab1f1fbbbd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.07365181446075439 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199401_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199401_H_GLOBAL.out deleted file mode 100644 index 285ece4b6a2c03ff8e9a033c8b3927d48c2ba6ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.05793431599934896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199401_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199401_M_GLOBAL.out deleted file mode 100644 index 4afec6c0770c5230c3e9684f9724a936ad575519..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.06904781659444173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199402_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199402_D_GLOBAL.out deleted file mode 100644 index 99ee7a44666d71b44f94c6acc1b798ac90a4f333..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.0709410826365153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199402_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199402_H_GLOBAL.out deleted file mode 100644 index 5aed691faafda0b5d250a85388ba7cb1f58ed454..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.0668152928352356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199402_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199402_M_GLOBAL.out deleted file mode 100644 index 7a300caf2372539857ee69ac21a74b6a6a7a1ed6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.06833879550298055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199403_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199403_D_GLOBAL.out deleted file mode 100644 index 1b91e0c3af5a37c8c9a780f5e0db9f912427cec1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.056622080008188885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199403_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199403_H_GLOBAL.out deleted file mode 100644 index 3e9f80da150fd0131b243687259f4de4c54d292c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.0484282652537028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199403_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199403_M_GLOBAL.out deleted file mode 100644 index 4a49a61b1ec8ab4a55d7b2ea6eae662658710135..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.06973789135615031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199404_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199404_D_GLOBAL.out deleted file mode 100644 index 0a82a64db5ba0262dc251a2aa469adde5cbcd8a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.06691234111785889 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199404_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199404_H_GLOBAL.out deleted file mode 100644 index 4249fed8ab299a6d062bc20278cf653a2cf9ce2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.04945892095565796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199404_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199404_M_GLOBAL.out deleted file mode 100644 index 987cc6ce34c139cfd9939e4364627b4f976b003d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.05390615860621135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199405_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199405_D_GLOBAL.out deleted file mode 100644 index 129f58b002aba4e3cc21f7bb660394282964e300..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.05707715352376302 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199405_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199405_H_GLOBAL.out deleted file mode 100644 index 1c2df82753750d712571fdfa850edb1d92daad3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.06460606257120768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199405_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199405_M_GLOBAL.out deleted file mode 100644 index 8f2e65538b71d07338ff70f413da0a9f1a0bc5d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.05876256227493286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199406_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199406_D_GLOBAL.out deleted file mode 100644 index 359071abb306562defddaded7a4930f421592136..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.06875261068344116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199406_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199406_H_GLOBAL.out deleted file mode 100644 index f721d951dde313dcc1a9c075f7464ad466497e0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.05903773705164592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199406_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199406_M_GLOBAL.out deleted file mode 100644 index 525178ba75886322eefe39985c42e843c529bb72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.0653869907061259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199407_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199407_D_GLOBAL.out deleted file mode 100644 index d6df6e67e80b0371cf7118e757908d3e5e9ef427..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.07424722115198772 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199407_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199407_H_GLOBAL.out deleted file mode 100644 index 82b499f31ac77a3ebc801325fc304c6a7111e20b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.06928627093633016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199407_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199407_M_GLOBAL.out deleted file mode 100644 index 83a17af9290d835a55d7871a4262d022615e089a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.0673651377360026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199408_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199408_D_GLOBAL.out deleted file mode 100644 index 2852b4399cf2574a12225e027c81799c401b179a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.04968102773030599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199408_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199408_H_GLOBAL.out deleted file mode 100644 index 1d51c00fba67432f0f1f9886a0d445cffe2b893f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.059340155124664305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199408_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199408_M_GLOBAL.out deleted file mode 100644 index 016bda195752c2c69aeb1e50f5d87ec23a4c9f6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.060427717367808026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199409_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199409_D_GLOBAL.out deleted file mode 100644 index 37a66e57ff22dabf8b45e260a0a576189c0858b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.07103005647659302 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199409_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199409_H_GLOBAL.out deleted file mode 100644 index fede8c0a55582077bc7fda21a112ec4939addbeb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.05492242177327474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199409_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199409_M_GLOBAL.out deleted file mode 100644 index b613704426d806f2fe2093afe87699b27c65467a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.05688728094100952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199410_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199410_D_GLOBAL.out deleted file mode 100644 index c1c61acf97a46507798bc0fadeea2efb35b7df70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.07097690502802531 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199410_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199410_H_GLOBAL.out deleted file mode 100644 index ef29cca036db644e98a0b35c6c86d0aa512173e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.07287763357162476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199410_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199410_M_GLOBAL.out deleted file mode 100644 index 1d34a9d38a3537391f5f79c48a16127409aefe7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.05619973341623942 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199411_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199411_D_GLOBAL.out deleted file mode 100644 index 92d646ef9b9a2822962dc0bd5be8e33b1f97fb3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.04684766928354899 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199411_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199411_H_GLOBAL.out deleted file mode 100644 index 15a0cb8e34d24ca73e34c0055f39f3c17895e0e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.05653015375137329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199411_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199411_M_GLOBAL.out deleted file mode 100644 index 803c73c417e613b9a90923fcc558dcd3f666ea84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.047042842706044516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199412_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199412_D_GLOBAL.out deleted file mode 100644 index e7170f94d837a3febb1b6e4df977c31a233022a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.061420989036560056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199412_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199412_H_GLOBAL.out deleted file mode 100644 index 72a330d192653df0b0ed44ade13020341873b64c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.04396368265151977 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199412_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199412_M_GLOBAL.out deleted file mode 100644 index a8a3864a9412da6d46c8658dfc419cea19fcd8e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.04503940343856812 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199501_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199501_D_GLOBAL.out deleted file mode 100644 index 984b358d5dd48494e6d02bb7424b13a2ccfe446a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.06623606284459432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199501_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199501_H_GLOBAL.out deleted file mode 100644 index abcbd05bcd82a1d33af8000bce649e6a0e820df3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.0557943860689799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199501_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199501_M_GLOBAL.out deleted file mode 100644 index 038ebfad5bfddf4c0355cddf89b89f6897568455..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.061256015300750734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199502_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199502_D_GLOBAL.out deleted file mode 100644 index aa22fd996c08939d522ee16663bf08a8059830f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.06923616727193196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199502_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199502_H_GLOBAL.out deleted file mode 100644 index 2c654cc4697604fbde7079c50010408046739a40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.05121810436248779 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199502_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199502_M_GLOBAL.out deleted file mode 100644 index 6cbf8a41817722f9846989e5d32ad2dc679a8756..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.06091336409250895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199503_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199503_D_GLOBAL.out deleted file mode 100644 index 778693a6728995bace5551c01a0a34913313e771..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.06407726605733235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199503_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199503_H_GLOBAL.out deleted file mode 100644 index d4715feaa95f6f0db762d5f6004f31312cb1ea67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.05744930108388265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199503_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199503_M_GLOBAL.out deleted file mode 100644 index 9b6d5ee06324d2009c0cc647fcd9ed8800ba4db2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.04501068592071533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199504_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199504_D_GLOBAL.out deleted file mode 100644 index 710543cd3ba78490f6de554bb2948a178a17fbad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.07691857814788819 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199504_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199504_H_GLOBAL.out deleted file mode 100644 index 34cd8c8b715a60b5fa9743ad61543c6e54cfa397..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.07253501415252686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199504_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199504_M_GLOBAL.out deleted file mode 100644 index 204f0df0e4438154f7a162e91bb2a751f289a949..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.06835447152455648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199505_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199505_D_GLOBAL.out deleted file mode 100644 index 882ef80706d65407be81f7b8e99ae05897f3979a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.06607475678126017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199505_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199505_H_GLOBAL.out deleted file mode 100644 index 3be123bca8a1c6a98a1ea678445a288c9a90d671..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.04520877202351888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199505_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199505_M_GLOBAL.out deleted file mode 100644 index 9f506565dc8d365e30508d93335a2b307523d0dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.05352485179901123 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199506_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199506_D_GLOBAL.out deleted file mode 100644 index f1770b1707def3b24409934533559e5e56d1f6ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.0653221050898234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199506_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199506_H_GLOBAL.out deleted file mode 100644 index 459d784062b97401a3ce5e0b1e36d2593e105b03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.0761888345082601 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199506_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199506_M_GLOBAL.out deleted file mode 100644 index e5bcbc541501fed45b33416e421bf3a19b72ae30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.08084642887115479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199507_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199507_D_GLOBAL.out deleted file mode 100644 index e5b780363d22e50f8500c9daa5dd5ad8e1d0d6fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.06536608537038167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199507_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199507_H_GLOBAL.out deleted file mode 100644 index 2486ee3f6129e50f3603ace807fa241ae3141230..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.06421747207641601 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199507_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199507_M_GLOBAL.out deleted file mode 100644 index 2d002dbd5b1f5e1442de1a2aea1cb8b9e856b388..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.04909708897272746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199508_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199508_D_GLOBAL.out deleted file mode 100644 index c4668b3368872b5171ce2043417423b6e1e86ed4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.06921631892522176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199508_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199508_H_GLOBAL.out deleted file mode 100644 index c4090c4ff10df55ba5bc1d6786ef232c191c95d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.07305798927942912 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199508_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199508_M_GLOBAL.out deleted file mode 100644 index 7bd724209265f4c5fbfce3e3a02f9f778eff019b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.04876179695129394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199509_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199509_D_GLOBAL.out deleted file mode 100644 index bff5e0637f24ddc7c14e7bbbd0824b5a3c1c93de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.05833957592646281 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199509_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199509_H_GLOBAL.out deleted file mode 100644 index 44b367126d2454113ea577039690afe7d7d2611f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.0645845095316569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199509_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199509_M_GLOBAL.out deleted file mode 100644 index b7db88ede34dc4d0185fb4ec5d416052f710be8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.05352128744125366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199510_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199510_D_GLOBAL.out deleted file mode 100644 index 530c09561a8a1e27ea2b9bd60fede78ffcc30b61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.06288417975107828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199510_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199510_H_GLOBAL.out deleted file mode 100644 index 30d7372873485c227d95e5b7d6ceb12a0af2497e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.07533647219340006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199510_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199510_M_GLOBAL.out deleted file mode 100644 index 2225b8a18bdb4da0dcee150bd8c77d42b3026a75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.05975043773651123 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199511_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199511_D_GLOBAL.out deleted file mode 100644 index 83b51bda2c8c8e2de8038bf5e71077b641a98032..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.06282204389572144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199511_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199511_H_GLOBAL.out deleted file mode 100644 index 0a97753aa72ae560d9179fc22b9116bbf4ebf864..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.056754533449808756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199511_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199511_M_GLOBAL.out deleted file mode 100644 index 703a59d9c5d0111d39ad093bacfa02205615bf14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.06228580474853516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199512_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199512_D_GLOBAL.out deleted file mode 100644 index bfe8c86a2d55e6ece6c9546be6d328f3684bfe47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.07904209693272908 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199512_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199512_H_GLOBAL.out deleted file mode 100644 index 6c706f63b868fe45bfd31109dd2071e2744bcffc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.06485180060068767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199512_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199512_M_GLOBAL.out deleted file mode 100644 index a836ba11a1f336cdad7cd3e31db272bd79865458..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.0742367148399353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199601_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199601_D_GLOBAL.out deleted file mode 100644 index 86f4ad88d9f489fd687419f103f0e0a13540106b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.05593337217966716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199601_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199601_H_GLOBAL.out deleted file mode 100644 index 15427091c12c62eb6a0bcb16c7a1649d2ea120bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.04708988269170125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199601_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199601_M_GLOBAL.out deleted file mode 100644 index a91e59d13f26ded476adb82320cca791c8a4ecc8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.08334530194600423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199602_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199602_D_GLOBAL.out deleted file mode 100644 index e928c0190c20c33cd76c98b492d4d7c5fadd1f17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.05193338394165039 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199602_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199602_H_GLOBAL.out deleted file mode 100644 index e04aa3c52b7715e189f5aa266efcd8ea08e24cbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.05619329214096069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199602_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199602_M_GLOBAL.out deleted file mode 100644 index 588632b356831c87ccb5b4280217d39d0a4ad252..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.04440938631693522 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199603_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199603_D_GLOBAL.out deleted file mode 100644 index 2def7d40bd39fd525e6e0455ff8ec970e3063542..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.07913825909296672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199603_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199603_H_GLOBAL.out deleted file mode 100644 index 804eba17584acfd4d5e5c0459d538d1e00292e03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.07027527491251627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199603_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199603_M_GLOBAL.out deleted file mode 100644 index ba51da63c3167c3c54e0d5a19f7acf8dc056f4de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.062335288524627684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199604_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199604_D_GLOBAL.out deleted file mode 100644 index 4c014dd816d7a172e92219492d706e526fde2e6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.07226936022440593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199604_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199604_H_GLOBAL.out deleted file mode 100644 index e3fc79de72923e61ea05dc3f60e6d3bb9baecd26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.0508238156636556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199604_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199604_M_GLOBAL.out deleted file mode 100644 index a6cdedea6bb18132c0688d0e94cc54ee726e7cc8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.05783938566843669 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199605_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199605_D_GLOBAL.out deleted file mode 100644 index 7799fe0017295169490fd4a91f56170a8dfb9ad5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.051849790414174396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199605_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199605_H_GLOBAL.out deleted file mode 100644 index 47a6b82fb69758040496b6b070210fbb67420c25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.05722949504852295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199605_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199605_M_GLOBAL.out deleted file mode 100644 index 154020b24e5c1a8e41bf502d70f91b2639b38e3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.06856237252553304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199606_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199606_D_GLOBAL.out deleted file mode 100644 index 39f9af33a02d1aeb2819e1837555d651886a5317..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.06472649971644083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199606_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199606_H_GLOBAL.out deleted file mode 100644 index d7f9629e17d3c804870e7b099b57dfd898d4ce7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.05721859931945801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199606_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199606_M_GLOBAL.out deleted file mode 100644 index 18ab0e0bb6fc0245ec397169e8b00bf69f0b2e96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.063569442431132 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199607_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199607_D_GLOBAL.out deleted file mode 100644 index c05ec92b48387fa77ad6a1dd2e79f61ab94edcdf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.04713966449101766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199607_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199607_H_GLOBAL.out deleted file mode 100644 index 3e32a8829f3c3a6f84a8e272d1093b83051bca52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.056953843434651694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199607_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199607_M_GLOBAL.out deleted file mode 100644 index dee6ea6691bb97081f239728e2d47799555c87bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.059010811646779376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199608_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199608_D_GLOBAL.out deleted file mode 100644 index 84c0613f47fc1b2436edc7fd36206d1a76b1e411..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.07944643497467041 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199608_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199608_H_GLOBAL.out deleted file mode 100644 index 52468e52aaf98ca5c5f1658bca1e27f6beb5fa7f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.053615411122639976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199608_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199608_M_GLOBAL.out deleted file mode 100644 index 33403e3b4ab38555cf635d222d40b6fe68c768e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.0644455353418986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199609_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199609_D_GLOBAL.out deleted file mode 100644 index 6291871f19a64ecec884f9871397f311e57d691b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.07185798088709514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199609_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199609_H_GLOBAL.out deleted file mode 100644 index 88903a37feec152d813769e502f61b22e18f92dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.06601676146189371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199609_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199609_M_GLOBAL.out deleted file mode 100644 index f11385f8e3475b3d79a4984e98250afae854eaa3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.06666654745737711 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199610_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199610_D_GLOBAL.out deleted file mode 100644 index 98c7be48b045b0f945631e7eafe0c9d3442935c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.055419294039408366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199610_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199610_H_GLOBAL.out deleted file mode 100644 index 9ae53024025a64c2c291f288c9390ebff692ca11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.05437545776367188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199610_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199610_M_GLOBAL.out deleted file mode 100644 index f44d9c2098534cf5962b85e9b32091ed22e77dc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.06291389465332031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199611_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199611_D_GLOBAL.out deleted file mode 100644 index 23049a06a9a6663697f3a7c5bfc22107f289ffdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.06635234753290813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199611_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199611_H_GLOBAL.out deleted file mode 100644 index 09e1c19543c1373efd248cef5c03be74abdcb3f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.07007518609364828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199611_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199611_M_GLOBAL.out deleted file mode 100644 index 4baa05aee700695f430530799f88eaea07961417..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.06945668856302897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199612_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199612_D_GLOBAL.out deleted file mode 100644 index 012c3bf3a18bcb3e70a135e8cd7b1c8a50b439ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.05971596240997314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199612_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199612_H_GLOBAL.out deleted file mode 100644 index 7197a1723c225e64c434209ee9cad6aa49918ba8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.07029729684193929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199612_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199612_M_GLOBAL.out deleted file mode 100644 index 40cf29b72e863c6abb8741acdf0c4ca7c2201623..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.0660371462504069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199701_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199701_D_GLOBAL.out deleted file mode 100644 index 7b5c5f20b223130df832c9e551c683b44e3cad67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.06626182397206624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199701_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199701_H_GLOBAL.out deleted file mode 100644 index bda1e8829e23fe1fbb2a5eadd03a7a7c1246e87d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.06493441661198934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199701_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199701_M_GLOBAL.out deleted file mode 100644 index e4a0de58e3022bbb9a5cfb36c1818d0f0203b87f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.06499280532201131 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199702_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199702_D_GLOBAL.out deleted file mode 100644 index 68dc4fbcc39b8f81d043088bfa69c058541751d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.08050430615743001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199702_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199702_H_GLOBAL.out deleted file mode 100644 index 973d587b4abb352ff7d7879c70cb085fc9e7dd26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.052061434586842856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199702_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199702_M_GLOBAL.out deleted file mode 100644 index 8a357e878b0f607ba501e764592598c597e84daf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.0739551305770874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199703_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199703_D_GLOBAL.out deleted file mode 100644 index 83f74e16dda3ea324c1bf5964077acce27091665..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.06081195672353109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199703_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199703_H_GLOBAL.out deleted file mode 100644 index 3c27369ad46077857e429d2cc35a65a34fefb731..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.06858023802439371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199703_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199703_M_GLOBAL.out deleted file mode 100644 index 6f68e2eb11559654dbe384b3ac379d59630299dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.06575946013132732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199704_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199704_D_GLOBAL.out deleted file mode 100644 index 9fc5ae505202f1ba3ae2f7ee5703f3f24f0836b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.0671010971069336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199704_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199704_H_GLOBAL.out deleted file mode 100644 index 63ff7fac2b5f12d3fb4aabd1c7607be7241a34b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.07037040392557779 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199704_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199704_M_GLOBAL.out deleted file mode 100644 index 92120a42433f03a3f901297990d30cb63c502430..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.05654575824737549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199705_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199705_D_GLOBAL.out deleted file mode 100644 index ae8e73bce1acbb86fdcd6229606fdcb99ec0a5a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.06899092197418213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199705_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199705_H_GLOBAL.out deleted file mode 100644 index d8a812bc58044144e299749da08346111aa9b936..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.05561503569285075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199705_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199705_M_GLOBAL.out deleted file mode 100644 index b10382157eed3bdd83f54fe695089db458428fe5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.06459895769755046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199706_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199706_D_GLOBAL.out deleted file mode 100644 index ed85ad4edadd437f63eede8cd3553221afd3a4bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.0523985743522644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199706_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199706_H_GLOBAL.out deleted file mode 100644 index 2e2f7eaddd0bbe6adbf5821676d3a7be3721568e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.06331522862116495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199706_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199706_M_GLOBAL.out deleted file mode 100644 index b5d43355da6f8de5827ad314f61e4e07404c0e76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.05788938999176026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199707_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199707_D_GLOBAL.out deleted file mode 100644 index 9ba8f7aa6bbcb562e48c3b54a417338917dd2e1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.08296651442845662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199707_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199707_H_GLOBAL.out deleted file mode 100644 index 98aff46b226963c10212f79aeb97879ea9b6559f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.0591176708539327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199707_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199707_M_GLOBAL.out deleted file mode 100644 index e670374133ece4d80d554338e2c9e92ef8526528..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.06289006074269612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199708_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199708_D_GLOBAL.out deleted file mode 100644 index 0e85340e033e5b85a8193a51e1679405e6acc4e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.05949358542760213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199708_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199708_H_GLOBAL.out deleted file mode 100644 index f81a77e5b36994c3f56028c05ef64f57db838624..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.06416804393132527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199708_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199708_M_GLOBAL.out deleted file mode 100644 index e0fa96f616c5da839b2561e4368eb12eba90ca46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.0546598474184672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199709_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199709_D_GLOBAL.out deleted file mode 100644 index ff57977861b31800f3a0eb5643e68893f92bc29e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.07662294308344524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199709_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199709_H_GLOBAL.out deleted file mode 100644 index ef3c255c629bfa1b6fe2149967533c219ce6f5ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.0593247652053833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199709_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199709_M_GLOBAL.out deleted file mode 100644 index 0233b1019ef211d6b42012d79ac396f6639face5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.055545624097188315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199710_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199710_D_GLOBAL.out deleted file mode 100644 index 9618c4fdac137d48b609683669e4c9154826a7a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.05713621377944946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199710_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199710_H_GLOBAL.out deleted file mode 100644 index 9632f2430767ff07f5baa07e58d183f20d6dec10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.04976803461710612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199710_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199710_M_GLOBAL.out deleted file mode 100644 index 97345fa91911263f645cde78fb2dea0fea737921..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.07386343479156494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199711_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199711_D_GLOBAL.out deleted file mode 100644 index ed0e7654fc5876f61d5417907d0cfa483a4ad99f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.061418763796488446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199711_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199711_H_GLOBAL.out deleted file mode 100644 index 51b245cae1d36c5c0ebe66cab4250219affe1e24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.05561405022939046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199711_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199711_M_GLOBAL.out deleted file mode 100644 index 909b493382bab4dcbd2b872b83efa51dce103493..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.06385021209716797 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199712_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199712_D_GLOBAL.out deleted file mode 100644 index 032f36c2330d254134437bb909e11f190c7579be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.07191922267278035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199712_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199712_H_GLOBAL.out deleted file mode 100644 index 5fd4060cb7bc2813c2e47353bfd2f32e42c7ebb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.07054291168848674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199712_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199712_M_GLOBAL.out deleted file mode 100644 index 839fe608cf5c88be298579a30cef94c453a5f737..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.0723406712214152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199801_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199801_D_GLOBAL.out deleted file mode 100644 index 094535c8285948ad3cc44ea5d4774a251c39142e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.07977432012557983 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199801_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199801_H_GLOBAL.out deleted file mode 100644 index e05ac1bdd88631c2451bd43cfe7c2e5606295e18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.056511696179707846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199801_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199801_M_GLOBAL.out deleted file mode 100644 index 066144985475e4a96f5438879ce41f6143822dd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.06914641459782918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199802_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199802_D_GLOBAL.out deleted file mode 100644 index 2e1ed9cb85e5d2b5bddba2fb04ef901c846ece70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.07707591454188029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199802_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199802_H_GLOBAL.out deleted file mode 100644 index 151226333505cae91dc62558a3f95d3ec737275d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.08683797915776571 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199802_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199802_M_GLOBAL.out deleted file mode 100644 index 40a613d50599c9676821f2cd5ee54bc4dbdae01a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.05987639427185058 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199803_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199803_D_GLOBAL.out deleted file mode 100644 index fec1e7d9fb861ba5c5694a9a46250ea20b55cd51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.06376823981602987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199803_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199803_H_GLOBAL.out deleted file mode 100644 index 53048a97b6c18c856212a8fcd7457681f4fc9d98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.07221648693084717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199803_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199803_M_GLOBAL.out deleted file mode 100644 index d21950ececb761d3edbc826427d35a8e5e7ade78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.06162730058034261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199804_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199804_D_GLOBAL.out deleted file mode 100644 index f5f4b3c34a5b349632106455440059f0ae4e89ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.07313907146453857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199804_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199804_H_GLOBAL.out deleted file mode 100644 index dc4ae1be6bca485f8245ab1028fbce90bf068db6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.061247225602467856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199804_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199804_M_GLOBAL.out deleted file mode 100644 index 6805fd3ac3937a190a689320ddae33bff65c4665..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.06764208873112997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199805_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199805_D_GLOBAL.out deleted file mode 100644 index 1bd572316130495978d9615ce87ef8112ccf1921..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.06323545376459758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199805_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199805_H_GLOBAL.out deleted file mode 100644 index 811f5d4d13d74f28e6cd4ed61ab9eb434f6704f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.07079139947891236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199805_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199805_M_GLOBAL.out deleted file mode 100644 index ae153ea63dfb1e0a0dd88cb945a8c0962b3d07f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.06606907844543457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199806_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199806_D_GLOBAL.out deleted file mode 100644 index 6ce4878618acbc4418580717d473b4eb2b4856f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.0851529320081075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199806_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199806_H_GLOBAL.out deleted file mode 100644 index bdb33e447e06dab62e1b3079f4e9fa47ff6eccd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.05480302572250366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199806_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199806_M_GLOBAL.out deleted file mode 100644 index c458e32fa8b2927f53812aa3e2965ee5a90bb4e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.07083985010782877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199807_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199807_D_GLOBAL.out deleted file mode 100644 index aab16ed5716ca9e3700d1bbfd18a1e7dc4572915..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.08203383286794026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199807_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199807_H_GLOBAL.out deleted file mode 100644 index 5b31c1e6ae3e044e77ad1193df6f4f3633154e39..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.07210285266240438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199807_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199807_M_GLOBAL.out deleted file mode 100644 index 66de6c71dff616772360aa48c57540cf18cd05ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.06337164243062338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199808_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199808_D_GLOBAL.out deleted file mode 100644 index 62da32d6d9b47f7dc958447241d884fbea7a970d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.06577997207641602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199808_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199808_H_GLOBAL.out deleted file mode 100644 index 9f1a1502239aad3d09f38271b29143dbc5040f64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.048534878094991046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199808_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199808_M_GLOBAL.out deleted file mode 100644 index 694a27003396e90a040e99a94abf1b1eaec2a212..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.07452141046524048 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199809_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199809_D_GLOBAL.out deleted file mode 100644 index a78c805a3afc7d7bdc0f24df4996881998bba20e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.06399962504704794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199809_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199809_H_GLOBAL.out deleted file mode 100644 index c3a4c24aac844e4ee05b7a637fbe5584c5f97021..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.05483411153157552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199809_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199809_M_GLOBAL.out deleted file mode 100644 index 852a6daf5e807562ec6ef9ca70fbeb429afb229d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.06082019011179606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199810_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199810_D_GLOBAL.out deleted file mode 100644 index fa55a3ca03a5f4c69f70379dd3e63b0cd2ee2485..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.0564441720644633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199810_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199810_H_GLOBAL.out deleted file mode 100644 index f28cec6e23338c3c4bed078c677bc9810c4ccdc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.060045945644378665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199810_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199810_M_GLOBAL.out deleted file mode 100644 index 5ef7abb81881d1ef724babfac5e0c09006edc0be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.07740805943806967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199811_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199811_D_GLOBAL.out deleted file mode 100644 index 656c517d881dd7524f8dd17aaf304e9f1e7febb4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.07280045747756958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199811_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199811_H_GLOBAL.out deleted file mode 100644 index 609ba5499f6a7a0c48066fa40da81949365a61f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.06404100259145101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199811_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199811_M_GLOBAL.out deleted file mode 100644 index 0311fb21cfda5a081aba2749a992ca2d2e59e4ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.07431662082672119 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199812_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199812_D_GLOBAL.out deleted file mode 100644 index cfc461dffe031e62fd532c26c81c2d48ac720aaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.07533674240112305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199812_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199812_H_GLOBAL.out deleted file mode 100644 index 6dcde39b1bd258eeffabeb30ec392a75557dacd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.0632380763689677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199812_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199812_M_GLOBAL.out deleted file mode 100644 index 35660d1a86978c8eb2f2c6d7842b32f5a872a001..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.08019938468933105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199901_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199901_D_GLOBAL.out deleted file mode 100644 index 3e39faa940bd70f973ace3aae7c3ed44318ec73c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.06904074350992838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199901_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199901_H_GLOBAL.out deleted file mode 100644 index 63e001e0a172f6d42c859ec1aecd5caa24719a09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.06543400684992472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199901_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199901_M_GLOBAL.out deleted file mode 100644 index 4abf41a94cdc3104cd4f0d7a0f027b2a24cd75cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.06263083219528198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199902_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199902_D_GLOBAL.out deleted file mode 100644 index 03e3f8d27faed3c2522148eccbe59725eb772546..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.0782968799273173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199902_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199902_H_GLOBAL.out deleted file mode 100644 index abb18e6f63ce35b0e394a734dcf88ade727560e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.06565903425216675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199902_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199902_M_GLOBAL.out deleted file mode 100644 index 745f90e87590a765f72b47ed78014dcaa71d8c95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.0611093004544576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199903_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199903_D_GLOBAL.out deleted file mode 100644 index c855755423e2d734dc599646c01e4836c9504c8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.07536476055781047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199903_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199903_H_GLOBAL.out deleted file mode 100644 index 52ece3e92cf9f8148aaec43fa297167f99843922..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.07285956144332886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199903_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199903_M_GLOBAL.out deleted file mode 100644 index d3fdb754ef0733bc6048c6f786d1e8fc185f8e31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.06531612078348796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199904_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199904_D_GLOBAL.out deleted file mode 100644 index d0847fd6e14fb35123da850d53ba88d9331a6d9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.06842455863952637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199904_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199904_H_GLOBAL.out deleted file mode 100644 index 77951d5279f44f997f98359f74e852ed21d0b9da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.060668810208638506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199904_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199904_M_GLOBAL.out deleted file mode 100644 index 65469ace58578d78fb6a239ab812aeb470e82b92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.06175637245178223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199905_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199905_D_GLOBAL.out deleted file mode 100644 index edfb745a9e0154b0e249124be85e7e5682043edd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.06891465981801351 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199905_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199905_H_GLOBAL.out deleted file mode 100644 index b1c0383cbeccd90e1bc6aa47f9d582922d44d015..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.06630872885386149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199905_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199905_M_GLOBAL.out deleted file mode 100644 index 94cb798ec0d3de3021941dcf3817f6cfba303346..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.06331821282704671 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199906_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199906_D_GLOBAL.out deleted file mode 100644 index 00fde373cd6b80c43df450404615d3452d184d52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.07388423283894857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199906_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199906_H_GLOBAL.out deleted file mode 100644 index 02f84562693b7f4be3582f7c8d9f4b32a556fb80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.07418474356333414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199906_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199906_M_GLOBAL.out deleted file mode 100644 index ae70e676f69f3999cacee4a4902d3a1479283e43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.06620486974716186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199907_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199907_D_GLOBAL.out deleted file mode 100644 index 12fb29882263ede83fd476de2d99ea9623026202..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.057227063179016116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199907_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199907_H_GLOBAL.out deleted file mode 100644 index 3f470dca6761c440e06e5a279184ebcb8f33b1f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.061683293183644614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199907_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199907_M_GLOBAL.out deleted file mode 100644 index b58eefa2c8d36d1530f5aa6d9823d5228ce011af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.0614168643951416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199908_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199908_D_GLOBAL.out deleted file mode 100644 index e11063f70bf2349b97214e54ac259c9270ad6ac5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.0559333602587382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199908_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199908_H_GLOBAL.out deleted file mode 100644 index 85efc4cbc7a520a0b6877edaa1f89aea6dec7b28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.06063024997711182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199908_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199908_M_GLOBAL.out deleted file mode 100644 index 2df6933a0fc2e6cdef5b22cc17e4e2a886828561..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.07784630060195923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199909_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199909_D_GLOBAL.out deleted file mode 100644 index af45b9f027f9cb007f7c0d0b7f10d53ef2ec1085..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.06434796651204427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199909_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199909_H_GLOBAL.out deleted file mode 100644 index 4351f68f3b1e54b9df70dbc4ba9a88b103f45fcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.0656757672627767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199909_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199909_M_GLOBAL.out deleted file mode 100644 index c30f005ef9f68d96bf370e643b08317aed99a9d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.048885250091552736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199910_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199910_D_GLOBAL.out deleted file mode 100644 index d55a4d4a442ca7fd60fec974f8931592a810394a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.06071412165959676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199910_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199910_H_GLOBAL.out deleted file mode 100644 index 62df7a3b77f65040644d0b9f6166d88b77839703..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.06568349599838257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199910_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199910_M_GLOBAL.out deleted file mode 100644 index 2521c841bdf137b4ed281927514160f765953898..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.05161346594492595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199911_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199911_D_GLOBAL.out deleted file mode 100644 index d00d6049d2049eb92e19c2086582172c4732985b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.05608785152435303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199911_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199911_H_GLOBAL.out deleted file mode 100644 index c533bd4d24e05807adcb929a6b4d08a6f98e7c6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.0639826496442159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199911_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199911_M_GLOBAL.out deleted file mode 100644 index 2b01b2c8a67f85b42fe657ee1fb3d2d3772b963d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.0702995498975118 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199912_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199912_D_GLOBAL.out deleted file mode 100644 index 3a819e34f2751d4a456da9a83133ab8fdaf158b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.06623849074045816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199912_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199912_H_GLOBAL.out deleted file mode 100644 index 92dd9f33f81b4ad19568c39a50fac9eadf221c1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.08984399239222209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_199912_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_199912_M_GLOBAL.out deleted file mode 100644 index 30b0a5db15857c9393d22d6523252a34d8b70e40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_199912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.09250636498133341 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200001_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200001_D_GLOBAL.out deleted file mode 100644 index 352c24b7b5df79aa4297c63f0d8412b9fbe6cefd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.07880078951517741 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200001_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200001_H_GLOBAL.out deleted file mode 100644 index dd1ebdbf68f0fad7193451fb9cb89cde8f9570e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.05881677865982056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200001_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200001_M_GLOBAL.out deleted file mode 100644 index f1704662a42ad3e71065ea53daf0b1b9da444edb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.07697233359018961 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200002_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200002_D_GLOBAL.out deleted file mode 100644 index 0c43d04c02ae98f01f6c2b6cd384008c9fa401e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.0892594854036967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200002_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200002_H_GLOBAL.out deleted file mode 100644 index cf28fb27c24b083708cffbf82e0238ec57e3bf67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.07010805209477743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200002_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200002_M_GLOBAL.out deleted file mode 100644 index 4e31218e21ec1a52a88c89e64ab9d99042e2d707..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.05750338236490885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200003_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200003_D_GLOBAL.out deleted file mode 100644 index 1f20bca73c1c1d04ce867fa466d3fe2081af333d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.06967555681864421 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200003_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200003_H_GLOBAL.out deleted file mode 100644 index 5725d7c8598dd3f8eab19455c263cdbdac3bd890..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.05351714690526326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200003_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200003_M_GLOBAL.out deleted file mode 100644 index 75dc755aa94395675b6b8a8bed5d7ebec4294c6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.0724897543589274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200004_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200004_D_GLOBAL.out deleted file mode 100644 index fda07de7a9b2e81d62db2e566682ef08a299b4a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.06694830258687337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200004_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200004_H_GLOBAL.out deleted file mode 100644 index 06d47916d33a5ab11035c1466248c18c70514e68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.0727606217066447 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200004_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200004_M_GLOBAL.out deleted file mode 100644 index 8bdbddcd3cb748408e022164cc3a853cda7c2b00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.06765568256378174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200005_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200005_D_GLOBAL.out deleted file mode 100644 index 5d885bbe6353daf930f29922eb7127f90f7e8a4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.07428119977315267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200005_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200005_H_GLOBAL.out deleted file mode 100644 index 69d92740e100659358527ed8985bc9930543b02a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.06562099059422812 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200005_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200005_M_GLOBAL.out deleted file mode 100644 index 7eaaeedf365de601b5f4f5c86777871c3922df28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.07856831947962443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200006_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200006_D_GLOBAL.out deleted file mode 100644 index cc1da0d0ea79381fc0f697b46c0ccc420f3a7bc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.06913205782572428 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200006_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200006_H_GLOBAL.out deleted file mode 100644 index ae97e5a1e51974aab1f05bcd55f129304e16085f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.057632966836293535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200006_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200006_M_GLOBAL.out deleted file mode 100644 index db1a950a69d842d117740408dbac99f72f402e3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.07537955443064372 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200007_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200007_D_GLOBAL.out deleted file mode 100644 index 738e43ea7228faf387d446d1a249cc2056f00660..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.06381335655848185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200007_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200007_H_GLOBAL.out deleted file mode 100644 index 1f257f15f1f1317ae4f28c5af2907adc54697552..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.05141195853551229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200007_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200007_M_GLOBAL.out deleted file mode 100644 index 0e5d527e5089a16757def5ee7fce5d6675d101c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.07633426586786905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200008_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200008_D_GLOBAL.out deleted file mode 100644 index 0c54dd16c8c95038b663d2f41ae74534fedb524c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.058622185389200845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200008_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200008_H_GLOBAL.out deleted file mode 100644 index 8ff5af64db3a6c6e1be13a58b0e8cc2a1dfa7984..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.06495946248372396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200008_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200008_M_GLOBAL.out deleted file mode 100644 index 758856787ec46c128acfaf1ae56b47e721dfcc0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.07422743638356527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200009_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200009_D_GLOBAL.out deleted file mode 100644 index 99a9c4b612e804c8546f7bdad5393b2a5a8c16d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.06383491357167562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200009_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200009_H_GLOBAL.out deleted file mode 100644 index 5600eda57f659109015600cdb8fb819e936c70e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.0762169599533081 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200009_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200009_M_GLOBAL.out deleted file mode 100644 index d9b823188ea0f77c8e09c5261ab1caa9ac4489bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.07995808521906535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200010_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200010_D_GLOBAL.out deleted file mode 100644 index aa117cc0b01297ab1a23a72396ce23906d401a41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.06431726614634196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200010_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200010_H_GLOBAL.out deleted file mode 100644 index be0991318b47bba8e723f2c64a0213decde30c2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.06851559480031331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200010_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200010_M_GLOBAL.out deleted file mode 100644 index 0e44aa152454447bb2b412248a27f78fa2efc227..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.06311495304107666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200011_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200011_D_GLOBAL.out deleted file mode 100644 index 3d28b29815c2fc01448856bfd684d1ca35b2c024..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.06389851967493693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200011_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200011_H_GLOBAL.out deleted file mode 100644 index b5e61b8b9aa39c0aa513f540842cbf456f0ee2e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.06391046444574992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200011_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200011_M_GLOBAL.out deleted file mode 100644 index e6f245bae7b390af1367d9278993c7c7dca68f1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.07497588396072388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200012_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200012_D_GLOBAL.out deleted file mode 100644 index c8d9cb77dae952c9a7f60018bfb95e4d0523bd61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.06448453664779663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200012_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200012_H_GLOBAL.out deleted file mode 100644 index 7952211df00e477aaa18c9a4cf55d6350f181344..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.06750958760579427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200012_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200012_M_GLOBAL.out deleted file mode 100644 index 428c6ce365c79f9449639ff6f4b8be8f62e39a2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.06798333724339803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200101_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200101_D_GLOBAL.out deleted file mode 100644 index 2a3dd1880886a32cbbf2d53134208ae5520fd38f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.07116309801737468 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200101_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200101_H_GLOBAL.out deleted file mode 100644 index 29d5177e70052ce41ccb86e49b46d87ec2ce896c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.060662579536437986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200101_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200101_M_GLOBAL.out deleted file mode 100644 index f693d61091b118029f82bece8862115701ab5f7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.06510463953018189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200102_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200102_D_GLOBAL.out deleted file mode 100644 index 25cfd3777e7514e562a72600f551268133695fff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.08627312580744426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200102_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200102_H_GLOBAL.out deleted file mode 100644 index a062b84681711939be1e48257e74ca3cb5be6b58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.07160445054372151 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200102_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200102_M_GLOBAL.out deleted file mode 100644 index 3645959b55e426ca9fd6843c5e19ec67ca00437a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.06059099435806274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200103_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200103_D_GLOBAL.out deleted file mode 100644 index e881f515e4e36e7b44e40b4dffe6e295ae685709..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.09038455486297607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200103_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200103_H_GLOBAL.out deleted file mode 100644 index e9dcaed45cdbd9e776c8f8e6f7c7276130568e48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.06441069444020589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200103_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200103_M_GLOBAL.out deleted file mode 100644 index ea255fb6f336dd4dc4c582d58ebe4824917514ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.07861555020014445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200104_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200104_D_GLOBAL.out deleted file mode 100644 index a02de22676d717b27fa95c6128ce3db927c910a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.07745492855707804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200104_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200104_H_GLOBAL.out deleted file mode 100644 index a1646e49dc82c0a9880764e631b7ac92aca590d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.07496798435846964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200104_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200104_M_GLOBAL.out deleted file mode 100644 index bd272f3839bc0bb2923fdf446cad9aa4a1b2e75c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.09055251677831014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200105_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200105_D_GLOBAL.out deleted file mode 100644 index 0b442ac1811a0005a1726d4c7f4834a3fe3ef10d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.06110940774281819 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200105_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200105_H_GLOBAL.out deleted file mode 100644 index b26b1953685c7d1bf5c4fe46f1a31423084fea57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.052595210075378415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200105_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200105_M_GLOBAL.out deleted file mode 100644 index e9e63db174d7180621e99a9e8a8a41f046d21fcd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.08035475015640259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200106_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200106_D_GLOBAL.out deleted file mode 100644 index f249336992d6f11ff6bd53595ae047f3d7086a93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.06049358447392782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200106_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200106_H_GLOBAL.out deleted file mode 100644 index b7efe9ec4c4a3b89928180fe7628d20c2683d181..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.08958301146825155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200106_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200106_M_GLOBAL.out deleted file mode 100644 index 964e688f918b37f9ec4563c05509681ab6d894f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.07136834065119425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200107_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200107_D_GLOBAL.out deleted file mode 100644 index 4808123873a0a3ffb864c81a9c2e14d7bfa709de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.06735860904057821 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200107_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200107_H_GLOBAL.out deleted file mode 100644 index dc995ed0ba88c2ab4a79f0108d90fdb5b820fbcf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.06173986991246541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200107_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200107_M_GLOBAL.out deleted file mode 100644 index 7690bcda58a143438d365ccddab9054e19ae536f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.08074072599411011 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200108_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200108_D_GLOBAL.out deleted file mode 100644 index abd3b0d4de8d1b388127f69e32e87101538d2b58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.0626182754834493 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200108_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200108_H_GLOBAL.out deleted file mode 100644 index 8f98dd2ce2bd5e317344e4b1b4ee3b962a6dbba9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.06714966297149658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200108_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200108_M_GLOBAL.out deleted file mode 100644 index 2f5f3e57cd064b6090cd5932d842b28405902bf5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.07310635646184285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200109_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200109_D_GLOBAL.out deleted file mode 100644 index e9f8fb4d8d48c65ad30b936db6e5d668ca0f51fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.07281773885091146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200109_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200109_H_GLOBAL.out deleted file mode 100644 index 425df472487e5da367a6d54abe83e36c7452f3b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.07594966093699138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200109_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200109_M_GLOBAL.out deleted file mode 100644 index 31863e2b206134b4346127fa294306c310c98e7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.07606759468714396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200110_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200110_D_GLOBAL.out deleted file mode 100644 index cdb63c556ba530cc1da82876e9ca737938895032..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.07972526947657267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200110_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200110_H_GLOBAL.out deleted file mode 100644 index 80361488d6693df070a97a3409b2ebd5d6b4e30d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.06720238526662191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200110_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200110_M_GLOBAL.out deleted file mode 100644 index 63cb71ce017fec7ae6832597241f13fa409e035e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.08405951658884685 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200111_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200111_D_GLOBAL.out deleted file mode 100644 index 6815cd32aa4962782d01161bbe4dd07a18dbdb89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.06564172108968098 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200111_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200111_H_GLOBAL.out deleted file mode 100644 index 675feb31678b5361f28e34d08c1eae4702e27ea1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.0562750260035197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200111_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200111_M_GLOBAL.out deleted file mode 100644 index acb75405b7ea5639ddde4f1ff958c8bde2cbb323..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.05886268615722656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200112_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200112_D_GLOBAL.out deleted file mode 100644 index 5c0242fd3db5c190997e4adc6753da16c4817ad1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.09262863794962566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200112_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200112_H_GLOBAL.out deleted file mode 100644 index f7e61469320db70a286cb33d99b6bb278892161e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.0738773504892985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200112_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200112_M_GLOBAL.out deleted file mode 100644 index 46108ec44c5d5ceb9429f8325dc68867b3d61250..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.06935191551844279 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200201_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200201_D_GLOBAL.out deleted file mode 100644 index 20b1a725a146d7221b1098e9e6b30c83d56f4a42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.08191521962483723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200201_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200201_H_GLOBAL.out deleted file mode 100644 index c0cb13906e8aa03b72f1a9772641ce8427396962..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.07183348735173543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200201_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200201_M_GLOBAL.out deleted file mode 100644 index 87e2897a6ccb468a6749171c66818e208224a319..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.10040311018625896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200202_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200202_D_GLOBAL.out deleted file mode 100644 index ec4182e6f512710d55bd4ee9770223cd692a4416..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.10157887140909831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200202_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200202_H_GLOBAL.out deleted file mode 100644 index aeba8548906f32b3dc2c31f1d650aca2d7a90ccf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.07029198010762533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200202_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200202_M_GLOBAL.out deleted file mode 100644 index f543d384ac687a3923ebdc29187c9a2ef006fce0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.09106045166651408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200203_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200203_D_GLOBAL.out deleted file mode 100644 index 7cccb3b9014b255d2e5ac74603c9bf7629755f42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.09216983715693156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200203_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200203_H_GLOBAL.out deleted file mode 100644 index 1ecdd876eeab870a068acf7d555a21320b379fd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.08211732308069865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200203_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200203_M_GLOBAL.out deleted file mode 100644 index 683946e834d784159a52512fc17554c9778fd4f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.08181703090667725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200204_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200204_D_GLOBAL.out deleted file mode 100644 index 31d397388035f27ba63d18c5a7303d3184fee9e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.09102042913436889 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200204_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200204_H_GLOBAL.out deleted file mode 100644 index 807788d010fa5c22e2428089cdd9a3bcda27c145..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.08156025012334188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200204_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200204_M_GLOBAL.out deleted file mode 100644 index 845b878095a90ce12dcc94eb4555dc57baca4ecd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.07062729199727376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200205_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200205_D_GLOBAL.out deleted file mode 100644 index a80dec874ab25cba2c5eb3792147c4f4379fb239..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.08455387353897095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200205_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200205_H_GLOBAL.out deleted file mode 100644 index d3ba7ca8cc820e85c6abac3908f63bc7eca52d1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.0928842027982076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200205_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200205_M_GLOBAL.out deleted file mode 100644 index 2675e73f5565593d6f45d6ad3815ddd78a463cff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.10195861260096233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200206_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200206_D_GLOBAL.out deleted file mode 100644 index 505829f95f68d1e1c0551003916f4dc0c1e1a538..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.08058671951293946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200206_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200206_H_GLOBAL.out deleted file mode 100644 index b3abb1c4ca382284252d1ccf8a113c8b48340133..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.08099621931711833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200206_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200206_M_GLOBAL.out deleted file mode 100644 index 89c5a83451dbe59ef42cafb4252a08f7bd575c57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.08183215459187826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200207_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200207_D_GLOBAL.out deleted file mode 100644 index bc153b2066635cbafae7da7dc6cfb80662591aae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.07515865166982015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200207_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200207_H_GLOBAL.out deleted file mode 100644 index 09f90f716367893fb9e8b497b38625fd27b79163..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.07233371337254842 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200207_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200207_M_GLOBAL.out deleted file mode 100644 index b0e643efa404ccd8032658c1eb0b0ad75e83115b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.10259250402450562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200208_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200208_D_GLOBAL.out deleted file mode 100644 index fcfbc1fbe5e84bb888a16450d2121057bdd15497..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.07691813707351684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200208_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200208_H_GLOBAL.out deleted file mode 100644 index ec67ed5491cf9b33d43f2db785ecfb36ae0a39b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.07822621663411458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200208_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200208_M_GLOBAL.out deleted file mode 100644 index 0c33e07f2d848294180bb076fd549b14c3075aa9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.08635902404785156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200209_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200209_D_GLOBAL.out deleted file mode 100644 index 03a519531b3ffeae45af2c182dbf57be67216c30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.08226736386617024 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200209_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200209_H_GLOBAL.out deleted file mode 100644 index 7399d958c7a332aab7d2cb8b1d451fc0f5ebc5a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.09027686119079589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200209_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200209_M_GLOBAL.out deleted file mode 100644 index 273d441f23d1c0078c845e9eb61c17435205189b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.08369524876276652 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200210_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200210_D_GLOBAL.out deleted file mode 100644 index 33ad163815cdb043cdb7c725869acfbcca94d5ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.09087498188018799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200210_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200210_H_GLOBAL.out deleted file mode 100644 index 80e878b4c4fa85ace66147d0969804cb33531b09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.07906297047932943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200210_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200210_M_GLOBAL.out deleted file mode 100644 index 2fb9e65cd424e1728a0f51d7606af5079c2edbf6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.09662790298461914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200211_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200211_D_GLOBAL.out deleted file mode 100644 index 6ba83157b67034bff281092db3f052e3bc8d8e2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.09357360204060873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200211_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200211_H_GLOBAL.out deleted file mode 100644 index 42a74125dd46ea5eb333e201a8a1d189ac85a62a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.0840658982594808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200211_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200211_M_GLOBAL.out deleted file mode 100644 index 37a1e8ff1a0378f02420e6d84bf7bc511146397d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.08641420205434164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200212_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200212_D_GLOBAL.out deleted file mode 100644 index 231747310921a419e584088d964858205d53fffa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.09125593105951944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200212_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200212_H_GLOBAL.out deleted file mode 100644 index ce546af9673f91608fdf024fb486c3768bbaeef7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.0700191338857015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200212_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200212_M_GLOBAL.out deleted file mode 100644 index ab8f7064d03d60800b7b3c821c8bea078255641b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.094827934106191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200301_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200301_D_GLOBAL.out deleted file mode 100644 index 39866d031fcf21879d3601b34efb8291f7dc700c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.08165283600489298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200301_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200301_H_GLOBAL.out deleted file mode 100644 index b83903e8107a1edf4d13e95359db9f5408e86db7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.0801418662071228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200301_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200301_M_GLOBAL.out deleted file mode 100644 index 21ac3af3cae3c0f543edae8fd41aff981d0ca43b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.07402708927790323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200302_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200302_D_GLOBAL.out deleted file mode 100644 index 18a5412ab43984ee49a98c41bfaf5f0f9623e73e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.08590243657430013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200302_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200302_H_GLOBAL.out deleted file mode 100644 index 041facaeb9c9dfffdf07c33473459069875ae933..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.06510371764500936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200302_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200302_M_GLOBAL.out deleted file mode 100644 index c0ce151f47767e12b895172c1709e1ad56be9fc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.08410532474517822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200303_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200303_D_GLOBAL.out deleted file mode 100644 index 8db51c1b2f03b8a8745b962b36ce3d911571ac86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.07862473726272583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200303_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200303_H_GLOBAL.out deleted file mode 100644 index fe310f57fadc3b4fcea00cd08a6becf1bfaf5409..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.08741218646367391 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200303_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200303_M_GLOBAL.out deleted file mode 100644 index 12b80525714f320018889e44fa8cf8af0c739adc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.09629377126693725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200304_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200304_D_GLOBAL.out deleted file mode 100644 index d7e0ad14248e208ccb5e63dda287996cc7fa0194..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.0851142406463623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200304_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200304_H_GLOBAL.out deleted file mode 100644 index 9bea3709a943b487c6c7b9ed7c3299a5acf34f3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.07768454154332478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200304_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200304_M_GLOBAL.out deleted file mode 100644 index 0efef4d6496c6219d093ad1577f3926d0d0ab75d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.08576110601425171 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200305_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200305_D_GLOBAL.out deleted file mode 100644 index 6ab4ddfd4712d071a41c08ede2b577fe6b37bd68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.08906130393346151 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200305_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200305_H_GLOBAL.out deleted file mode 100644 index 9e53ed4374a3f39f81cf33b4de24e940063f2ded..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.08454900582631429 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200305_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200305_M_GLOBAL.out deleted file mode 100644 index 067dccf398422ac1855f694f8f507da35bb0fe27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.10338602860768636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200306_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200306_D_GLOBAL.out deleted file mode 100644 index e89cd73a6dc1bc2f302bd40f43ca05942f22329d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.10132626295089722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200306_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200306_H_GLOBAL.out deleted file mode 100644 index 7cb9058da6ad45eca126fa3d01886da57c565cb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.08601436614990235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200306_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200306_M_GLOBAL.out deleted file mode 100644 index 782cb05e072421241ac08aef568a4f4916a86937..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.08263246218363444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200307_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200307_D_GLOBAL.out deleted file mode 100644 index dedd2c3baf5a8efa261cada3404c8470e104c2f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.08484200239181519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200307_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200307_H_GLOBAL.out deleted file mode 100644 index e1044cc90961ab31be06fadca9576778e35f1c18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.07690386772155762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200307_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200307_M_GLOBAL.out deleted file mode 100644 index 1048fb5dfc742616d5edd6b7eb08433a897e1d88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.09284169276555379 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200308_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200308_D_GLOBAL.out deleted file mode 100644 index bce8de8746d02ac1fbe3eb9545b385b22af41e0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.07580982844034831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200308_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200308_H_GLOBAL.out deleted file mode 100644 index e779309b0f1949cb27154bf84f1b0f23ed980ee7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.07976990143458049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200308_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200308_M_GLOBAL.out deleted file mode 100644 index 69abe8cb1c45d2d1e6f6c37e20d9321579b14dce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.08315012454986573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200309_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200309_D_GLOBAL.out deleted file mode 100644 index 761aa60bf70b3686c468c1c579b3e93339c340be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.08508021831512451 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200309_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200309_H_GLOBAL.out deleted file mode 100644 index f1faae5f8fee001cb5020cf0c4e3e729c3f09a14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.0838593085606893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200309_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200309_M_GLOBAL.out deleted file mode 100644 index 820bca0d3f06abb2cbe514127f4991b14d989ed2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.10539030234018962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200310_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200310_D_GLOBAL.out deleted file mode 100644 index 0e81a2b01e757f0fc6349900a4abf16485453289..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.0939400593439738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200310_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200310_H_GLOBAL.out deleted file mode 100644 index a8a5685a086860e3330407cae8fc75fdd8dd5500..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.08871260086695353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200310_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200310_M_GLOBAL.out deleted file mode 100644 index 29a7bc0b7d0951738d553baae459df3a10d5869d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.08661306699117025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200311_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200311_D_GLOBAL.out deleted file mode 100644 index 631563b1843334adbb6d912671b3452ee5b77deb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.08700378735860188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200311_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200311_H_GLOBAL.out deleted file mode 100644 index a0aa25aeeb77c185cdbd6889af8c4f7dccad19a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.0935012698173523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200311_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200311_M_GLOBAL.out deleted file mode 100644 index 9f947700f7ac88b70365c275bebdc8d4bab49bb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.0876349687576294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200312_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200312_D_GLOBAL.out deleted file mode 100644 index 263fe5a3d263ff499474e9418862e60e2d084275..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.0844144860903422 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200312_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200312_H_GLOBAL.out deleted file mode 100644 index f0e34e71257ff019621d5f6ca7fee00d84dde723..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.06493380864461264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200312_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200312_M_GLOBAL.out deleted file mode 100644 index b772126679513dc8655afee4b80928e5bd8dea2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.08437176545461018 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200401_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200401_D_GLOBAL.out deleted file mode 100644 index 0518dcdc43a380f831a262fdad777831241e7ab9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.1040706713994344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200401_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200401_H_GLOBAL.out deleted file mode 100644 index 636bc224766db235e7abcf3fc6732e12c4262bdc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.08285756508509318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200401_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200401_M_GLOBAL.out deleted file mode 100644 index 63ab7c3ee649b31ab2a9c71c4b25efc3d8e3040d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.0746616244316101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200402_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200402_D_GLOBAL.out deleted file mode 100644 index 54f116dffd5b9eeb2b65cb8df21d1159d2c0ac10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.08984487851460775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200402_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200402_H_GLOBAL.out deleted file mode 100644 index d6c134c9c634bc593894f604abb8e52cae66f884..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.08282736539840699 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200402_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200402_M_GLOBAL.out deleted file mode 100644 index 3609b714ed0ab424f0de36d3aafc81fd139a5492..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.10753833055496216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200403_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200403_D_GLOBAL.out deleted file mode 100644 index 98cfcdda6367de2e6632462e4d2ae9b45308e608..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.08109324375788371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200403_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200403_H_GLOBAL.out deleted file mode 100644 index f2ccf6d5acc534ca8a23d77dd50c86c05c532f2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.08138651450475057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200403_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200403_M_GLOBAL.out deleted file mode 100644 index ee21f9a38397b5dd4893bf88f1417209592ebd15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.08218536376953126 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200404_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200404_D_GLOBAL.out deleted file mode 100644 index 379cc5b3561cd3dd73fd1476065140c2192ab51f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.0696615179379781 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200404_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200404_H_GLOBAL.out deleted file mode 100644 index dc9645e9209649f319534a56053f766a330815c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.06653771797815959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200404_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200404_M_GLOBAL.out deleted file mode 100644 index 713fabf8bbb1691a2890a54f4788e0b9a0d5d91a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.08802183071772257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200405_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200405_D_GLOBAL.out deleted file mode 100644 index 9498aba50e522c06119c47829499cb06ec201dfc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.08705883820851644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200405_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200405_H_GLOBAL.out deleted file mode 100644 index 8a883814eaf2b56280eaf0e1a655bec1ace9666e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.07683254877726237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200405_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200405_M_GLOBAL.out deleted file mode 100644 index f6e0a91a37f285dfb6aa03011b9be19c9afb2c4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.07889926433563232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200406_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200406_D_GLOBAL.out deleted file mode 100644 index cb54e0fef9c7924347874fa67f2394747da2e392..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.08421083291371663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200406_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200406_H_GLOBAL.out deleted file mode 100644 index 9ee0536eb436fe9115182c62558c2adf9bf1a0a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.1027415156364441 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200406_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200406_M_GLOBAL.out deleted file mode 100644 index 8c749e98fec154d240abb1f253314dfbd6b9d87d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.09207197825113932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200407_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200407_D_GLOBAL.out deleted file mode 100644 index d4ab32e5027a94fb3f980a6d5b44f16e384d732d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.08303831815719605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200407_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200407_H_GLOBAL.out deleted file mode 100644 index 5afc70d3cbdd15000b8db97e10c710297754afa1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.08105371395746867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200407_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200407_M_GLOBAL.out deleted file mode 100644 index 757fb69ec0c6f3020d009f2ef00c48a827009ed9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.08406581878662109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200408_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200408_D_GLOBAL.out deleted file mode 100644 index 7a88af4001fb8b4ca3c7f20ffd968965af26491b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.08012493848800659 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200408_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200408_H_GLOBAL.out deleted file mode 100644 index 22706083b2907c68572ca17faaf7d79dd12d64b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.08353611628214518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200408_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200408_M_GLOBAL.out deleted file mode 100644 index a433ae6de369b086940fb04eeb25ca2b79a4c260..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.0669246236483256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200409_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200409_D_GLOBAL.out deleted file mode 100644 index 81dae50199279debb390b75ba1c0dd377b2d4992..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.09144679705301921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200409_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200409_H_GLOBAL.out deleted file mode 100644 index 1965d5888b409d6b41a96303d88ec770d1d70521..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.07486456632614136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200409_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200409_M_GLOBAL.out deleted file mode 100644 index 1e90644ca59e3abd36e1214dffd34bc1d79ad39a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.08157039880752563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200410_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200410_D_GLOBAL.out deleted file mode 100644 index a1b1a7781b77e08eef05df484e62c5a3997682da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.09156850576400757 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200410_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200410_H_GLOBAL.out deleted file mode 100644 index e63a9c60862a18741e40b835b7ebb0251830fca8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.08460691769917807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200410_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200410_M_GLOBAL.out deleted file mode 100644 index ef55c67d1843df0b25600e7d7be307b6dc889b0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.07447351217269897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200411_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200411_D_GLOBAL.out deleted file mode 100644 index 10146f6d9a0fb5c5a98b4c9d848bf917448f76c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.08321310679117838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200411_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200411_H_GLOBAL.out deleted file mode 100644 index d8bce69ceb53f3f234450cc35a1132affb8bc32b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.08580817381540934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200411_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200411_M_GLOBAL.out deleted file mode 100644 index d9744a141d152711473adbb13aaa779af71a767f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.08297151327133179 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200412_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200412_D_GLOBAL.out deleted file mode 100644 index a5f960cdaeaea76bbea93e99fbe3a93f01e66af0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.08106915950775147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200412_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200412_H_GLOBAL.out deleted file mode 100644 index 4ca4f67070429d70e3bc11c1496b05a45ee802dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.08715532223383586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200412_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200412_M_GLOBAL.out deleted file mode 100644 index aa03ca888ad1a4cb63b6b0630084486ca4ad2010..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.08477964798609415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200501_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200501_D_GLOBAL.out deleted file mode 100644 index c04420a89b1bf56c772bf41ff849a7282698e419..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.09406851927439372 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200501_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200501_H_GLOBAL.out deleted file mode 100644 index b2a9e4497a65af25c6929b7091d4a8284ce0cd23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.079442298412323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200501_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200501_M_GLOBAL.out deleted file mode 100644 index dd556085e065b717eacc510f0ae9ac7969fe62c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.08059828678766887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200502_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200502_D_GLOBAL.out deleted file mode 100644 index ac01b323554edfb9b630987cdbd51c1e9eb99e72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.07437787055969239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200502_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200502_H_GLOBAL.out deleted file mode 100644 index 1695dfe55d66c5efb32f7086c6d8c3b61b442194..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.07568384408950805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200502_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200502_M_GLOBAL.out deleted file mode 100644 index 7a4606400e6948ce4abd3446d68545e7871efd73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.09651494026184082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200503_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200503_D_GLOBAL.out deleted file mode 100644 index 80201a0f77ee484135d0edca6a1cce2de0b15585..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.0616093913714091 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200503_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200503_H_GLOBAL.out deleted file mode 100644 index 7bb81c23fe67f231bb0d77894f600f2a0804ad5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.061963740984598795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200503_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200503_M_GLOBAL.out deleted file mode 100644 index a3b27ee5f37308b4e2ade81cd51f831243e05ecb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.07266236543655395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200504_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200504_D_GLOBAL.out deleted file mode 100644 index bf5b73a8822802d5a047bf6be1f7949851cfc106..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.0791838010152181 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200504_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200504_H_GLOBAL.out deleted file mode 100644 index eca97205a2b613f0e744c21b735eec6662b18cf5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.07017640272776286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200504_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200504_M_GLOBAL.out deleted file mode 100644 index 7e769375742ea3101769084b8a1b3ec8b5008d64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.07916770776112875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200505_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200505_D_GLOBAL.out deleted file mode 100644 index 0f3c387a217571fad5c6697ffbb9ba784dac1bfd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.07777126630147298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200505_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200505_H_GLOBAL.out deleted file mode 100644 index b8576a47afe457724e5795372e4bda6cc6c21953..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.07632041374842326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200505_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200505_M_GLOBAL.out deleted file mode 100644 index c0e698cfc227c598df911dfd2981b4b5d3219384..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.07494576772054036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200506_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200506_D_GLOBAL.out deleted file mode 100644 index 57329ba8bcc4a682deae73eb8c53f3b46b4e092f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.08290602763493855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200506_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200506_H_GLOBAL.out deleted file mode 100644 index 0c758b36d3048631d01475de6d0e5b0c62253805..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.08622924089431763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200506_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200506_M_GLOBAL.out deleted file mode 100644 index b0955c801467f82be8071a02d9aad286c4fc3f18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.08049309253692627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200507_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200507_D_GLOBAL.out deleted file mode 100644 index fa867fa86afb8155c237e838218f3b429c36c174..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.08051579793294271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200507_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200507_H_GLOBAL.out deleted file mode 100644 index 041f6f6d11cac89c49b1f523a7af5fb6454f029a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.07770398457845053 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200507_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200507_M_GLOBAL.out deleted file mode 100644 index 5affe73b9719ccf427477b6d6ac5634666ed0e0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.07921719153722127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200508_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200508_D_GLOBAL.out deleted file mode 100644 index 3ecd7b68599e81d044e97c4edf6d706b96c5167f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.06995379130045573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200508_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200508_H_GLOBAL.out deleted file mode 100644 index 4e273f2e0042f9fb2e97bc507c76a31835d09656..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.07190058628718059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200508_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200508_M_GLOBAL.out deleted file mode 100644 index 25db11024f82371f27dc8e9afa6bde199e745d10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.08954373598098755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200509_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200509_D_GLOBAL.out deleted file mode 100644 index ee1d86e9164024fbe4d50b7be7b55619046f2914..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.08026456435521444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200509_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200509_H_GLOBAL.out deleted file mode 100644 index f88fb9abc7585ac1152ad28a63dfb37ccea90025..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.08007786671320598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200509_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200509_M_GLOBAL.out deleted file mode 100644 index 68e7edac0d3a43cf79079d924cb7b4fa2d881a34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.09339629809061686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200510_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200510_D_GLOBAL.out deleted file mode 100644 index 3e8db2e054f262e8cccc7fcda25b000188b53687..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.07956808805465698 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200510_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200510_H_GLOBAL.out deleted file mode 100644 index aef9524e61a2741c94d18948e91e1c0a8e0baf24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.08088793754577636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200510_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200510_M_GLOBAL.out deleted file mode 100644 index 0a334ada6b3347c6a2f7b4cbf98dd0daa585a736..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.08488463958104452 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200511_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200511_D_GLOBAL.out deleted file mode 100644 index ab858e857a7a14a42ca907f57bf9b05825f107a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.09471942981084187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200511_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200511_H_GLOBAL.out deleted file mode 100644 index 2c43ee5b5c8b9de105462dad724def53cd142549..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.08404212792714437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200511_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200511_M_GLOBAL.out deleted file mode 100644 index aeda8d4ead869a7aed1e247602b658885b7fba61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.08580394188563029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200512_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200512_D_GLOBAL.out deleted file mode 100644 index b1879c52612c91cb0bbb80398f64a345a67b9ed7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.08115295966466268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200512_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200512_H_GLOBAL.out deleted file mode 100644 index c660bca393ae455f54ef24d2ab83ab194dfc8792..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.08786658843358358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200512_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200512_M_GLOBAL.out deleted file mode 100644 index d2f3a5405757b096cdec7d84660b7892ec5f2f94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.069459335009257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200601_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200601_D_GLOBAL.out deleted file mode 100644 index 721e97b6266450e6bbc638db522964d125fb20d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.08053981065750122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200601_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200601_H_GLOBAL.out deleted file mode 100644 index d087143beecb3c80468b938ab03dad7228996a15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.08347221612930297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200601_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200601_M_GLOBAL.out deleted file mode 100644 index e3ee4b92d51c3adc5fa5f7f509b26d4f9b7ba7a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.08517917394638061 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200602_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200602_D_GLOBAL.out deleted file mode 100644 index d65273b75e2aec4e020ce2437606b40685533146..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.0809111754099528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200602_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200602_H_GLOBAL.out deleted file mode 100644 index 77405d0c511b6c744d3b992f37ae749faaa66b97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.07371396621068318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200602_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200602_M_GLOBAL.out deleted file mode 100644 index 552502da3324086b720f3093d1de80775297b546..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.07024308045705159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200603_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200603_D_GLOBAL.out deleted file mode 100644 index d1816b1f7586245c08dbe99ff33f6c8fa301fba9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.0724893053372701 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200603_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200603_H_GLOBAL.out deleted file mode 100644 index 98a85c28604eebf408e3dd155736534445b31bd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.07328119277954101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200603_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200603_M_GLOBAL.out deleted file mode 100644 index a0535e58b5efd5f24a96da157ef67959b84fc44c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.08383400042851766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200604_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200604_D_GLOBAL.out deleted file mode 100644 index a25e23c584cddf41c78823da6aa5deb9216d47a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.08348941008249919 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200604_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200604_H_GLOBAL.out deleted file mode 100644 index e533185f7e18a046601fa02d3d040c762e5d3c27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.09507406949996948 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200604_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200604_M_GLOBAL.out deleted file mode 100644 index a424309919b9fefda4a09b0fabbc4d94cf105a95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.08790989319483439 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200605_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200605_D_GLOBAL.out deleted file mode 100644 index ee4d6ef9a54b1c53a39ebb0c6728737f4761101a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.08439004818598429 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200605_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200605_H_GLOBAL.out deleted file mode 100644 index eae1b5894c4bc33765c1300637fc15de3e5f86cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.07787037293116252 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200605_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200605_M_GLOBAL.out deleted file mode 100644 index eb63cd381e1ff43e5243435363218b96cf8af2e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.09817856550216675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200606_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200606_D_GLOBAL.out deleted file mode 100644 index 692c2788254634fa4101ca11fbdab21c2dd05653..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.07765885988871256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200606_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200606_H_GLOBAL.out deleted file mode 100644 index 2dc50d3be6d55cae974c5657edd45c36a427fba8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.0988017201423645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200606_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200606_M_GLOBAL.out deleted file mode 100644 index 2046bf232548e4d9cf0b2fac9aeba2e7b232ea7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.08291521867116293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200607_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200607_D_GLOBAL.out deleted file mode 100644 index cecd598371931d3e4e5250858e7ffaa22b1463ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.07868574460347494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200607_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200607_H_GLOBAL.out deleted file mode 100644 index a2cf1f46a3beb90c99a767442f53ba9f879ff25c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.06860314210255941 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200607_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200607_M_GLOBAL.out deleted file mode 100644 index 554dc3b319d59c2acbfecf8492141479669a823e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.0780420740445455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200608_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200608_D_GLOBAL.out deleted file mode 100644 index fed4c09373257da7411af03730f42c4d2002643a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.08516260385513305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200608_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200608_H_GLOBAL.out deleted file mode 100644 index f1ec4a73355e2d893d41e056fad31f75f6d5bf3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.06566980679829916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200608_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200608_M_GLOBAL.out deleted file mode 100644 index 1e94394951a93fcd9a4911dbfd94560bc1ce0689..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.07651935815811158 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200609_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200609_D_GLOBAL.out deleted file mode 100644 index 521fa94350ab6fa535bb37eaf9bb515a498ca4b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.09968540271123251 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200609_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200609_H_GLOBAL.out deleted file mode 100644 index fbc74b6dd2a77baf7e9293ddfc5c655ef78a23de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.08043533166249593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200609_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200609_M_GLOBAL.out deleted file mode 100644 index 66c62eed12b66a7abfb15742e11030a8cdf2bbb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.08653872807820638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200610_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200610_D_GLOBAL.out deleted file mode 100644 index b94616f2a175d306da56694445e79cb5fac132b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.08370345036188762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200610_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200610_H_GLOBAL.out deleted file mode 100644 index bfe952f7904a2325121fad3f35ee1658a55b282b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.10561621189117432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200610_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200610_M_GLOBAL.out deleted file mode 100644 index ad376943cad8c5fd59aac0854c8421cfbd6efd51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.08639671007792155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200611_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200611_D_GLOBAL.out deleted file mode 100644 index 315dfb0ffb1aded2aed5a9d2c6b0b5534da75b72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.08594099680582683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200611_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200611_H_GLOBAL.out deleted file mode 100644 index 9bbd02e0bfdfcba405f58b9a58943ecd2237f7cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.06992454926172892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200611_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200611_M_GLOBAL.out deleted file mode 100644 index d976a70c6a447757cad63f1245a83dcee00e4dd7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.08356831471125285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200612_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200612_D_GLOBAL.out deleted file mode 100644 index b565906006060116fe030ef640fdd1d1cfcdc18a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.06598370869954427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200612_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200612_H_GLOBAL.out deleted file mode 100644 index 79b9881cd8a8032f372be2b9853eb89e516cd3f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.06432789961496989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200612_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200612_M_GLOBAL.out deleted file mode 100644 index 974eedd33d62a7c9f6fd96921ad189a0aaf4fae1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.09077225923538208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200701_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200701_D_GLOBAL.out deleted file mode 100644 index 5f932ec4f11a4ceb713c6ee159f67cb3728554d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.09100433190663655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200701_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200701_H_GLOBAL.out deleted file mode 100644 index bebec8b2d2ee7cd8e90c4d173e91698360a814aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.08897178967793783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200701_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200701_M_GLOBAL.out deleted file mode 100644 index 0e8bf5eed571d578fb719e3bff0ac5eeddd6a2c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.08652258316675822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200702_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200702_D_GLOBAL.out deleted file mode 100644 index 70e349df1d920fea3f812004abc7b008145b9441..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.08933977286020915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200702_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200702_H_GLOBAL.out deleted file mode 100644 index c52237c136158be9b9ec6d1e916d155dc707d607..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.07797988255818684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200702_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200702_M_GLOBAL.out deleted file mode 100644 index 78a53e8af8aa576a86f95e5f3054b36e128fe2e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.09429298639297486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200703_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200703_D_GLOBAL.out deleted file mode 100644 index b96b31904006022423dc588d51f615128349d982..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.10392687718073527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200703_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200703_H_GLOBAL.out deleted file mode 100644 index 16c8b817c81f6519e36a3f6ffa4412f9fc0038d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.07928119897842408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200703_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200703_M_GLOBAL.out deleted file mode 100644 index 02d40e9ca75922034982676fb1a6fd850aff022f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.0806068499883016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200704_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200704_D_GLOBAL.out deleted file mode 100644 index a2862fb2d01d99528b40b1be0a24b148e0748331..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.0793859601020813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200704_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200704_H_GLOBAL.out deleted file mode 100644 index 17a108e157322bc85b035b0a9498026e1fef2be2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.08275988101959228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200704_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200704_M_GLOBAL.out deleted file mode 100644 index b86224838a12eaa4e3fffcf8c2a0588988d5ccb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.08485791285832724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200705_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200705_D_GLOBAL.out deleted file mode 100644 index 020fcfd58c897bd4d8bfa0ec3814257e65fef832..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.08122600317001342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200705_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200705_H_GLOBAL.out deleted file mode 100644 index 61c95c8d4650e678d33bc30edb89fc4208acfcc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.0797791043917338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200705_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200705_M_GLOBAL.out deleted file mode 100644 index e504281820fba3566565f99e9b0cee1a0ceabcd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.09460732142130533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200706_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200706_D_GLOBAL.out deleted file mode 100644 index 0dc8b1daff554b732ebc586abea749b0ffc65865..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.08674320379892984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200706_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200706_H_GLOBAL.out deleted file mode 100644 index 1ac847b1215bbcbb89624e44e649cc9e2ba2ecfb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.08066398700078328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200706_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200706_M_GLOBAL.out deleted file mode 100644 index aa71f0fb501cce9395b7c4c9bf9f5e7f0be22575..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.07932445605595907 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200707_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200707_D_GLOBAL.out deleted file mode 100644 index a46c35059a371e1a9c576ec22450da6cb48c8f52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.07826419274012247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200707_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200707_H_GLOBAL.out deleted file mode 100644 index 66a3e1107dac2febbeea19b24b79790c525cf211..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.09753157297770182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200707_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200707_M_GLOBAL.out deleted file mode 100644 index c73061d1f0d0432820b4674a26f5c60270dbb096..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.07913678884506226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200708_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200708_D_GLOBAL.out deleted file mode 100644 index 6e9a5630d9f1b486be03200b58a7fc2df6e10915..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.08125271399815877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200708_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200708_H_GLOBAL.out deleted file mode 100644 index 70548e2c31e1a725724af74c4b1941b5698f101c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.07109344005584717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200708_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200708_M_GLOBAL.out deleted file mode 100644 index a09fcca2a7d49ceea9f6f3dcec5a42f527a96fca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.0632869799931844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200709_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200709_D_GLOBAL.out deleted file mode 100644 index fb57df22ea8d918feb6620c9eac195b7f3381d79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.09710086186726888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200709_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200709_H_GLOBAL.out deleted file mode 100644 index 2809e8f6f3d66e051ae047b3dbcbaa71ebf27a90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.07850271066029867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200709_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200709_M_GLOBAL.out deleted file mode 100644 index 81fd5a259745e44df4a736a3409eccc66a59d50e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.08023599783579509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200710_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200710_D_GLOBAL.out deleted file mode 100644 index 1913dd2274c22ff9a78d2a1881403732ae9aacca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.08416015307108561 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200710_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200710_H_GLOBAL.out deleted file mode 100644 index 53340c0a1be369b17d241e6fe4d7e7c074a1687a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.07817143201828003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200710_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200710_M_GLOBAL.out deleted file mode 100644 index 9263f0636d1fb359420c6293cdd61e6e3aa56583..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.07986445426940918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200711_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200711_D_GLOBAL.out deleted file mode 100644 index db00714956780a53a30fa7b51ca4e69c2a1e9a25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.08208540678024293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200711_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200711_H_GLOBAL.out deleted file mode 100644 index 8302aefb58e3c159337a00ed4561a6b465db55c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.07886606057484945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200711_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200711_M_GLOBAL.out deleted file mode 100644 index 7fbf6f78614a8a0eb22b06eb846b701797df0c31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.08100209633509318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200712_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200712_D_GLOBAL.out deleted file mode 100644 index 76f107b546531c22a8b84c953cfe69b3264830b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.09071274598439534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200712_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200712_H_GLOBAL.out deleted file mode 100644 index 636477c9bd5e7bb9f6b4735e1677617c62800c9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.09007797241210938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200712_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200712_M_GLOBAL.out deleted file mode 100644 index 57b852bc8020cdf9b7fcdc5aa85b9986ba246bc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.08117212851842244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200801_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200801_D_GLOBAL.out deleted file mode 100644 index 2df45b66a610d43fea0e3b30d5c62652da043d94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.07954768737157186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200801_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200801_H_GLOBAL.out deleted file mode 100644 index b54775ed84c3a07b17539b5ac18f80cc9608f825..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.0819297194480896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200801_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200801_M_GLOBAL.out deleted file mode 100644 index d4ca6a13102d2ba565f74a4154cd16ac36e17d2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.07855199178059896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200802_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200802_D_GLOBAL.out deleted file mode 100644 index 12981e4df3d55ad6b5b87ce86f2af3c5043d9562..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.07332560221354166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200802_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200802_H_GLOBAL.out deleted file mode 100644 index cc4e666ffa0e5cc65c145bdf7bbf4964d163de96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.07819040218989054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200802_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200802_M_GLOBAL.out deleted file mode 100644 index f2eafb2ab2eaecbcfceef225cc89d4bb30f920ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.06643473307291667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200803_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200803_D_GLOBAL.out deleted file mode 100644 index 0820fc6c5045d6b4a5cc049c32bd07dc8084fd06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.07765630880991618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200803_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200803_H_GLOBAL.out deleted file mode 100644 index 890bc65915adf2851cf5fcffffb63873432ae818..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.06746456623077393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200803_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200803_M_GLOBAL.out deleted file mode 100644 index 1cf0503188edf7f6ae8040cc9b1d8bf4cfe17c44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.06748880545298258 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200804_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200804_D_GLOBAL.out deleted file mode 100644 index 8a66447e5393cf715645f32cc3fd3cc7d65fba1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.10572379032770793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200804_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200804_H_GLOBAL.out deleted file mode 100644 index 315bf3f403cfe1c5d173b745a1ee8fd58837b4ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.08682305812835693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200804_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200804_M_GLOBAL.out deleted file mode 100644 index d9130326574e6c846da711dc35b17f301517d39f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.06794785658518473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200805_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200805_D_GLOBAL.out deleted file mode 100644 index 1be8270f099149861f7abcc5c1ecba8cc695666d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.08416793743769328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200805_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200805_H_GLOBAL.out deleted file mode 100644 index 6f238e17cd73ab92b40954af6be59b0b846b0faf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.08343279759089152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200805_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200805_M_GLOBAL.out deleted file mode 100644 index e02f6ff5c7d604275533426ac735622b15c4c43c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.06160100301106771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200806_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200806_D_GLOBAL.out deleted file mode 100644 index 823e5c4b00af4b925733685dbcb8754ea9427e20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.0802948514620463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200806_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200806_H_GLOBAL.out deleted file mode 100644 index 259f016606a1fab2ef72137d84a126bb1ff53e62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.0870821714401245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200806_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200806_M_GLOBAL.out deleted file mode 100644 index b6d979fd5467d79d12a3cba39e528165747b71bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.0769575834274292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200807_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200807_D_GLOBAL.out deleted file mode 100644 index 0d8981f2246ee9d19508e15923e4c9909dc435f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.08402111530303955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200807_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200807_H_GLOBAL.out deleted file mode 100644 index 3369a409914458cc001565e2f82dfbd406c9f67e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.06985885302225749 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200807_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200807_M_GLOBAL.out deleted file mode 100644 index a3d2da0be4a7264b322db3cd6ecb7c67f23ff629..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.07305661042531332 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200808_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200808_D_GLOBAL.out deleted file mode 100644 index ddb69dfd0c7e684871101b44d89be2c6ecb2bfce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.07872544527053833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200808_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200808_H_GLOBAL.out deleted file mode 100644 index 9429922890c37163ed6e12eaaf5175f337282f24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.0728432854016622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200808_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200808_M_GLOBAL.out deleted file mode 100644 index afe32ff7f752a92ffd2ffd0203bc843b9c47a0f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.07152874072392781 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200809_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200809_D_GLOBAL.out deleted file mode 100644 index 5a8c33460302b5ae159b5c1967eb8de71f897270..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.09389103253682454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200809_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200809_H_GLOBAL.out deleted file mode 100644 index 38012dfe0955045ec1f85e1d711985bf17029e64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.08447806040445964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200809_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200809_M_GLOBAL.out deleted file mode 100644 index fd11882f9fa05f7a1c2d2c10c78cd7fa5dc85e5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.07774325211842854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200810_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200810_D_GLOBAL.out deleted file mode 100644 index f9acfbb74cdc2e5fbb36e0db76f3557b957911da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.08555880784988404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200810_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200810_H_GLOBAL.out deleted file mode 100644 index 97d310053abd53964e45831f2fdabf3a1e03b62f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.07318506240844727 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200810_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200810_M_GLOBAL.out deleted file mode 100644 index 8626922921f09fe789364171db38d8e3d65c9001..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.06592251459757487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200811_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200811_D_GLOBAL.out deleted file mode 100644 index 7926771ee9864a87cf4a8b01ca84bf6f33004e38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.07409340143203735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200811_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200811_H_GLOBAL.out deleted file mode 100644 index 6d735540abb816503b77fad638cc7c17522da3d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.08574173053105673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200811_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200811_M_GLOBAL.out deleted file mode 100644 index 744f1b8d3c7c86c18bf2d484772c578dbb115d07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.095766810576121 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200812_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200812_D_GLOBAL.out deleted file mode 100644 index 9d77bcf5cd61eb92087c0ab5ecd6744db83e2c33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.0734203020731608 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200812_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200812_H_GLOBAL.out deleted file mode 100644 index 2138a8913da5dcf023b2f367aeb834ae140605d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.07133899927139283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200812_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200812_M_GLOBAL.out deleted file mode 100644 index c663c53480280a0eca90ac323b29b0b7c3db4ccc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.07972889343897502 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200901_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200901_D_GLOBAL.out deleted file mode 100644 index 8a8d712a6f3339950c10399e3970458520cd6404..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.08074251810709636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200901_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200901_H_GLOBAL.out deleted file mode 100644 index baa7478687d40af8cf485b57960f6662d634bfc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.07875234683354695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200901_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200901_M_GLOBAL.out deleted file mode 100644 index 7dc1d1a95d87f5ae45778ebe9e59d2a422a4367e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.10568725268046061 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200902_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200902_D_GLOBAL.out deleted file mode 100644 index e55b239ee6e74b4f3e508841554232c1d01210e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.0889249324798584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200902_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200902_H_GLOBAL.out deleted file mode 100644 index 43fb04d72149a5165f408e7d2e3db367df7244cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.07903651396433513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200902_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200902_M_GLOBAL.out deleted file mode 100644 index b7e9338790245ed8ffb9fe10f89d8b1769b2bc3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.08610036770502726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200903_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200903_D_GLOBAL.out deleted file mode 100644 index db0514ce82ed9c045265314447e4e342fc546b9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.07852416435877482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200903_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200903_H_GLOBAL.out deleted file mode 100644 index be5837447f8df5440cacd6c30ea0cc2cbfafc267..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.08735022942225139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200903_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200903_M_GLOBAL.out deleted file mode 100644 index 1e400f8840709099ac754509da9ebef6fd943648..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.07525351842244467 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200904_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200904_D_GLOBAL.out deleted file mode 100644 index 35c2be6ff64ce31bc57bd39e0e41e58fbc9702dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.08110424280166625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200904_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200904_H_GLOBAL.out deleted file mode 100644 index 07b84a0632a8fc26c65222e215cdbc078d855745..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.08682797352472942 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200904_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200904_M_GLOBAL.out deleted file mode 100644 index 0416bb7952cabd1d91a2d2df8ff8b51d5a54376b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.06667747100194295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200905_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200905_D_GLOBAL.out deleted file mode 100644 index a54d53b0b95c04e9c8315bf0b52c955bd16d435d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.08977011442184449 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200905_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200905_H_GLOBAL.out deleted file mode 100644 index 600211c92112b70f144ab1472ced918aac980cca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.07717198133468628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200905_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200905_M_GLOBAL.out deleted file mode 100644 index 5124e2c3ec57c7a095d8e15e653e11525084011c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.0807508905728658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200906_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200906_D_GLOBAL.out deleted file mode 100644 index 5c36e69a3d76db565ea54e57aafe58433a071053..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.07996103366216024 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200906_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200906_H_GLOBAL.out deleted file mode 100644 index f35ed1f751b0e5ac6c227e32f8483e3800215908..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.0863894780476888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200906_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200906_M_GLOBAL.out deleted file mode 100644 index 8256945cb6ff7fadc0ec7abd817b419a3d8ef12f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.08046525716781616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200907_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200907_D_GLOBAL.out deleted file mode 100644 index 58373efcaf8dd5fd507f00b6a3e053694eef1bfc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.08985110918680826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200907_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200907_H_GLOBAL.out deleted file mode 100644 index f84e970e370dc0f36146647f84a4dc32b1ee324e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.08578356107076009 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200907_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200907_M_GLOBAL.out deleted file mode 100644 index 856e93a4fd76c514c2acc02335af9fd347cb0bcb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.0964689572652181 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200908_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200908_D_GLOBAL.out deleted file mode 100644 index 385cff03a7653ec2ab2b36dd2d824c2f30752e46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.08740557432174682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200908_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200908_H_GLOBAL.out deleted file mode 100644 index d79355894a385341b67af827bd2fcc81e780414a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.08441338539123536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200908_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200908_M_GLOBAL.out deleted file mode 100644 index 370e1303a2883c794b006bbeb17bb9aebf30cd8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.0826346476872762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200909_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200909_D_GLOBAL.out deleted file mode 100644 index 9cee126fd87381a393fa2838da3510a4bdd475ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.08036982615788778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200909_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200909_H_GLOBAL.out deleted file mode 100644 index 2d43bd7f24feb46ba3a851686765aaa9dbf32b74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.07727063496907552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200909_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200909_M_GLOBAL.out deleted file mode 100644 index a1986211ceea2b113f53eba790b8542062bf5538..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.09698753754297892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200910_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200910_D_GLOBAL.out deleted file mode 100644 index 9880ad9735428a8674c64b815e66b780c06c3e9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.0835713267326355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200910_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200910_H_GLOBAL.out deleted file mode 100644 index f94c5e6f3f6dad2c68497db723ab56fd36a04ba1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.08061623573303223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200910_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200910_M_GLOBAL.out deleted file mode 100644 index 7d555e4f55163172a2e6f5aa4deeb2b4d407e10c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.1014102300008138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200911_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200911_D_GLOBAL.out deleted file mode 100644 index 04c39e8ff85d56c4b93087867a66604f55aaa224..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.09641014734903972 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200911_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200911_H_GLOBAL.out deleted file mode 100644 index 2c189d1eb598bc448115281a8b264f2405a37b43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.07162515322367351 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200911_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200911_M_GLOBAL.out deleted file mode 100644 index e4b2bd4407661dd2071abb1cefca1ac93273e2f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.08798348108927409 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200912_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200912_D_GLOBAL.out deleted file mode 100644 index 349ffaf3e331f2f08691264dbeee8a4db0defdc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.10272707144419352 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200912_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200912_H_GLOBAL.out deleted file mode 100644 index 8b3bf4315d036b972118042552185e30b9e7f4fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.09773593346277873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_200912_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_200912_M_GLOBAL.out deleted file mode 100644 index d58c07ebb1d7b712e1661d870a5a8b549de5774f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_200912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.09569857517878215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201001_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201001_D_GLOBAL.out deleted file mode 100644 index 9bce041f803e31216ca340a67d05be5f79446522..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.10430576801300048 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201001_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201001_H_GLOBAL.out deleted file mode 100644 index e81fb6bd4570ce457934b596fca4e1a766890eb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.0933153748512268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201001_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201001_M_GLOBAL.out deleted file mode 100644 index 319722f5fedc50f7626e65dcfa696d950040f1ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.11205379962921143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201002_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201002_D_GLOBAL.out deleted file mode 100644 index e9b269b87330bc917346bbb1652f970b2c3d59be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.10815263986587524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201002_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201002_H_GLOBAL.out deleted file mode 100644 index e64eb35cfca7f34430b355eab58a99f427ef1455..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.10365123748779297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201002_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201002_M_GLOBAL.out deleted file mode 100644 index 121421c5c0c8b2dd6ecca9cfda02d917c069f559..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.10662397543589273 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201003_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201003_D_GLOBAL.out deleted file mode 100644 index 15fc2289e07a4712ee8d8580d0f6aec8aae6c348..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.08650139570236207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201003_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201003_H_GLOBAL.out deleted file mode 100644 index 50ef059d07fd374f352143a2ca3368d25ee22726..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.09596997896830241 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201003_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201003_M_GLOBAL.out deleted file mode 100644 index c84b4722bba988211e759b538828842a67fb09d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.10864968697230021 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201004_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201004_D_GLOBAL.out deleted file mode 100644 index 04394ee856f35d2de321570227643ab94db0a3a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.09718528985977173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201004_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201004_H_GLOBAL.out deleted file mode 100644 index 10acd4aebf0cd4bad4a750866ca9612611213f17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.09493112564086914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201004_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201004_M_GLOBAL.out deleted file mode 100644 index 4412ee7baae4c00341a0d19dc8567f83cc89172e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.11273512045542398 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201005_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201005_D_GLOBAL.out deleted file mode 100644 index 93a686565171916b4f07486e75300f892640ea41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.10319876273473104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201005_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201005_H_GLOBAL.out deleted file mode 100644 index dc9ce440ef25a780512ba0e79f92b2256d98a426..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.11081214745839436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201005_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201005_M_GLOBAL.out deleted file mode 100644 index d3989ba4402b6daf88b2377162dc6d17736b8206..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.10487224658330281 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201006_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201006_D_GLOBAL.out deleted file mode 100644 index 916f03a32ccd39b4de77305ad6ca8de26d07d83a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.09945060809453328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201006_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201006_H_GLOBAL.out deleted file mode 100644 index faa29a33a7741487664c5067c223013627f54919..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.0936970591545105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201006_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201006_M_GLOBAL.out deleted file mode 100644 index c060988725629c776b767f210b12771357853333..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.11931023597717286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201007_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201007_D_GLOBAL.out deleted file mode 100644 index 6c9852336dc65477b67cb539a7a54cfab0ae461f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.09391243855158488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201007_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201007_H_GLOBAL.out deleted file mode 100644 index 9c0dc512ebec569ea2a7a425161af2a9f1b5624f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.10233747561772664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201007_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201007_M_GLOBAL.out deleted file mode 100644 index 093128a71798a5dcd02335d4558f3486bad44448..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.11349059740702311 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201008_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201008_D_GLOBAL.out deleted file mode 100644 index ce8a9e488f5032beae98d559a091868257747c26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.10074220101038615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201008_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201008_H_GLOBAL.out deleted file mode 100644 index 35c371f6283dbefcb02a4a1dcae9c06b2ffafcb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.09784071842829387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201008_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201008_M_GLOBAL.out deleted file mode 100644 index a8fb0e1e4233f6701711ba4e8ec6291afff91920..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.09893086353937784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201009_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201009_D_GLOBAL.out deleted file mode 100644 index fddb7a3f5cf383c3b4b144d8eb4f2f158ec84bcb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.10283973217010497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201009_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201009_H_GLOBAL.out deleted file mode 100644 index a390698d9a938302aba4f24019c457be72a80349..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.09600677887598673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201009_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201009_M_GLOBAL.out deleted file mode 100644 index cc1c5a8d7ccb1f91feee877fdbd06d5df8259458..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.09486805200576783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201010_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201010_D_GLOBAL.out deleted file mode 100644 index c19bc4cea0c53a993a8b8f49fee3bdce74d96666..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.11189072926839193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201010_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201010_H_GLOBAL.out deleted file mode 100644 index 07ae26180317ecd839ba7dac688d1a8045c1af77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.08907027641932169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201010_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201010_M_GLOBAL.out deleted file mode 100644 index d0ea43f63ab212fc12af40fc9ab5bb402cf8e51a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.09964820146560668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201011_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201011_D_GLOBAL.out deleted file mode 100644 index e271d0ccade6b4e37238bbdb6346d12cf8f91d1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.11079943974812825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201011_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201011_H_GLOBAL.out deleted file mode 100644 index 8a98379f28e17e7fbe54ec071d73532b25a4c607..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.10100981394449869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201011_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201011_M_GLOBAL.out deleted file mode 100644 index 99bb29369c207b5f9f3941f495b552443841b151..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.11011312007904053 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201012_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201012_D_GLOBAL.out deleted file mode 100644 index 0395c5bb2f7363f108e7f853f69608cb3c95b5fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.1118526299794515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201012_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201012_H_GLOBAL.out deleted file mode 100644 index 6b41a0cbd4573905bf19dfc7c2edd4e3c01cf9fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.11878265539805094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201012_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201012_M_GLOBAL.out deleted file mode 100644 index c9f0053ede230155e21923f7a1a0b432febab65c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.1018012007077535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201101_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201101_D_GLOBAL.out deleted file mode 100644 index 65ff1846e4c5bcf2122b2c19de2fbc77d78994ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.1038763443628947 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201101_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201101_H_GLOBAL.out deleted file mode 100644 index ec4e32872f7bc1ec2f3ccc3c6dc45415a1b59a4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.09966162045796713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201101_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201101_M_GLOBAL.out deleted file mode 100644 index a481b9d6f090376ffba51861a24427ae1fbb2de4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.09636828502019247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201102_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201102_D_GLOBAL.out deleted file mode 100644 index 814f1d7a0db1b8d04bd8565b4e9f0d1fc9abf0ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.10325560172398886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201102_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201102_H_GLOBAL.out deleted file mode 100644 index ca16b626cd42a5dac276c5f38e290c2241a8bf86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.09760159651438395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201102_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201102_M_GLOBAL.out deleted file mode 100644 index 63c71718e06de8bd668821bb76536301e8a1ac52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.11127800146738688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201103_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201103_D_GLOBAL.out deleted file mode 100644 index 9f2cb569aa3d8c3a9d89b20dec2d916f38045bed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.11472509304682414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201103_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201103_H_GLOBAL.out deleted file mode 100644 index d10b23838b8f69f8a066d99363929201dbbc00a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.10383291244506836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201103_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201103_M_GLOBAL.out deleted file mode 100644 index 9d9783a0bf79e62d755d7e80a8046a3b37bd6b7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.10810875097910563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201104_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201104_D_GLOBAL.out deleted file mode 100644 index d688bac644eba54ac3d4b6ead89bdc8f9ad0775a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.12187065283457438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201104_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201104_H_GLOBAL.out deleted file mode 100644 index b27fb51be0d946b5ef1a0df66fd34f56b2f463f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.09878358443578085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201104_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201104_M_GLOBAL.out deleted file mode 100644 index b9c987c79022f4725f10adc719b1ca0548786ca5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.10877262751261393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201105_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201105_D_GLOBAL.out deleted file mode 100644 index 99fb4367e61e1b46937d36b9968de414196a8aec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.1303490360577901 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201105_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201105_H_GLOBAL.out deleted file mode 100644 index 158634db920c851133d8571b31d8fee3179daea3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.09912774960199992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201105_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201105_M_GLOBAL.out deleted file mode 100644 index 5acf2815b4b021c5e4795e8e6b7f63b96b9b1c58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.09674904743830363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201106_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201106_D_GLOBAL.out deleted file mode 100644 index 20ae10b515df685157ca17f0f8a88d1ea2a49604..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.1015995422999064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201106_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201106_H_GLOBAL.out deleted file mode 100644 index 9ff7aa7eb5fb007d3b41a31626e15f2b66d3523d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.09876745939254761 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201106_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201106_M_GLOBAL.out deleted file mode 100644 index 9d918ccdf319ed859220d32263ee0ee51bcf6033..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.10716218550999959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201107_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201107_D_GLOBAL.out deleted file mode 100644 index 7f34478db75fd0db9b735f5032302341c50078ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.09914811849594116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201107_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201107_H_GLOBAL.out deleted file mode 100644 index a35666b4f9373b8d50c0b7bc00ae4450ecac0c5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.09366264740626017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201107_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201107_M_GLOBAL.out deleted file mode 100644 index 0a5b37185d5319b5e57058c9b31b855f5e76df8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.09836218357086182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201108_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201108_D_GLOBAL.out deleted file mode 100644 index d3ceeef40def6560ed5c26949dfb77acf987e374..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.11871729691823324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201108_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201108_H_GLOBAL.out deleted file mode 100644 index 4c451498039c6db4635a04b9b71951b95846bea2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.09607288440068563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201108_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201108_M_GLOBAL.out deleted file mode 100644 index 8b004fdfbfb9c869b941eb7fb586be90dffdb9f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.11102340618769328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201109_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201109_D_GLOBAL.out deleted file mode 100644 index 25cb6876b20134b3152f1218e41e9ac16dc6410e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.10903606414794922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201109_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201109_H_GLOBAL.out deleted file mode 100644 index 35ce5ef69d8a4856dced103fa978732a377acc58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.10516061385472615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201109_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201109_M_GLOBAL.out deleted file mode 100644 index 1be635ad1e979bf95dc97f78e0b7dc75c2f5a147..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.1094926635424296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201110_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201110_D_GLOBAL.out deleted file mode 100644 index 0a396f06dcdf27b72fbc42c9bb0235f2934cfa0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.09799451430638631 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201110_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201110_H_GLOBAL.out deleted file mode 100644 index 41885452f27dfcea759ed521c67390058530bd2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.1124992291132609 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201110_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201110_M_GLOBAL.out deleted file mode 100644 index 12965887fea6f44a4ae2956d510c5f46e963c496..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.09468851884206136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201111_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201111_D_GLOBAL.out deleted file mode 100644 index 8ee3bf660f875217f1b859e97203894a5896fefa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.10119458039601643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201111_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201111_H_GLOBAL.out deleted file mode 100644 index b9dee4aadc579f97bab1261b5f62f30f3a2f8c19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.10648613373438517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201111_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201111_M_GLOBAL.out deleted file mode 100644 index f496b86a54b513026dcd6ba74af3cb1f0009bb5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.11538532972335816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201112_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201112_D_GLOBAL.out deleted file mode 100644 index 8cffb88e6bbddb1d28d80248b7be27a1231b8134..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.11609561840693156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201112_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201112_H_GLOBAL.out deleted file mode 100644 index 70c516476e546383e3825e234fd3928becfb1ed5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.11418554385503134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201112_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201112_M_GLOBAL.out deleted file mode 100644 index 85866d826a93c189905cf3107ac7ac8b38c89502..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.11862035989761352 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201201_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201201_D_GLOBAL.out deleted file mode 100644 index 78552fb8a842461493a886eb0abaa92b89239eb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.09403241872787475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201201_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201201_H_GLOBAL.out deleted file mode 100644 index 84e9903a8627e9e47a62d9f530a60f6f4a86f206..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.08838824033737183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201201_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201201_M_GLOBAL.out deleted file mode 100644 index ee9e1754cb2bfa3b960bebe67e8c2b94fc8e2c17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.11209410031636556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201202_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201202_D_GLOBAL.out deleted file mode 100644 index 2105ef3d560cd94a891e3d6dd8082c459673b3c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.11472812096277872 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201202_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201202_H_GLOBAL.out deleted file mode 100644 index 1fa51673f1df564ebe04eea986ec1fd9748df5f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.09237473408381144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201202_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201202_M_GLOBAL.out deleted file mode 100644 index 74f35c3ccec3e6b8c878e32f919448be8bccb2c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.11692660252253215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201203_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201203_D_GLOBAL.out deleted file mode 100644 index a1dd50d57c9b2761b06274da6d9964d6e6d757fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.10462337334950765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201203_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201203_H_GLOBAL.out deleted file mode 100644 index 44ae6f5076b95870205188ca69b7a861a97198d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.11073045333226522 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201203_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201203_M_GLOBAL.out deleted file mode 100644 index 4f6db6529b2a3d44818f99defd7c7f0ea77d8d2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.11038798491160075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201204_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201204_D_GLOBAL.out deleted file mode 100644 index 88cfc9aa1086d7578d9f43a9f3081190a4352fae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.08396553993225098 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201204_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201204_H_GLOBAL.out deleted file mode 100644 index 91afeae19ae323e5f87591adf8f9d57bfdbfe992..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.10078130960464478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201204_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201204_M_GLOBAL.out deleted file mode 100644 index 8e707b89af05f0d8d8e61fe4571d376ba4c682ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.11123056411743164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201205_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201205_D_GLOBAL.out deleted file mode 100644 index ca4e58dd6fcd4422eb9c868c749897ecc11580e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.10779589017232259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201205_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201205_H_GLOBAL.out deleted file mode 100644 index 669f99d3d1b8afd7e72b81795d774a250d183872..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.09468935330708822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201205_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201205_M_GLOBAL.out deleted file mode 100644 index 4cf2ed86bb6cbadd9d702d0336fb3de16b67d75e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.1101474682490031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201206_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201206_D_GLOBAL.out deleted file mode 100644 index 3ea0e7516dbf71530c2660a4fd143aaaf6a62c88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.13155820369720458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201206_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201206_H_GLOBAL.out deleted file mode 100644 index c3ea66aeb33c5a60ca558b065960fa1f8682164e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.0917597492535909 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201206_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201206_M_GLOBAL.out deleted file mode 100644 index 3ab31d6e2a5b0e6d407698ce86e44c78f9aab161..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.10683440367380778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201207_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201207_D_GLOBAL.out deleted file mode 100644 index 2d9d780b836cde014a12f0ec1f0dfcc863240482..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.12757518688837688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201207_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201207_H_GLOBAL.out deleted file mode 100644 index 96a6c492b25a128670ebcc7e5a04a35e11816dbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.10737345616022746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201207_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201207_M_GLOBAL.out deleted file mode 100644 index 3ed2ef901b17534cfeaec4ed91c96eb6928de97a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.09664744933446248 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201208_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201208_D_GLOBAL.out deleted file mode 100644 index 8fd40ff7f5b755b5220878d0b4df9ba5519646e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.09667512973149618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201208_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201208_H_GLOBAL.out deleted file mode 100644 index 0f607b83853e687aff5e97ca7b3c451d6a777b0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.09838749567667643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201208_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201208_M_GLOBAL.out deleted file mode 100644 index 13db5062d076faa815fc71b6c96ed203f2c4eb41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.11337851683298747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201209_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201209_D_GLOBAL.out deleted file mode 100644 index c7ae9c8802d0b18fa88019fa6a1c48b154bed2a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.10901560386021932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201209_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201209_H_GLOBAL.out deleted file mode 100644 index 43b7469b9d265b9a0fee660f02b17a7ee9296ff3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.09508127371470133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201209_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201209_M_GLOBAL.out deleted file mode 100644 index f7d4b3724d17989a9485978cbb8aeba5e9aac413..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.11465042432149251 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201210_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201210_D_GLOBAL.out deleted file mode 100644 index a004d5d0b6f4dbd7b58f7050c1b1f5f0ab605d3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.11731274922688802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201210_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201210_H_GLOBAL.out deleted file mode 100644 index 36ae173b6b6bf11bdeb05b7548253c0232bf34f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.09922593037287394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201210_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201210_M_GLOBAL.out deleted file mode 100644 index e733af14ee285383a41bdf0e8a619736a7b25586..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.10723504225413004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201211_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201211_D_GLOBAL.out deleted file mode 100644 index 4b872bfea246b4ceb3b7a41f735eabf3165c1fb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.11170978943506876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201211_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201211_H_GLOBAL.out deleted file mode 100644 index a82cca7b4306cb21156bfbf3f33b1b7992006135..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.1050860087076823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201211_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201211_M_GLOBAL.out deleted file mode 100644 index 6a99e2fa6e0addd74ffb26dbfbf8c74540dc0a44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.11405603090922038 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201212_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201212_D_GLOBAL.out deleted file mode 100644 index cce2dcd6d922883cd268478da84ab5c8f771a44d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.13394238551457724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201212_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201212_H_GLOBAL.out deleted file mode 100644 index 53a36b6bea038f7c16e6dc07ed61a22602d306d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.0982953707377116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201212_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201212_M_GLOBAL.out deleted file mode 100644 index b048698ea58106cec521a7e30921f24bf7e775bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.10382187366485596 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201301_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201301_D_GLOBAL.out deleted file mode 100644 index d90212e6cf81f185f633ea19703b192ab8c47845..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.10982661247253418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201301_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201301_H_GLOBAL.out deleted file mode 100644 index 5d836b41d9de5e3d5485a4508e49e88db0cbec27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.10073514382044474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201301_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201301_M_GLOBAL.out deleted file mode 100644 index 0e518668881a40658b38b83d162f592b35d9863a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.10660770336786905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201302_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201302_D_GLOBAL.out deleted file mode 100644 index cabd14adcfe0ee33d80789a0abb8abd6ed0b2b66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.10693625211715699 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201302_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201302_H_GLOBAL.out deleted file mode 100644 index 4eb26de18ca40f934584d08ea45d0e84e3420060..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.09696381489435832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201302_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201302_M_GLOBAL.out deleted file mode 100644 index 7340449fdbcff6fe840e88042e9dee6522b1a480..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.10719194809595743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201303_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201303_D_GLOBAL.out deleted file mode 100644 index 0d022f97735e967a0c4a004596f243df3d31b36b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.1037622332572937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201303_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201303_H_GLOBAL.out deleted file mode 100644 index 6479c08cf8cc93a96cbe37a694253872f8a923a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.10056653420130411 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201303_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201303_M_GLOBAL.out deleted file mode 100644 index 8013663d263a6cb2b54c86177bf4d47c36a960df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.11627869208653768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201304_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201304_D_GLOBAL.out deleted file mode 100644 index 18d6b80fd985f0265be82b5aaef73369499b35ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.09917883475621542 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201304_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201304_H_GLOBAL.out deleted file mode 100644 index 1dca2724ed0610f1734cfee42d717215cef949d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.1034213662147522 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201304_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201304_M_GLOBAL.out deleted file mode 100644 index e2b11edaae670d29fa47defad5da72741fd50c63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.1096657951672872 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201305_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201305_D_GLOBAL.out deleted file mode 100644 index e751b443b87aa60fe4f4f2de948b5aa524db4623..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.11820190747578939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201305_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201305_H_GLOBAL.out deleted file mode 100644 index 2fdd3da78b2e72b3547ccb851373936747318600..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.0958183248837789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201305_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201305_M_GLOBAL.out deleted file mode 100644 index 333cf8b08de559222bf4499aaad59d8c2d88bf67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.10642773310343424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201306_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201306_D_GLOBAL.out deleted file mode 100644 index 13fe4ae17a6f6f6ec5df2460f40ec9bdc4bb901a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.09965102672576905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201306_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201306_H_GLOBAL.out deleted file mode 100644 index 0d97e7031130b1fd0b0f6993e816be841569735b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.09745482603708903 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201306_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201306_M_GLOBAL.out deleted file mode 100644 index 4886b983fee9f0bad5ef7dc65be38366f0809ebd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.10540441672007243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201307_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201307_D_GLOBAL.out deleted file mode 100644 index 6ee50bb8f6bad5f4c8fa7e42819fd01fede79226..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.10758562088012695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201307_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201307_H_GLOBAL.out deleted file mode 100644 index b406be79179f9893afa227cf6925ead4c8ff5696..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.1040714422861735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201307_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201307_M_GLOBAL.out deleted file mode 100644 index 8c8bb379caf2eb952df505af4ef809e743c8501e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.10636504093805949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201308_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201308_D_GLOBAL.out deleted file mode 100644 index 2ea1483002be89b598fbd32ba668eafb7f35a0af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.10964006980260213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201308_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201308_H_GLOBAL.out deleted file mode 100644 index f213873386aa25bad28791ed17609444890ffde1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.10873357057571412 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201308_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201308_M_GLOBAL.out deleted file mode 100644 index 4de3e7215fc39a69fa5aab6d9033116d71ad8fa9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.10906205972035726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201309_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201309_D_GLOBAL.out deleted file mode 100644 index d0b10fdeebb68e1377fc8db32f828c376b191fc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.1193489670753479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201309_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201309_H_GLOBAL.out deleted file mode 100644 index f4f8326b5bba2e2d973789417beedafd492e7643..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.10472583770751953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201309_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201309_M_GLOBAL.out deleted file mode 100644 index f2e048f2693b776bdfc12eafdc14a7ca1d6ce0b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.11324325799942017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201310_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201310_D_GLOBAL.out deleted file mode 100644 index e34ba869bfb94aa4abcb1ae6b5368950b6128d8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.1049441417058309 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201310_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201310_H_GLOBAL.out deleted file mode 100644 index 90d6fac459921b8654d5d2b453d5a702a82d0bb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.1114056428273519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201310_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201310_M_GLOBAL.out deleted file mode 100644 index a01ce94035ec6d8b862a24565d799c0aa5636fdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.10312381585439047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201311_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201311_D_GLOBAL.out deleted file mode 100644 index b6668b1d80f472930e2797a9d7da4dc2fc3fc7c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.13502786159515381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201311_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201311_H_GLOBAL.out deleted file mode 100644 index 7f8ef0917216f25df5fea815c5ebb965f4cc568f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.10705486138661703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201311_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201311_M_GLOBAL.out deleted file mode 100644 index 70eb87f71fe7c4a4d03ac82a1919aec8191ac34e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.09936595757802327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201312_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201312_D_GLOBAL.out deleted file mode 100644 index d49f72832754e55b2e07001c5628e8bc12bc9370..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.1092640995979309 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201312_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201312_H_GLOBAL.out deleted file mode 100644 index 2bb08190ae5d40e0cb593229aa89bddcc9f4e095..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.11767745018005371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201312_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201312_M_GLOBAL.out deleted file mode 100644 index f82cd177a749104961832216ea908cd65b9ce58d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.10940975745519002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201401_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201401_D_GLOBAL.out deleted file mode 100644 index a05c2aa3fc1fb8cb3e0df00f13925e0bad87504b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.10232409238815307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201401_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201401_H_GLOBAL.out deleted file mode 100644 index a8fd095c8a4410a884d6f39921acb24e8282ebf4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.10269752343495687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201401_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201401_M_GLOBAL.out deleted file mode 100644 index df72787e538c696c4528a1c6b13cb862e7f5f8d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.10446008443832397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201402_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201402_D_GLOBAL.out deleted file mode 100644 index 0ebe90c668f833ac6c8578f43853be46158c0886..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.09904028177261352 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201402_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201402_H_GLOBAL.out deleted file mode 100644 index 95a807478de5e4793d598cb8fbbc16b0cabe8805..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.10883790254592896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201402_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201402_M_GLOBAL.out deleted file mode 100644 index 846a265da153ce90a1bfd1b7d0ecced5c193a6a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.10663878520329793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201403_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201403_D_GLOBAL.out deleted file mode 100644 index 81b30c6e3671f2efa7cad45876899c709f7a69eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.10955959955851237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201403_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201403_H_GLOBAL.out deleted file mode 100644 index a146a11654b22993feac944107eec29763b392e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.11391777197519938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201403_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201403_M_GLOBAL.out deleted file mode 100644 index a29008ba442d87ea8f2e491e1126449ae11bd5df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.11308765411376953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201404_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201404_D_GLOBAL.out deleted file mode 100644 index 7f4b74e711fcafcd5c013131e44bb38d58e701bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.10835658709208171 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201404_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201404_H_GLOBAL.out deleted file mode 100644 index eaf76ee1cc53cf2ca6f0724e07eab0a5a24d0db2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.11582789421081544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201404_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201404_M_GLOBAL.out deleted file mode 100644 index 6557caf1a5994362992a7c0ccf09e92f23a23a2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.09751462936401367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201405_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201405_D_GLOBAL.out deleted file mode 100644 index cbb4742bc25cd4a396dd8d32335e519c6cd964fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.10366411209106445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201405_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201405_H_GLOBAL.out deleted file mode 100644 index 9e1d806872e626dfbca05b7b43dc01564faece23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.10025178194046021 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201405_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201405_M_GLOBAL.out deleted file mode 100644 index 10950f03af90530b5e490b16e494f83d6bfb21f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.10125691493352254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201406_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201406_D_GLOBAL.out deleted file mode 100644 index 44435087ae7e6fed870a8bbc2f88cf9662ee963b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.11822479963302612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201406_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201406_H_GLOBAL.out deleted file mode 100644 index b0d4cdc566bfd1c32e48efa991eeb567cd0dac34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.11855390866597494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201406_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201406_M_GLOBAL.out deleted file mode 100644 index 264aacb0740f4dc1947833fc1fad1b6d8149e03d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.11433703104654948 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201407_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201407_D_GLOBAL.out deleted file mode 100644 index 775f70b3f3489d7e061235c8f74a2cf8a39c4738..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.10608943700790405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201407_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201407_H_GLOBAL.out deleted file mode 100644 index a48c798c758f31e8b74b6c83cad25aedce095331..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.10187007586161295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201407_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201407_M_GLOBAL.out deleted file mode 100644 index 9f3be561c64f9245ba5306f4bad89184720e7fee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.09213617245356241 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201408_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201408_D_GLOBAL.out deleted file mode 100644 index e9c0e427efcbecc2ecca99cf8afb13aa5d379fcb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.10820082028706869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201408_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201408_H_GLOBAL.out deleted file mode 100644 index 53730c928b1588b75cc973b5440b97ea01ac3718..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.10634013414382934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201408_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201408_M_GLOBAL.out deleted file mode 100644 index 6079d79aba20d7a8072f5b41fb53aebf464c4177..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.11387251218159994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201409_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201409_D_GLOBAL.out deleted file mode 100644 index 57934004a995a3e7ea7741efffdf2ec70743236f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.11777253150939941 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201409_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201409_H_GLOBAL.out deleted file mode 100644 index a3ccc05587decd191ee563e4776adcbf47be219a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.09717049201329549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201409_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201409_M_GLOBAL.out deleted file mode 100644 index 771613ef0ddb8c09e8ddfae2845ffae73d52db11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.11685700416564941 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201410_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201410_D_GLOBAL.out deleted file mode 100644 index 333154cafbc079bce932a7b405ea9d51e2c4b842..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.11636945406595865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201410_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201410_H_GLOBAL.out deleted file mode 100644 index 6a437b2c4a9dbaadc8c96118ceb8e1d5e6948dae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.10778872966766358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201410_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201410_M_GLOBAL.out deleted file mode 100644 index 6b0b1b75ff6720f84dd034b6917520ff57dddf8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.10988741715749105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201411_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201411_D_GLOBAL.out deleted file mode 100644 index 92c3f2a5777122b7653c0b9f58f1d4fdaa1e648f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.11203399896621705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201411_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201411_H_GLOBAL.out deleted file mode 100644 index 5666d0df273df6e93e5262f9adf6b857daab6b47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.12465709845225016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201411_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201411_M_GLOBAL.out deleted file mode 100644 index 5a33e5ed5800b1fc2860eb16982cab9bfb8a1af4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.106668488184611 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201412_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201412_D_GLOBAL.out deleted file mode 100644 index 27aac8d8968a8fdafccd1524c195d4209370498a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.1379545489947001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201412_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201412_H_GLOBAL.out deleted file mode 100644 index 0739b1f67d7cb6c2b835bd2a8ecc5b6e4d96dc86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.14052004019419354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201412_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201412_M_GLOBAL.out deleted file mode 100644 index 859866613395bbc324c9cb15f3eed327e10ae4c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.11418588956197102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201501_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201501_D_GLOBAL.out deleted file mode 100644 index bd31f3e8530ccc2f649e15810cd4fc8a0b95bf0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.13180989027023315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201501_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201501_H_GLOBAL.out deleted file mode 100644 index 951a641e200c450c97c7b73eccff96caabbfc273..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.1342333992322286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201501_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201501_M_GLOBAL.out deleted file mode 100644 index 273e4145ddedc576f84fda700fa179c9506c145e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.12022600571314494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201502_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201502_D_GLOBAL.out deleted file mode 100644 index 9c0d9617aa5c6cc0491d7a36ed52b41c89942424..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.10377763112386068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201502_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201502_H_GLOBAL.out deleted file mode 100644 index f3dc2b42ef851ace68ea5a9e499c5c8335f9840f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.11403178771336873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201502_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201502_M_GLOBAL.out deleted file mode 100644 index 86fb357cef99d2728c8bc9bbac60f2c147400efd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.1186326543490092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201503_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201503_D_GLOBAL.out deleted file mode 100644 index 5e9f788ddd2cdfd813f741fcc6a4ee0d765bd9f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.11495079199473063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201503_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201503_H_GLOBAL.out deleted file mode 100644 index 436942a2b21f7a124b7dd2714c1c21c50a1bf83f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.11199392477671305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201503_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201503_M_GLOBAL.out deleted file mode 100644 index dcb63b641f8c2ad13aee0cc3ae3c6c9081c8916d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.12076376676559449 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201504_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201504_D_GLOBAL.out deleted file mode 100644 index 2befc7bb8d06e3da2e9f2ebf58e89ce0c84c4c37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.10261869033177694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201504_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201504_H_GLOBAL.out deleted file mode 100644 index e3ddc6220813a011017c4ceb56a8812246308126..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.09741193056106567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201504_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201504_M_GLOBAL.out deleted file mode 100644 index 2d6707b6a0a8c9652783a0c7d7107e024b0da308..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.11015228827794393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201505_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201505_D_GLOBAL.out deleted file mode 100644 index 6355900214a291a2da4e26dc2be02cd2e86d174b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.10149961709976196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201505_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201505_H_GLOBAL.out deleted file mode 100644 index c9d9045b0f943030476752c27df5d3890e8a467c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.09644331137339274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201505_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201505_M_GLOBAL.out deleted file mode 100644 index 7e370e2b9451deb609014d2a7b86fae2c643733f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.10728869438171387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201506_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201506_D_GLOBAL.out deleted file mode 100644 index 293947a6471c92fd2ead8ddd41e49d857b584064..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.12096994320551555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201506_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201506_H_GLOBAL.out deleted file mode 100644 index 6f7cdf31b3b9e75725ee2826b32723969c449d26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.09200389782587687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201506_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201506_M_GLOBAL.out deleted file mode 100644 index bef469a5269ef3a93718ad79de7e3df0816a57f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.12082690000534058 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201507_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201507_D_GLOBAL.out deleted file mode 100644 index ad2de2b947865462dceac329054e5fa4c8005da4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.1134229302406311 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201507_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201507_H_GLOBAL.out deleted file mode 100644 index 6bc0bbd15b3cf2ad1a597a5347c5df7c23b01a7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.10278886556625366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201507_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201507_M_GLOBAL.out deleted file mode 100644 index 7de1b055e36f32554cc874b625583216b73b53ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.10513490041097005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201508_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201508_D_GLOBAL.out deleted file mode 100644 index f8eceec8c45f8075b017635506ac961d02a9003b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.11805146932601929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201508_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201508_H_GLOBAL.out deleted file mode 100644 index 44afbab3f51fea09bcd8e59a176964d3cfc01c6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.10022959311803183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201508_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201508_M_GLOBAL.out deleted file mode 100644 index 77c1095d9757d034e68b3b38a5d22b2389f7c9a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.11948725779851278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201509_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201509_D_GLOBAL.out deleted file mode 100644 index ca96726336f90ddadb0757d796779925184304b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.10974321762720744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201509_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201509_H_GLOBAL.out deleted file mode 100644 index a82ee64453836faccdde23b5b824f7a70833301e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.10140719016393025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201509_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201509_M_GLOBAL.out deleted file mode 100644 index fac76ea8de8f1a56adcdae8b45e5cf75ec90bc28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.1084766666094462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201510_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201510_D_GLOBAL.out deleted file mode 100644 index acae68e245d335be34a4dffd624234e90591e248..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.13515255053838093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201510_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201510_H_GLOBAL.out deleted file mode 100644 index 39ed330c27731efacde6e68bbd66b00767b52b70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.11052092313766479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201510_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201510_M_GLOBAL.out deleted file mode 100644 index ea65b1b4cf84d0f9d09078774cc902b63dcad7e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.11274837255477906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201511_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201511_D_GLOBAL.out deleted file mode 100644 index 2bce2a54749e0479f9bc4f567bb3d9fa5a8f9cef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.12968043486277261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201511_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201511_H_GLOBAL.out deleted file mode 100644 index b4b6388218894c2c3deaf75b03fbd511c143682c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.10444873174031576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201511_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201511_M_GLOBAL.out deleted file mode 100644 index 3caa65782e25d05e2b018c1e239fdb3423cb66ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.09885005553563436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201512_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201512_D_GLOBAL.out deleted file mode 100644 index dbd466a6bd2f5af6c7d9239821b7ba6fe16c3fc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.09475771983464559 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201512_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201512_H_GLOBAL.out deleted file mode 100644 index 94e89dd573d99a87614a2192b03d745f91719df3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.12833783229192097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201512_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201512_M_GLOBAL.out deleted file mode 100644 index 46fe36e0e0d6a0e2b57afe13496eb3fb6b14b1ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.10329128503799438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201601_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201601_D_GLOBAL.out deleted file mode 100644 index 19d109b968d26c5705fda7153f891ee93e0c7de8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.09397799968719482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201601_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201601_H_GLOBAL.out deleted file mode 100644 index d0851d44c2043dbc700bf6f2ee7f7cfb09b29eda..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.09287641445795695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201601_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201601_M_GLOBAL.out deleted file mode 100644 index 11f6358ddb7e3bc93a790d72dab252fa8747ea70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.089146622021993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201602_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201602_D_GLOBAL.out deleted file mode 100644 index e59577db15ca5f8501aa45eccfbab6ccb4c65cd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.09246033032735189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201602_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201602_H_GLOBAL.out deleted file mode 100644 index 226f7a79e8077ed3fc5fd1edc0c5e45c56daf6c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.08951438268025716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201602_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201602_M_GLOBAL.out deleted file mode 100644 index c9d25fac78b467b51cb94161f79919b842f1917f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.10727877616882324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201603_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201603_D_GLOBAL.out deleted file mode 100644 index 1b288030cb022a3732535c7986af72229a21f2a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.08651365041732788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201603_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201603_H_GLOBAL.out deleted file mode 100644 index 234537ebd848ee861204d725db1a72e95dd57e14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.08206499814987182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201603_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201603_M_GLOBAL.out deleted file mode 100644 index 8698e3b23e43c76439d0718c5d8f8f4c00f36dd7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.08367640574773152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201604_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201604_D_GLOBAL.out deleted file mode 100644 index 3f3dea237e2ef059adeb71f27f735dd6efabc4a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.09315294027328491 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201604_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201604_H_GLOBAL.out deleted file mode 100644 index 589f2891fd9d18cac75e48044bb11a44d63f3583..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.10011759599049887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201604_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201604_M_GLOBAL.out deleted file mode 100644 index f38acfc00e959f0e0265b750f77bd8f80b1279b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.09523401657740276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201605_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201605_D_GLOBAL.out deleted file mode 100644 index acc6039a5916a14352478c539d89478f8e4715ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.08957021236419678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201605_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201605_H_GLOBAL.out deleted file mode 100644 index feacd0c080fc58fec8527c0db37035f8360c85c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.08269697825113932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201605_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201605_M_GLOBAL.out deleted file mode 100644 index 92acdcbb0fa4cb15e33ab333c49ca3f817b104a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.09520853757858276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201606_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201606_D_GLOBAL.out deleted file mode 100644 index f23b1c4d176b145e3d14a6d799c5db4e3734017b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.09601037899653117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201606_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201606_H_GLOBAL.out deleted file mode 100644 index 106817117ec6e4bfb979e64b57d922d11e830065..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.09207225243250529 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201606_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201606_M_GLOBAL.out deleted file mode 100644 index 518eb3718873b5a336dfb7d61d79eaca2ec87a18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.08765981197357178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201607_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201607_D_GLOBAL.out deleted file mode 100644 index ca6357c8b7077d47f71b3813837f21f75a6ec727..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.08701723019282023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201607_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201607_H_GLOBAL.out deleted file mode 100644 index f0c7b112c9a718d21712bd20f46e9369da53c155..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.10417523384094238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201607_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201607_M_GLOBAL.out deleted file mode 100644 index f0c37bd63e04d20c7b43426f6418fa3c5a51e569..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.0903064489364624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201608_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201608_D_GLOBAL.out deleted file mode 100644 index bbd0205adf46589dff8e0dd53c4404b3f7f5c891..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.09256199995676677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201608_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201608_H_GLOBAL.out deleted file mode 100644 index c664f947be177b1f45fd7a75c83a0cd42b1f32c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.10002187887827556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201608_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201608_M_GLOBAL.out deleted file mode 100644 index 91574618389b8fd0e9860777b6ce4bb009b0d551..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.09524852832158406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201609_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201609_D_GLOBAL.out deleted file mode 100644 index c472051222d9d07692e2a26a2612ffe45fb4fef4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.09292157491048177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201609_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201609_H_GLOBAL.out deleted file mode 100644 index 93c9e2e08b13893fdd1b7aac7886bdc9e92e2d37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.10447758038838705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201609_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201609_M_GLOBAL.out deleted file mode 100644 index 91fe966859a390b182a415809c3cc93fbee60943..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.10252760251363119 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201610_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201610_D_GLOBAL.out deleted file mode 100644 index 05b5d0b0cc78e3cd9325bb0ce0dfbc2c8aff841a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.08918083508809407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201610_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201610_H_GLOBAL.out deleted file mode 100644 index a9b0980e09e1cc0dcd50adf66399dd09d5d9ce78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.09330807129542033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201610_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201610_M_GLOBAL.out deleted file mode 100644 index f741bb94efd330800538e4d58f3da76b04246494..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.11197023391723633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201611_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201611_D_GLOBAL.out deleted file mode 100644 index 4a750a284618f812558aec2f5d5278625bc95f6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.08313594659169515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201611_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201611_H_GLOBAL.out deleted file mode 100644 index 29b331ab53da79fe1be56ddfc27f58165e7af44e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.09544220368067423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201611_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201611_M_GLOBAL.out deleted file mode 100644 index 931bbc333533bf0cd13d40081a62714d8919aacf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.08183431625366211 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201612_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201612_D_GLOBAL.out deleted file mode 100644 index 107179ed61fba9f137070d8d5fe178d72cf8be0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.09694194396336873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201612_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201612_H_GLOBAL.out deleted file mode 100644 index 2c899e0dbab64ca7edc7dfd074f5ea4ab8bc5ecd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.08669214646021525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201612_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201612_M_GLOBAL.out deleted file mode 100644 index c8b7f31971989cfc60624348a34047eae3c8119e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.09714317321777344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201701_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201701_D_GLOBAL.out deleted file mode 100644 index 6de6c0e59a0f07a7ad49e4f167e4d3e112128283..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.09504550298055013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201701_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201701_H_GLOBAL.out deleted file mode 100644 index b27bcac36218a76ab47de48b287ccf1fee2d30bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.07597759167353312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201701_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201701_M_GLOBAL.out deleted file mode 100644 index 75b30980c747c9a55c7f6b45c5998e99c77988d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.09848517179489136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201702_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201702_D_GLOBAL.out deleted file mode 100644 index 29a9a143935acec4f2c76a9600f10f0d6390e819..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.09188314278920491 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201702_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201702_H_GLOBAL.out deleted file mode 100644 index 4fb0a31a1edb96a1f6169c61039d60bd1ab3e817..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.09540298382441202 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201702_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201702_M_GLOBAL.out deleted file mode 100644 index 9351fe581d5937ed48405359ddaf60d3f077fc26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.09402129650115967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201703_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201703_D_GLOBAL.out deleted file mode 100644 index 638d6013f557e8676338764cf304ffbc9bcdd07c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.09783754348754883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201703_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201703_H_GLOBAL.out deleted file mode 100644 index 1f9582d6daf7aacbb238394112ff89cfa3c51225..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.0904698371887207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201703_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201703_M_GLOBAL.out deleted file mode 100644 index 63c23e3d31f62d1ca2213dc878c723805b82efc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.10964764356613159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201704_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201704_D_GLOBAL.out deleted file mode 100644 index 50f41b43c890add271471cf375485e06fac34dd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.09416288137435913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201704_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201704_H_GLOBAL.out deleted file mode 100644 index 8bd804d7b7d7717645d506a14bc3c99f848d3cae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.08222348690032959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201704_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201704_M_GLOBAL.out deleted file mode 100644 index bc26dd841dcefd7578bd21ccf865b66e2ce21ed4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.09506792624791463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201705_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201705_D_GLOBAL.out deleted file mode 100644 index 58c588d7ca775ffc68b5e1c868965f9c7fc74c3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.09424609740575154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201705_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201705_H_GLOBAL.out deleted file mode 100644 index 9c10e7199a7fe975a3098f1c67631f4952566e2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.08180150190989176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201705_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201705_M_GLOBAL.out deleted file mode 100644 index ea449bc859efdd4848bb3a009d9a0ae0f53664fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.08890896638234456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201706_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201706_D_GLOBAL.out deleted file mode 100644 index 5bd23df5efaea608f0ba01900bacbbee55fedbdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.0982741912206014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201706_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201706_H_GLOBAL.out deleted file mode 100644 index 08f224a08b2d8d63e128725bd8ddc2527145f0ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.09343215227127075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201706_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201706_M_GLOBAL.out deleted file mode 100644 index f1863ff16f69c4ab3b14611605f45c22a13e7dfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.11469649076461792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201707_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201707_D_GLOBAL.out deleted file mode 100644 index 5356783619df8fa5bf84caa212ed06e0e3ae72b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.08041366736094156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201707_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201707_H_GLOBAL.out deleted file mode 100644 index ce831a0d9771ac341a0018a25f028025275d716e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.1065442442893982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201707_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201707_M_GLOBAL.out deleted file mode 100644 index fc6494513ef0152f88ef02ff38237f2a0d6fa463..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.0929604411125183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201708_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201708_D_GLOBAL.out deleted file mode 100644 index 1574936ed9d74d5a87dd4f39fda17744928df81f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.09665375153223674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201708_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201708_H_GLOBAL.out deleted file mode 100644 index b02cb21e420ed9a8b6c87842c79ffc98ed52b4e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.08989003896713257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201708_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201708_M_GLOBAL.out deleted file mode 100644 index e8b1c7a77debc4e61db010b2db7863569f5d6ba9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.09014885822931926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201709_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201709_D_GLOBAL.out deleted file mode 100644 index 8c28edcf35af73ec52905cd5af004c5cfbf30977..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.07689327398935954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201709_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201709_H_GLOBAL.out deleted file mode 100644 index 0be000570c8135c4f8ea2fcc0790d932a99876f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.07967809041341146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201709_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201709_M_GLOBAL.out deleted file mode 100644 index 6815ff7c9df0ed733b1308ae18f3db47f449e02b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.08851210276285808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201710_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201710_D_GLOBAL.out deleted file mode 100644 index ba1d1d502ac81ea9e2b16f0f27e5a99973ebd76c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.09385310808817546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201710_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201710_H_GLOBAL.out deleted file mode 100644 index 50b17c80f256c10efd24c9aed1dbc210a1d35688..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.10717471043268839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201710_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201710_M_GLOBAL.out deleted file mode 100644 index f6838c8fba88a6675dbe7ea81e9a912f3a1ccd74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.09960684378941854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201711_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201711_D_GLOBAL.out deleted file mode 100644 index 9f3d638fe78222b31caaf0b8d8d4c3eba367d8c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.0906928579012553 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201711_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201711_H_GLOBAL.out deleted file mode 100644 index 776f1b03381841847ed0935b9329f06c2acfaa8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.08867197434107463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201711_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201711_M_GLOBAL.out deleted file mode 100644 index ee6bfeb59a0cfd94e3b567c526c0a5c3f8c234cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.10464983383814494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201712_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201712_D_GLOBAL.out deleted file mode 100644 index e3b78b1fe55000dfc54285f2a4420947894d3321..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.10268770456314087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201712_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201712_H_GLOBAL.out deleted file mode 100644 index 741a47a095b0de91a1382e34a4f3c82b39a3f9f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.1088543693224589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201712_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201712_M_GLOBAL.out deleted file mode 100644 index d0db359b61f309da4984f99094962d4569549a9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.10049250920613607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index 922b2b8c1977061bee840e85340c86faa6843f60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.11801899671554565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index df0a131acc5a895c795e25047b6e1f84805f0fc1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.10942478577295939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index fd414e9db291b8feb8103a47f4920ec34dc45334..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.12393749157587687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index 62d8cb8aae56c1d884fef96ffa2d1ec4fdc9ad1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.1325052777926127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index 88051dbb0623e37feb5d2179e8edc676f74abd8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.11604153315226237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index a373df34a376bb31adb997c21e7876ef78d3365b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.12320625384648641 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index b275ceee086d60527d4bbd23e0e27d92c232040f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.12254786094029745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index 7bc8129d2eecc0a4343ec456c8dce6d346dd3e43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.11386617024739583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index dc57019f55d103c0484e724a1715f70fa024c719..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.12601919571558634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index e92a7024ab45ce2c9349fb19ffc74f89686183df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.1247660199801127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index 5de2ed56d02116e00a04e082e4c30ba280dc645f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.11532280445098878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index 65b0648c43cd0cac2be31415a23935767fd1b068..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.12122368812561035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index 00cf085b85d18ba3b455dfdcc5edddc6abe109cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.12345406611760458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index 5bcf909ed820b604c09b9f7d35afcdda3daa848a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.11656237443288167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index b27fc9f7fbe10828751072d8767d49c3e8f405c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.11994889577229818 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index 28816fb1b73c58e2a60243982031a4d9fb8f2e68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.1217480222384135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index 38d0fbcd8c3b112daaf820069c5caddaf53f2fc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.109908394018809 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index 7711f70334d8016ad1248de381b7fc004e708da9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.10628031889597575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202006_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202006_D_GLOBAL.out deleted file mode 100644 index 4592528e93984dc77392a43d33b9abc2c9e1090c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.12284376621246337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202006_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202006_H_GLOBAL.out deleted file mode 100644 index 807370bec2d3d4f25e10382ddd7c2087bd22d94a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.08578637838363648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202006_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202006_M_GLOBAL.out deleted file mode 100644 index 536379d369a78561379f08aa25bc8f9fbe8b6a8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.10666887362798055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202007_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202007_D_GLOBAL.out deleted file mode 100644 index 6acb47217c4eec8f4d264d709ba8b953653c68fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.1000454306602478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202007_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202007_H_GLOBAL.out deleted file mode 100644 index 5c9a353e6e4a626730aa13154a08e4e1adb7d6ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.08091042836507162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202007_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202007_M_GLOBAL.out deleted file mode 100644 index 0eff7f0dc7f1b9796ee887d1a6dc3c966bf0de75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.09764416615168253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202008_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202008_D_GLOBAL.out deleted file mode 100644 index 07bd7f31b41325b09126ccde4e4e99da8b6ec962..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.08465027411778768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202008_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202008_H_GLOBAL.out deleted file mode 100644 index 58731a685c4dfd53d98d8767a6d06339a34d7c10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.09112372795740763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202008_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202008_M_GLOBAL.out deleted file mode 100644 index 150737c519eacd0f707630b0b05d95d23b0461d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.10707496404647827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202009_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202009_D_GLOBAL.out deleted file mode 100644 index 3bff292dd6611d214c6752a8c5570c5d8b9918dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.08003457387288411 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202009_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202009_H_GLOBAL.out deleted file mode 100644 index 1b4386f8b163ff905e31a3f53b369dd42a63a14a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.10069494644800822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202009_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202009_M_GLOBAL.out deleted file mode 100644 index 00ea2a3247d8f8459088b3d00e3d5c4980686ee7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.09831159909566244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202010_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202010_D_GLOBAL.out deleted file mode 100644 index 9ded31ef9b70211c8077ed91672fb6cd75610278..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.1014805515607198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202010_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202010_H_GLOBAL.out deleted file mode 100644 index 72168698eb74df364faa9616e7e8a256d8b39f82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.0965299924214681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202010_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202010_M_GLOBAL.out deleted file mode 100644 index 7b29fe0c2434a7dac4737b1962aa5d3e128642b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.10270591576894124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202011_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202011_D_GLOBAL.out deleted file mode 100644 index 5d99f26d1c111758e39074cd92c0ef94109cbea0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.11911734739939371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202011_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202011_H_GLOBAL.out deleted file mode 100644 index 19b74644a1bfcbd91259cfe1f1bfd6cac0344de0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.11318315267562866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202011_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202011_M_GLOBAL.out deleted file mode 100644 index b4846453b8970e8eddef14ebc7ca17c4229d1aec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.10018397172292073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202012_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202012_D_GLOBAL.out deleted file mode 100644 index 281385d1089071e7eb3b7dcd318639f2973bac29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.09825006723403931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202012_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202012_H_GLOBAL.out deleted file mode 100644 index 7f405e033f13d0f04eee6f12e7bb262df7b7ba1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.10036972363789877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202012_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202012_M_GLOBAL.out deleted file mode 100644 index 50d9363d6b8b45ba69835d73dcffa4dcfbc37313..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.09752294222513834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202101_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202101_D_GLOBAL.out deleted file mode 100644 index 5b442698e579016b5bd20c0d7be31214d9cc320d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.04818939765294393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202101_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202101_H_GLOBAL.out deleted file mode 100644 index 27954d80f7b5b80112f2d9e45498d00672978e54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.0368691881497701 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202101_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202101_M_GLOBAL.out deleted file mode 100644 index 5df27fd5645b4ddb91caa1e467dad5b1961455dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.0484371542930603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202102_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202102_D_GLOBAL.out deleted file mode 100644 index e0bf51ceba57e9f1759a9d8d5e1d327607aff3a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.0358468492825826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202102_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202102_H_GLOBAL.out deleted file mode 100644 index d89f65dbb730be00ca149d6ad707da1566097300..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.046038289864857994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202102_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202102_M_GLOBAL.out deleted file mode 100644 index 0f9d2573236ebde58c9e7bd2b4ce030292f4b43e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.03751554886500041 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202103_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202103_D_GLOBAL.out deleted file mode 100644 index 07aa240d2d84c4080f7f7e521a5c87020851e0d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.03070329427719116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202103_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202103_H_GLOBAL.out deleted file mode 100644 index c03ee2794c3b0a4c06618c596339d73546ffb729..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.037204452355702716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202103_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202103_M_GLOBAL.out deleted file mode 100644 index 601f3d4d6aac3f2e8917e6ebc2db8b5bda7e29fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.042689180374145506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202104_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202104_D_GLOBAL.out deleted file mode 100644 index 51ad386135878dd2fe872a7b41df411644614ca1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.04220298131306966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202104_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202104_H_GLOBAL.out deleted file mode 100644 index 0a70c1446cf8918a0354231043d5f45caf7d6e3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.037849024931589766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202104_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202104_M_GLOBAL.out deleted file mode 100644 index f822198d4cfe5fb2073a34711ebe0725b73af22c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.03354130585988362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202105_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202105_D_GLOBAL.out deleted file mode 100644 index 3e2854245654e4f01c99bbaf944fd4247233de12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.04470399220784505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202105_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202105_H_GLOBAL.out deleted file mode 100644 index 20852d394074c499a2097bb80f99968c301f2992..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.04556019306182861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202105_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202105_M_GLOBAL.out deleted file mode 100644 index fa3f12774ec159daed6305a470afc184cd1e913b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.043544856707255046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202106_D_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202106_D_GLOBAL.out deleted file mode 100644 index ce6ea0bf9c8c6cff110f1c20c4485bb28cb6b2dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.02915109395980835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202106_H_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202106_H_GLOBAL.out deleted file mode 100644 index 6ea4f1e960bef7940db79c3f607ad0150473ce77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.05288474162419637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_NO2/T2/0_202106_M_GLOBAL.out b/run/stage_logs/NAPMD_NO2/T2/0_202106_M_GLOBAL.out deleted file mode 100644 index 04ad66394c740f17671b4227606b44a5a116a9bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_NO2/T2/0_202106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.02292508284250895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1979.out b/run/stage_logs/NAPMD_O3/S1/0_1979.out deleted file mode 100644 index 0a72624223472639accc88a3d5abd5a802e75646..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1979.out +++ /dev/null @@ -1,3 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1979/O3_1979.csv -325 -- PARSING RAW DATA -0.009708281358083088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1980.out b/run/stage_logs/NAPMD_O3/S1/0_1980.out deleted file mode 100644 index a6d2928c6d30e3cc25de6cff24bcf32d58f8ef86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1980.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1980/O3_1980.csv -325 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.00884246031443278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1981.out b/run/stage_logs/NAPMD_O3/S1/0_1981.out deleted file mode 100644 index fd217f6cf16d48caf54dba5f88d783621802f960..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1981.out +++ /dev/null @@ -1,5 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1981/O3_1981.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.013231360912322998 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1982.out b/run/stage_logs/NAPMD_O3/S1/0_1982.out deleted file mode 100644 index ab0edf6c6c0ce1c1fe72663293b848b88b73be97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1982.out +++ /dev/null @@ -1,6 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1982/O3_1982.csv -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.02772840658823649 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1983.out b/run/stage_logs/NAPMD_O3/S1/0_1983.out deleted file mode 100644 index 632ad4f5e38a5d255b12a33ba8395dca2f90d20b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1983.out +++ /dev/null @@ -1,8 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1983/O3_1983.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.03387771447499593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1984.out b/run/stage_logs/NAPMD_O3/S1/0_1984.out deleted file mode 100644 index 7f3cdfb0d9b583b8a8da652c6f1a6b04df87bc8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1984.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1984/O3_1984.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -347 -- PARSING RAW DATA -0.03243423700332641 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1985.out b/run/stage_logs/NAPMD_O3/S1/0_1985.out deleted file mode 100644 index 19bd6fac38933c15d02dab79ea3dba44e6d07918..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1985.out +++ /dev/null @@ -1,8 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1985/O3_1985.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.03426658312479655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1986.out b/run/stage_logs/NAPMD_O3/S1/0_1986.out deleted file mode 100644 index dd718274b8d48ff40be4a76f659d37d6007508f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1986.out +++ /dev/null @@ -1,8 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1986/O3_1986.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.06131482124328613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1987.out b/run/stage_logs/NAPMD_O3/S1/0_1987.out deleted file mode 100644 index 8b9fcdb770783547618e60d8bb33c8330d063363..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1987.out +++ /dev/null @@ -1,8 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1987/O3_1987.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.039270142714182533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1988.out b/run/stage_logs/NAPMD_O3/S1/0_1988.out deleted file mode 100644 index b974c04c98140f3732aab9fc03dd9d37f4352188..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1988.out +++ /dev/null @@ -1,8 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1988/O3_1988.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -0.054440546035766604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1989.out b/run/stage_logs/NAPMD_O3/S1/0_1989.out deleted file mode 100644 index 36462e18985330f6b483553e681d6329bbf399f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1989.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1989/O3_1989.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -348 -- PARSING RAW DATA -0.058775826295216875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1990.out b/run/stage_logs/NAPMD_O3/S1/0_1990.out deleted file mode 100644 index a7e6194d79db0aa249f6d9adb0a0dc5f2aaa49c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1990.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1990/O3_1990.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.040305225054423015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1991.out b/run/stage_logs/NAPMD_O3/S1/0_1991.out deleted file mode 100644 index dbef0013b26bc8bdf03e2f4b5137630e8af75195..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1991.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1991/O3_1991.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.06888941923777263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1992.out b/run/stage_logs/NAPMD_O3/S1/0_1992.out deleted file mode 100644 index 783b25eeaaac158a6af4c9ebc25b964f916aea68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1992.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1992/O3_1992.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.05146892865498861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1993.out b/run/stage_logs/NAPMD_O3/S1/0_1993.out deleted file mode 100644 index 3a41ab0ff658cce7b749b0ce6292e72d916fe8f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1993.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1993/O3_1993.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.04029707113901774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1994.out b/run/stage_logs/NAPMD_O3/S1/0_1994.out deleted file mode 100644 index 8e5de34882d285f3f9f069ef4f211675ab38a72c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1994.out +++ /dev/null @@ -1,30 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1994/O3_1994.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -40 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.4479104518890381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1995.out b/run/stage_logs/NAPMD_O3/S1/0_1995.out deleted file mode 100644 index 0b480b3f862d6b0fbe36b37278bbd6af89f05a27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1995.out +++ /dev/null @@ -1,31 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1995/O3_1995.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -40 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.4125688473383586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1996.out b/run/stage_logs/NAPMD_O3/S1/0_1996.out deleted file mode 100644 index 34d6461d156f5cf84e6151966a7c5e138bf74f6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1996.out +++ /dev/null @@ -1,29 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1996/O3_1996.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.37492581605911257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1997.out b/run/stage_logs/NAPMD_O3/S1/0_1997.out deleted file mode 100644 index c8fad33cb4c2284b60a234c39427c980fa7f7b82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1997.out +++ /dev/null @@ -1,30 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1997/O3_1997.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.4519114454587301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1998.out b/run/stage_logs/NAPMD_O3/S1/0_1998.out deleted file mode 100644 index 00feacefb564bd88780b21c269e388794117dfb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1998.out +++ /dev/null @@ -1,32 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1998/O3_1998.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -60 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.458110233147939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_1999.out b/run/stage_logs/NAPMD_O3/S1/0_1999.out deleted file mode 100644 index 03ea67aa54cda55fd605f0eacf82f3103c415834..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_1999.out +++ /dev/null @@ -1,32 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1999/O3_1999.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -60 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.46911631027857464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2000.out b/run/stage_logs/NAPMD_O3/S1/0_2000.out deleted file mode 100644 index d375a8c0f3a9cf8817910ec1a18068c16a80a0fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2000.out +++ /dev/null @@ -1,34 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2000/O3_2000.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.5029661973317464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2001.out b/run/stage_logs/NAPMD_O3/S1/0_2001.out deleted file mode 100644 index 7cc8234e3d4136e32061103f1d529e375917623c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2001.out +++ /dev/null @@ -1,34 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2001/O3_2001.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.4937107443809509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2002.out b/run/stage_logs/NAPMD_O3/S1/0_2002.out deleted file mode 100644 index 93a3f783f0ee25c10d480e06c33b79c7334942d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2002.out +++ /dev/null @@ -1,51 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2002/O3_2002.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -343 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.6639096180597941 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2003.out b/run/stage_logs/NAPMD_O3/S1/0_2003.out deleted file mode 100644 index 915cedf6025caab8634d2a9f1e90d5def8f160af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2003.out +++ /dev/null @@ -1,49 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2003/O3_2003.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -27 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.6764989892641703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2004.out b/run/stage_logs/NAPMD_O3/S1/0_2004.out deleted file mode 100644 index b9b1151f195b4497a1e9a0d007e095fe5a6c68ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2004.out +++ /dev/null @@ -1,49 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2004/O3_2004.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.6599532643953959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2005.out b/run/stage_logs/NAPMD_O3/S1/0_2005.out deleted file mode 100644 index dcdedb5261023976176a4bf8c53f93864bdb11b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2005.out +++ /dev/null @@ -1,47 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2005/O3_2005.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -8 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.6486028909683228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2006.out b/run/stage_logs/NAPMD_O3/S1/0_2006.out deleted file mode 100644 index 96b66ba7d8ad6aece93533500a1c433f1dbd42a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2006.out +++ /dev/null @@ -1,47 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2006/O3_2006.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -344 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.6376321037610372 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2007.out b/run/stage_logs/NAPMD_O3/S1/0_2007.out deleted file mode 100644 index 0d2d74190d1405b8eebd6d19515caf2164857671..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2007.out +++ /dev/null @@ -1,47 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2007/O3_2007.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -344 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.6432053367296855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2008.out b/run/stage_logs/NAPMD_O3/S1/0_2008.out deleted file mode 100644 index 1d5e981e1c63ac059eccfeac1a470627f1d5b5ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2008.out +++ /dev/null @@ -1,46 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2008/O3_2008.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.6278571565945943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2009.out b/run/stage_logs/NAPMD_O3/S1/0_2009.out deleted file mode 100644 index 1e2ae466eceb2ca82d4cadcd25f520bec967dcb4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2009.out +++ /dev/null @@ -1,46 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2009/O3_2009.csv -1 -- PARSING RAW DATA -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.6264368772506714 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2010.out b/run/stage_logs/NAPMD_O3/S1/0_2010.out deleted file mode 100644 index 5aa60cf67d124f4dfc2c9c3f7ffbb7acdd83c1d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2010.out +++ /dev/null @@ -1,59 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2010/O3_2010.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -68 -- PARSING RAW DATA -76 -- PARSING RAW DATA -77 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.7110968708992005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2011.out b/run/stage_logs/NAPMD_O3/S1/0_2011.out deleted file mode 100644 index e7050876cff53f73d3fcfe82f0368e9c1bca40a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2011.out +++ /dev/null @@ -1,60 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2011/O3_2011.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -76 -- PARSING RAW DATA -77 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.7444648543993632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2012.out b/run/stage_logs/NAPMD_O3/S1/0_2012.out deleted file mode 100644 index a76d8ed9733bb420bf1cd9aa5fd4c700b1d24f7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2012.out +++ /dev/null @@ -1,64 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2012/O3_2012.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -76 -- PARSING RAW DATA -77 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.7137632489204406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2013.out b/run/stage_logs/NAPMD_O3/S1/0_2013.out deleted file mode 100644 index 4922fb2e6642348a6bfbf710b4e72682f0c17d28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2013.out +++ /dev/null @@ -1,60 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2013/O3_2013.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.7210029244422913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2014.out b/run/stage_logs/NAPMD_O3/S1/0_2014.out deleted file mode 100644 index c44ac9727d4061f0152f66f75b03c3c59e7e0240..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2014.out +++ /dev/null @@ -1,63 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2014/O3_2014.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.7367782870928447 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2015.out b/run/stage_logs/NAPMD_O3/S1/0_2015.out deleted file mode 100644 index a0db7e15f0828ab2205701d3d4ca30ddad514c04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2015.out +++ /dev/null @@ -1,65 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2015/O3_2015.csv -1 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -337 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -98 -- PARSING RAW DATA -0.7753349463144938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2016.out b/run/stage_logs/NAPMD_O3/S1/0_2016.out deleted file mode 100644 index bdf387a90e604ed7b257352e905e81cc7398c596..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2016.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2016/O3_2016.csv -0.17314942677815756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2017.out b/run/stage_logs/NAPMD_O3/S1/0_2017.out deleted file mode 100644 index 2abd9b3ea2fc05644a7b4dbd4010c54d60f1f670..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2017.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2017/O3_2017.csv -0.14506976207097372 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2018.out b/run/stage_logs/NAPMD_O3/S1/0_2018.out deleted file mode 100644 index 46d761420c8f670ddaa2c8c210bd9117afd8f44c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2018.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2018/O3_2018.csv -0.1530276656150818 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2019.out b/run/stage_logs/NAPMD_O3/S1/0_2019.out deleted file mode 100644 index 6abdd2fff7dcd466866c4cc5148f8a5bddea3688..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2019.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/O3_2019.csv -0.17211745580037435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2020.out b/run/stage_logs/NAPMD_O3/S1/0_2020.out deleted file mode 100644 index e6f583a4ca517c579a2615bda99c4bda3efc256a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2020.out +++ /dev/null @@ -1,82 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/O3_2020.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -100 -- PARSING RAW DATA -101 -- PARSING RAW DATA -102 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -24 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -272 -- PARSING RAW DATA -274 -- PARSING RAW DATA -275 -- PARSING RAW DATA -278 -- PARSING RAW DATA -28 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -333 -- PARSING RAW DATA -335 -- PARSING RAW DATA -337 -- PARSING RAW DATA -338 -- PARSING RAW DATA -340 -- PARSING RAW DATA -35 -- PARSING RAW DATA -352 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -365 -- PARSING RAW DATA -366 -- PARSING RAW DATA -368 -- PARSING RAW DATA -369 -- PARSING RAW DATA -370 -- PARSING RAW DATA -372 -- PARSING RAW DATA -373 -- PARSING RAW DATA -374 -- PARSING RAW DATA -375 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -530 -- PARSING RAW DATA -534 -- PARSING RAW DATA -540 -- PARSING RAW DATA -547 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -73 -- PARSING RAW DATA -83 -- PARSING RAW DATA -86 -- PARSING RAW DATA -87 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -98 -- PARSING RAW DATA -0.810189954439799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S1/0_2021.out b/run/stage_logs/NAPMD_O3/S1/0_2021.out deleted file mode 100644 index 71b661a07191c7a6539325676a70c7c947280d63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S1/0_2021.out +++ /dev/null @@ -1,9 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2021/O3_2021.csv -352 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -359 -- PARSING RAW DATA -360 -- PARSING RAW DATA -361 -- PARSING RAW DATA -363 -- PARSING RAW DATA -0.04978838364283244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_100_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_100_UVP.out deleted file mode 100644 index b32c13726be89fd1685816bb008536255e2677ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_100_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -100_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016945815086364745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_101_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_101_UVP.out deleted file mode 100644 index 31db4dd27f4b17b9c2d70c59b5aba89d9d4878e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_101_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -101_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01712852716445923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_102_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_102_UVP.out deleted file mode 100644 index 6c4b5bcb7b5f4a84d8885ff794e4dd5a4e37742e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_102_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -102_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.015036209424336752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_104_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_104_UVP.out deleted file mode 100644 index 88349a4b79810671df362c06a2cc15a2acec6b50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_104_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -104_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01799885431925456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_105_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_105_UVP.out deleted file mode 100644 index 8dc16a21dc1095a817a7b7947c9e2e2198046f3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_105_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -105_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011501661936442057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_107_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_107_UVP.out deleted file mode 100644 index 4bb6c1663fed96ffafaf19aa65094d74e7ab9171..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_107_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -107_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01648820241292318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_10_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_10_UVP.out deleted file mode 100644 index 9fc99e3952123682d5f292ef5c064d78cffbdecc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_10_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -10_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0013332486152648926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_110_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_110_UVP.out deleted file mode 100644 index 8aa04d3b69fc416c3d8ee78878bdebee92bb07af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_110_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -110_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01575261354446411 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_11_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_11_UVP.out deleted file mode 100644 index e50f6b3b60f976a73150eeba960a1e9a808637a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_11_UVP.out +++ /dev/null @@ -1,29 +0,0 @@ -11_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-01-17 13:00:00 1996-12-31 12:00:00 1049291340 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1049291340_1049793840.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/11_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16777033011118572 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_12_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_12_UVP.out deleted file mode 100644 index cc2dad8ecb673b6b5b1f82e5de74ea2db698a7e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_12_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -12_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.001043713092803955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_13_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_13_UVP.out deleted file mode 100644 index 3eb45f9b619e1015396d2549b93d27bb0db90826..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_13_UVP.out +++ /dev/null @@ -1,31 +0,0 @@ -13_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1049793840_1050319440.npz'] -1998-01-20 16:00:00 1998-12-31 12:00:00 1050348480 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1050348480_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-29 15:00:00 1051897680 1052420580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1051897680_1052420580.npz'] -2002-01-02 16:00:00 2002-12-31 12:00:00 1052426400 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1052426400_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-28 11:00:00 1057682160 1058204820 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1057682160_1058204820.npz'] -2013-01-17 15:00:00 2013-12-31 12:00:00 1058233860 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1058233860_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/13_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16293785174687703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_14_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_14_UVP.out deleted file mode 100644 index 271a1baa611ad8df12c9d8e7ea4616313007afd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_14_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -14_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03078256845474243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_15_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_15_UVP.out deleted file mode 100644 index 17ff7b903033bb1881706e0db0f6fb5238e74eb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_15_UVP.out +++ /dev/null @@ -1,31 +0,0 @@ -15_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1048741200_1049266800.npz'] -1995-12-31 13:00:00 1996-12-31 12:00:00 1049266860 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1049266860_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1052948880_1053474480.npz'] -2003-12-31 14:00:00 2004-12-31 12:00:00 1053474600 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1053474600_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-29 02:00:00 1054527120 1055049240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1054527120_1055049240.npz'] -2007-01-04 03:00:00 2007-12-31 11:00:00 1055057940 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1055057940_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1055057940_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1055057940_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/15_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.17513221502304077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_18_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_18_UVP.out deleted file mode 100644 index 63e61bbf8925ee7105012e76e8c9ffdb3c7dce25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_18_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -18_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011210815111796061 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_19_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_19_UVP.out deleted file mode 100644 index 67ed6098dc5d6dc57a7b2497512b2f6320c16fc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_19_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -19_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013513708114624023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_1_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_1_UVP.out deleted file mode 100644 index 378aa1a30c1c1deb704d0e6b25f8438d9d05803f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_1_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -1_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03972258567810059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_20_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_20_UVP.out deleted file mode 100644 index b24a5b95f4838a40b1207770b4cb376cb014f0f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_20_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -20_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01108146111170451 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_22_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_22_UVP.out deleted file mode 100644 index b1ba98408b4f7d98e36893adc0ce68bbe413ecbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_22_UVP.out +++ /dev/null @@ -1,22 +0,0 @@ -22_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2003-02-05 16:00:00 2003-12-31 12:00:00 1053000960 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1053000960_1053474480.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/22_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.14892719189325967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_23_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_23_UVP.out deleted file mode 100644 index cf3db04221f7b002c31dfa1459b7f5e641c7897e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_23_UVP.out +++ /dev/null @@ -1,31 +0,0 @@ -23_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-29 15:00:00 1049793840 1050316740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1049793840_1050316740.npz'] -1998-01-01 16:00:00 1998-12-31 12:00:00 1050321120 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1050321120_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/23_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16817646423975627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_24_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_24_UVP.out deleted file mode 100644 index ad65fa3e1a8b4e80a794ee5e2c630f967ad85554..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_24_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -24_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002730385462443034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_26_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_26_UVP.out deleted file mode 100644 index 1aef2184d3f44be97a762f5ed47c6278a4cec877..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_26_UVP.out +++ /dev/null @@ -1,31 +0,0 @@ -26_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/26_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.18240378697713217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_270_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_270_UVP.out deleted file mode 100644 index b8308db9dd8893123db13d484be89d88deb3095e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_270_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -270_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02852726380030314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_271_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_271_UVP.out deleted file mode 100644 index f7b027b86fafe297356c62a4ff1f77d2937f8542..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_271_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -271_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.038291935125986734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_272_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_272_UVP.out deleted file mode 100644 index 2572dfe561294d369996af07d153e7b5233c63db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_272_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -272_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.038027620315551756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_274_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_274_UVP.out deleted file mode 100644 index ea1e94f2f90782485f15c84ec1051390e27f2dd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_274_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -274_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.040027983983357746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_275_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_275_UVP.out deleted file mode 100644 index 35ed787f63fb5b946266e98b313421d1b2395ad4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_275_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -275_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04335535367329915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_278_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_278_UVP.out deleted file mode 100644 index 2e6f962f43c27d4f4e5220c145421b8e1e071941..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_278_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -278_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0044997294743855795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_27_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_27_UVP.out deleted file mode 100644 index 5b9ad1a878c61facd21c36139846dad7765dec5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_27_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -27_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0072487473487854006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_28_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_28_UVP.out deleted file mode 100644 index dd67fe3903fc7e42861f24a62cf88012e3d3af04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_28_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -28_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02300848960876465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_29_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_29_UVP.out deleted file mode 100644 index bafa9f70da54b12f6b391abf003ce4680b7d5ab7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_29_UVP.out +++ /dev/null @@ -1,29 +0,0 @@ -29_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-05-23 03:00:00 1994-12-31 12:00:00 1048420980 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1048420980_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 11:00:00 1049266800 1049793780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1049266800_1049793780.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-02-10 18:00:00 1054001520 1054060920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1054001520_1054060920.npz'] -2007-05-31 13:00:00 2007-12-31 11:00:00 1055270220 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1055270220_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1055270220_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/29_UVP_1059260400_1059786000.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.11396382649739584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_2_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_2_UVP.out deleted file mode 100644 index 46056e337e542904f9e14197478d45f5f9c5edab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_2_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -2_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005837833881378174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_30_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_30_UVP.out deleted file mode 100644 index 93338d9b7b20c3729b454d7aa64baaa374e49c9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_30_UVP.out +++ /dev/null @@ -1,31 +0,0 @@ -30_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-30 15:00:00 1051897680 1052422020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1051897680_1052422020.npz'] -2001-12-31 16:00:00 2002-12-31 12:00:00 1052423520 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1052423520_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-28 13:00:00 1058734860 1059256140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1058734860_1059256140.npz'] -2015-01-06 03:00:00 2015-12-31 12:00:00 1059268500 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1059268500_1059786000.npz'] -2020-01-01 23:00:00 2020-12-31 13:00:00 1061891940 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/30_UVP_1061891940_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16394285758336385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_31_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_31_UVP.out deleted file mode 100644 index 81d96fe0d1557a76b549cd95ea8455e710ff1ac7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_31_UVP.out +++ /dev/null @@ -1,18 +0,0 @@ -31_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2004-10-30 12:00:00 2004-12-31 12:00:00 1053912240 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1053912240_1054001520.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-07-23 23:00:00 1057682160 1057978020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1057682160_1057978020.npz'] -2015-08-19 01:00:00 2015-08-19 22:00:00 1059592380 1059593640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/31_UVP_1059592380_1059593640.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.13008222182591755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_324_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_324_UVP.out deleted file mode 100644 index 3a50d231aed4a41f74f91282d2fe56a398a9a001..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_324_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -324_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0363158384958903 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_325_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_325_UVP.out deleted file mode 100644 index 36ebe0444a52932582c2895b979017908dd0a6fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_325_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -325_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06995993852615356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_326_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_326_UVP.out deleted file mode 100644 index c887a3068fb002ae96998681caf5a9331563cb64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_326_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -326_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0608894149462382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_327_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_327_UVP.out deleted file mode 100644 index 2b945e79711b8cbacfccbe028a034871ad90577e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_327_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -327_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06959991455078125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_32_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_32_UVP.out deleted file mode 100644 index 08364e0a6763e34e321e759ea7af146020878266..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_32_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -32_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0029204726219177247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_330_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_330_UVP.out deleted file mode 100644 index 43f9c0ab375fa7f41e59b74e64a367ffeef91f50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_330_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -330_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.061541231473286946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_331_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_331_UVP.out deleted file mode 100644 index 1147d7103844bf15ffdc7e99ff0cecbee5965997..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_331_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -331_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0748589277267456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_332_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_332_UVP.out deleted file mode 100644 index 9b0ae40937b47d064aaa4f9e997bcc5b15854e6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_332_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -332_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04142810901006063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_333_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_333_UVP.out deleted file mode 100644 index 6514b43736303737c6a555029b79f28d90a87719..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_333_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -333_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.035648282368977866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_335_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_335_UVP.out deleted file mode 100644 index 6a052a4e75acb4b009146476ca74ce2ea6e7230a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_335_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -335_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04172311623891194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_337_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_337_UVP.out deleted file mode 100644 index b9b66627c7daeedb5a8d59d5fcaabc97865af245..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_337_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -337_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006546398003896077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_338_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_338_UVP.out deleted file mode 100644 index 8f141318da19574b7e1fd4473111cddd1c20b838..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_338_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -338_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.07894594271977742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_340_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_340_UVP.out deleted file mode 100644 index f3ac3b50206e632a0381b8f5b8923d5988336677..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_340_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -340_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0528925895690918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_342_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_342_UVP.out deleted file mode 100644 index 2e3e61c9b810e27f03f72777f66155862135bd06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_342_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -342_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009379621346791584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_343_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_343_UVP.out deleted file mode 100644 index 4a7a672d5ae02a810e1848deae3bf78a78f32d7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_343_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -343_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0009454170862833659 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_344_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_344_UVP.out deleted file mode 100644 index 5e358391c137a3c31a17f04f101b1eddaa6f5f81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_344_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -344_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0038782993952433268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_347_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_347_UVP.out deleted file mode 100644 index f6187457b26402c65dbae7735f3e8d83b8c7ae8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_347_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -347_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008907600243886312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_348_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_348_UVP.out deleted file mode 100644 index 5c99398769b077dd41fa66a1e28cc487f543168c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_348_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -348_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.001139370600382487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_352_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_352_UVP.out deleted file mode 100644 index a65c5e6865ec031b349d7fab0f59b4f407651420..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_352_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -352_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05669583876927694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_354_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_354_UVP.out deleted file mode 100644 index 5fbe419cebed39b8a2ec7261d2d1386797f5b6f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_354_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -354_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0024016102155049643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_357_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_357_UVP.out deleted file mode 100644 index ed6582ffd082e3276ddbbfebd659be6fc94d41ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_357_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -357_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004479722181955973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_358_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_358_UVP.out deleted file mode 100644 index db2c83e006c3021cc5c77a26adef2ac36cb26266..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_358_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -358_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05674633582433065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_359_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_359_UVP.out deleted file mode 100644 index f173fec766399f766e3733a8a48270132f03b518..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_359_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -359_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.07249147494633992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_35_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_35_UVP.out deleted file mode 100644 index 75038d61adbc2e8674c095392606ca836120900b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_35_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -35_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002131954828898112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_360_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_360_UVP.out deleted file mode 100644 index 859a720d4c9a60e0c7ec2d74d656fb20c64dca21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_360_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -360_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.040172727902730306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_361_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_361_UVP.out deleted file mode 100644 index 691bdee610b002b6675f266598a0642af4ca0419..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_361_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -361_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06197921832402547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_363_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_363_UVP.out deleted file mode 100644 index a294dbd8c75475bb7d9b390f82a7341142d9e9d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_363_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -363_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06270173390706381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_365_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_365_UVP.out deleted file mode 100644 index 78226505d8762adb7ef288a29c35fc953deae96f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_365_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -365_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0014539599418640138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_366_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_366_UVP.out deleted file mode 100644 index 4eede872c6eb00ca00d16a8d5a1a45427b037128..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_366_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -366_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0027596116065979003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_368_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_368_UVP.out deleted file mode 100644 index 29d472096914cace710506339a552804c504e2f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_368_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -368_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0014510234196980795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_369_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_369_UVP.out deleted file mode 100644 index 48b3c82cf810a38bb4e88be535c8a7c9db54cd51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_369_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -369_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0010279377301534018 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_370_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_370_UVP.out deleted file mode 100644 index 202b30a806612573ab0d4c32ed32716ac16efd84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_370_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -370_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002480038007100423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_372_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_372_UVP.out deleted file mode 100644 index d7e48c32cdd983af4b6d75d7cb45493a817064bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_372_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -372_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003435711065928141 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_373_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_373_UVP.out deleted file mode 100644 index 3de16e3a322f5fffdb93a3914790de74d28fa28a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_373_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -373_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0023627877235412598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_374_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_374_UVP.out deleted file mode 100644 index 66e28e43728283846ec9506bedb0222004e43222..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_374_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -374_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0029011885325113933 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_375_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_375_UVP.out deleted file mode 100644 index fdf59cf4857239e17cef3ba9e36a82b2fd654468..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_375_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -375_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00235666831334432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_3_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_3_UVP.out deleted file mode 100644 index bd28efcf48dc59b564603d9e1760643c61f57ee5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_3_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -3_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0467480460802714 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_40_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_40_UVP.out deleted file mode 100644 index 6b4f4ef327f3bfa3be3271d45639d16fd729fce8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_40_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -40_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.053643675645192464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_41_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_41_UVP.out deleted file mode 100644 index 04f60eaee9428d72b11b7a9b20a4409f8d42b3b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_41_UVP.out +++ /dev/null @@ -1,29 +0,0 @@ -41_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-04-10 05:00:00 1996-12-31 12:00:00 1049411820 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1049411820_1049793840.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1049793840_1050319440.npz'] -1997-12-31 13:00:00 1998-12-31 12:00:00 1050319500 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1050319500_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-05-23 15:00:00 1051897680 1052103780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1051897680_1052103780.npz'] -2002-10-17 16:00:00 2002-12-31 12:00:00 1052841120 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1052841120_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/41_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1571895162264506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_42_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_42_UVP.out deleted file mode 100644 index e9afa029f558f64e1d28d7cfe1141c961cb40ccb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_42_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -42_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003310243288675944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_43_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_43_UVP.out deleted file mode 100644 index ef640726f7371af20a7dd174b9e04648f27f4c78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_43_UVP.out +++ /dev/null @@ -1,18 +0,0 @@ -43_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2007-02-25 12:00:00 2007-12-31 11:00:00 1055133360 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1055133360_1055578320.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1055133360_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/43_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1283940354983012 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_44_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_44_UVP.out deleted file mode 100644 index 4398403b8ecb4d7368c486f4e258aaedaaf62664..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_44_UVP.out +++ /dev/null @@ -1,31 +0,0 @@ -44_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-08-12 02:00:00 1994-10-31 13:00:00 1048537560 1048653420 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1048537560_1048653420.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1995-01-24 13:00:00 1995-12-31 12:00:00 1048775820 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1048775820_1049266800.npz'] -1995-12-31 12:00:00 1996-12-27 11:00:00 1049266800 1049788020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1049266800_1049788020.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/44_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.18358025153477986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_45_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_45_UVP.out deleted file mode 100644 index 9ec8f8fd87017cfbf8e7d7c03cb3a17ef2c69385..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_45_UVP.out +++ /dev/null @@ -1,31 +0,0 @@ -45_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-29 21:00:00 1052423280 1052946540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1052423280_1052946540.npz'] -2003-01-07 04:00:00 2003-12-31 12:00:00 1052958480 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1052958480_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 11:00:00 1053474540 1054001460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1053474540_1054001460.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-29 03:00:00 1054527120 1055049300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1054527120_1055049300.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 11:00:00 1057156560 1057682100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1057156560_1057682100.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/45_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.19247990051905314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_46_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_46_UVP.out deleted file mode 100644 index 0122f87a88eb71056bbf21fde48e3837eea42806..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_46_UVP.out +++ /dev/null @@ -1,29 +0,0 @@ -46_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 14:00:00 1994-12-31 12:00:00 1048215720 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1048215720_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-11-19 12:00:00 1048741200 1049206320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1048741200_1049206320.npz'] -1998-01-07 08:00:00 1998-12-31 12:00:00 1050329280 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1050329280_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/46_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1741929848988851 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_4_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_4_UVP.out deleted file mode 100644 index b034bef2aa496989bd2be8c671f5e69d2f0e8d75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_4_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -4_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01253825028737386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_51_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_51_UVP.out deleted file mode 100644 index 679a1211fb83ecf9a643e75d99c8b08f1cbaf97e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_51_UVP.out +++ /dev/null @@ -1,31 +0,0 @@ -51_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1049266800_1049793840.npz'] -1996-12-31 13:00:00 1997-12-30 15:00:00 1049793900 1050318180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1049793900_1050318180.npz'] -1998-01-16 16:00:00 1998-12-31 12:00:00 1050342720 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1050342720_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/51_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.17944873968760172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_530_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_530_UVP.out deleted file mode 100644 index 55e174d88a2c60b68ef19c22e3c76c237a9a0956..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_530_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -530_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0019191821416219075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_534_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_534_UVP.out deleted file mode 100644 index 2a570011aeba51b3ce42fffe25cdab998a907798..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_534_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -534_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0025083502133687336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_53_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_53_UVP.out deleted file mode 100644 index 257bcdb733cc678b328244348968a693ceb1c670..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_53_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -53_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0015099008878072103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_540_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_540_UVP.out deleted file mode 100644 index 20d6953a753c448920211f09ce5ed1c5e4b8b2b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_540_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -540_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0009189685185750326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_54_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_54_UVP.out deleted file mode 100644 index 966463a0424438cf8149db1ecc61a024d5880cc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_54_UVP.out +++ /dev/null @@ -1,30 +0,0 @@ -54_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-02-28 13:00:00 1994-12-31 12:00:00 1048300620 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1048300620_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-29 15:00:00 1051370640 1051894980 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1051370640_1051894980.npz'] -2001-01-02 16:00:00 2001-12-31 12:00:00 1051900800 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1051900800_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/54_UVP_1059260400_1059786000.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16980038086573282 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_56_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_56_UVP.out deleted file mode 100644 index 4afc20a4e1dc3981a2080f465f24f24f8b0d1ee7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_56_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -56_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0015935301780700684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_57_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_57_UVP.out deleted file mode 100644 index 69605779de1d194d4767f647b8b13eed80bf3e5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_57_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -57_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05681155522664388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_59_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_59_UVP.out deleted file mode 100644 index 6cc2add115687e384f157d06ef08bf59e0ac5f41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_59_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -59_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03279819488525391 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_5_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_5_UVP.out deleted file mode 100644 index 0b41d6eb7254941f97e9ca98121c8d384c665818..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_5_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -5_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010826619466145833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_60_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_60_UVP.out deleted file mode 100644 index 978965b2489c292542864349d802844d8ca6d133..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_60_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -60_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003828767935434977 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_61_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_61_UVP.out deleted file mode 100644 index eaa759de538e4184d2b70f9c72fbd0de7862ea86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_61_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -61_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.024370078245798746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_62_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_62_UVP.out deleted file mode 100644 index 1f1fcb125650ad29cf4c562f3afcca9971c5574b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_62_UVP.out +++ /dev/null @@ -1,31 +0,0 @@ -62_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-15 16:00:00 1048215660 1048718400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1048215660_1048718400.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 17:00:00 1995-12-31 12:00:00 1048741500 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1048741500_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/62_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.17861109574635822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_63_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_63_UVP.out deleted file mode 100644 index e9d005a09844eb0b988f749ae575fe5824ad89b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_63_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -63_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.024402248859405517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_64_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_64_UVP.out deleted file mode 100644 index e25ed966b32d87562660c399c60863b1f5234b49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_64_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -64_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010761415958404541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_68_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_68_UVP.out deleted file mode 100644 index 66f9cef3b5c3fdd386ce5ca01b6f84c1c421d8c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_68_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -68_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003568923473358154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_6_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_6_UVP.out deleted file mode 100644 index b53135828fcbd51f25927cf5faf24e8260ce53a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_6_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -6_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002424625555674235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_73_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_73_UVP.out deleted file mode 100644 index f6e93520d1554da177ab41544f5f393984e38408..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_73_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -73_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0015796105066935222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_76_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_76_UVP.out deleted file mode 100644 index a9240a8e9ad68e05fe49b1d995ff3c8f7763732f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_76_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -76_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003655513127644857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_77_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_77_UVP.out deleted file mode 100644 index c78a113e055b818aca2f00031088647037093ffb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_77_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -77_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005097357432047526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_83_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_83_UVP.out deleted file mode 100644 index 16b0e0efe17fc0b31245f43400226e1cf70a3f5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_83_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -83_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.000978227456410726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_86_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_86_UVP.out deleted file mode 100644 index 4296c3dac58e10d57c7f8b97137ac27a67520772..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_86_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -86_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016007145245869953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_87_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_87_UVP.out deleted file mode 100644 index b104cb32ba2e6006d5410aa3f46b3befc60318bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_87_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -87_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016055965423583986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_8_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_8_UVP.out deleted file mode 100644 index e4463df309331ada07662bd9856382a98241a220..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_8_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -8_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01890725294748942 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_96_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_96_UVP.out deleted file mode 100644 index 070231ff1fdeea4395959ca0f8ccc63a1bfcaf12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_96_UVP.out +++ /dev/null @@ -1,4 +0,0 @@ -96_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01307380199432373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/0_9_UVP.out b/run/stage_logs/NAPMD_O3/S2/0_9_UVP.out deleted file mode 100644 index b309f2fe1c4547c553456b044e789a2a1c3c5ab6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/0_9_UVP.out +++ /dev/null @@ -1,20 +0,0 @@ -9_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2005-12-21 04:00:00 2005-12-21 23:00:00 1054512240 1054513380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1054512240_1054513380.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2006-01-06 01:00:00 2006-12-31 12:00:00 1054535100 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1054535100_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1059260400_1059786000.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconco3/temporary_S1/9_UVP_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.14167142311731976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/1_336_UVP.out b/run/stage_logs/NAPMD_O3/S2/1_336_UVP.out deleted file mode 100644 index 225f4841e7f6b57cb9cbf06bb220a9451cf65609..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/1_336_UVP.out +++ /dev/null @@ -1,5 +0,0 @@ -336_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -NO VALID DATA TO WRITE OUT AFTER REMOVING UNIQUE STATION DATA WITH EXTENT < 31 DAYS. -STATION WILL NOT CONTINUE IN PIPELINE. \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/1_547_UVP.out b/run/stage_logs/NAPMD_O3/S2/1_547_UVP.out deleted file mode 100644 index c6b999e8fee2b99d1e45a608f4151e957e3ed05f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/1_547_UVP.out +++ /dev/null @@ -1,3 +0,0 @@ -547_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/1_89_UVP.out b/run/stage_logs/NAPMD_O3/S2/1_89_UVP.out deleted file mode 100644 index 0a84a8247d78fcc8ac84c345f00e05ac66547742..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/1_89_UVP.out +++ /dev/null @@ -1,3 +0,0 @@ -89_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S2/1_98_UVP.out b/run/stage_logs/NAPMD_O3/S2/1_98_UVP.out deleted file mode 100644 index 8888aee86c09f0080b69c2c7724fedbee6e23ab4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S2/1_98_UVP.out +++ /dev/null @@ -1,3 +0,0 @@ -98_UVP -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_100_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_100_UVP.out deleted file mode 100644 index 084a13660a43f9fcc37f7bab9a8f62bef8bfbb0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_100_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -100_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0428269227345786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_101_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_101_UVP.out deleted file mode 100644 index 4ba59eca710a8984d66dd9751444d93dd8a29a72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_101_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -101_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0208988746007284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_102_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_102_UVP.out deleted file mode 100644 index a8193b544eec8661da5364d022fd32c2bbfb58ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_102_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -102_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9835746884346008 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_104_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_104_UVP.out deleted file mode 100644 index 4a9097536390edbe70595a386aa33e5b0b137fd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_104_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -104_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0524592280387879 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_105_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_105_UVP.out deleted file mode 100644 index 277fb562b02279db8e0decf8e724420c9df727f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_105_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -105_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9413055181503296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_107_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_107_UVP.out deleted file mode 100644 index a6d0485639224e07c7cffb6527239179bf9f70d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_107_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -107_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9320857286453247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_10_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_10_UVP.out deleted file mode 100644 index a1336883593213ebbbcb66bedd44879cde813de0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_10_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -10_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.640640405813853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_110_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_110_UVP.out deleted file mode 100644 index 9ef79be3e9281a7387a9134411095f84cafe28aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_110_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -110_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0069392363230387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_11_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_11_UVP.out deleted file mode 100644 index 8786a70c16577ff15a6c83ebdc4877971b14c4a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_11_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -11_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.834249750773112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_12_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_12_UVP.out deleted file mode 100644 index 15342967dfae6d1d7c793b0138d7e1c216873a12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_12_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -12_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5860150218009949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_13_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_13_UVP.out deleted file mode 100644 index 26c693c7fc6ccec4f6da44825700e31c49ab552f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_13_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -13_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.13440455198288 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_14_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_14_UVP.out deleted file mode 100644 index 49122d429bf2a7a91f174bfadfb7ebca7228421c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_14_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -14_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3135467131932577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_15_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_15_UVP.out deleted file mode 100644 index 440a25989d1d3f53603c4c3e7f1c75a8cfadc2b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_15_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -15_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1606566111246743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_18_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_18_UVP.out deleted file mode 100644 index b6958c5249f06e345fdba38b2fe668cd3030be31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_18_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -18_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8502626299858094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_19_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_19_UVP.out deleted file mode 100644 index fadf8a89938b1b45d6dba58f06588a9208caed33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_19_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -19_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1012243747711181 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_1_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_1_UVP.out deleted file mode 100644 index 43b456bb4c2119a51871f669ca24826d62b3b1f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_1_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -1_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6375264604886373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_20_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_20_UVP.out deleted file mode 100644 index 8b8013cdf19583cb274344e446f7794f853ea469..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_20_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -20_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8907975594202677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_22_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_22_UVP.out deleted file mode 100644 index 82aa11d54d3e56a0d627bdd422a24a8d31b760e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_22_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -22_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4915566444396973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_23_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_23_UVP.out deleted file mode 100644 index 7e76c90d8ce7ae440e23c6c58e8290af4bcfd6d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_23_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -23_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.157049564520518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_24_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_24_UVP.out deleted file mode 100644 index f104e249847f3a7d354554548833a7af51ea8cb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_24_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -24_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6935709436734517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_26_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_26_UVP.out deleted file mode 100644 index 0b003745a80292acf97d35acb112f33189495c34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_26_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -26_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.3989116589228314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_270_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_270_UVP.out deleted file mode 100644 index 675445b7869ad6bfb3917b496f42dfae16d976b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_270_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -270_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3545469204584757 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_271_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_271_UVP.out deleted file mode 100644 index 0de392395832ea26b5896fae24bff30f9ea8137a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_271_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -271_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5633997678756715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_272_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_272_UVP.out deleted file mode 100644 index 7807b99a8cb3c49d295b1afa4149270b1f1c125b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_272_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -272_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.521988534927368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_274_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_274_UVP.out deleted file mode 100644 index 08bd1119c24723cbb424cd5666280ed4fa580fe9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_274_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -274_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6553401668866476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_275_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_275_UVP.out deleted file mode 100644 index dc34774aeef7dfaff193c069b87d26150e14d43f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_275_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -275_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5835113803545633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_278_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_278_UVP.out deleted file mode 100644 index b30d5685c1b45a32999e6566cee8cecf49952030..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_278_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -278_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7189693609873454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_27_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_27_UVP.out deleted file mode 100644 index d0453157954ddd831b0a204ca16436eca74979f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_27_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -27_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8298539400100708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_28_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_28_UVP.out deleted file mode 100644 index 68db445bd69e7740cc2b17ffa79d33a1ee349302..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_28_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -28_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.489129614830017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_29_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_29_UVP.out deleted file mode 100644 index 03811ee9206750683e69e8b9a72267dbe8486fcf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_29_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -29_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9898844122886659 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_2_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_2_UVP.out deleted file mode 100644 index 279c397a9ed6b80548bd0582fb6977fed89ec43a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_2_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -2_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.744493818283081 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_30_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_30_UVP.out deleted file mode 100644 index 77cef7ed5d70b0465bca975429f13a0f8f84870d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_30_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -30_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1778652628262836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_31_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_31_UVP.out deleted file mode 100644 index c732a7e2410ece0a253269b53f85ce3c3fbb314d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_31_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -31_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.162635044256846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_324_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_324_UVP.out deleted file mode 100644 index cdf2b87e382453531e0bb93181f22d8d33c0da90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_324_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -324_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7317778507868449 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_325_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_325_UVP.out deleted file mode 100644 index aa4750849f7d722a7adedd3cc4f56402ad8a2caa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_325_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -325_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.6948277950286865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_326_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_326_UVP.out deleted file mode 100644 index 476e9da2d7a9499222a14cbd9d0318e37f503839..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_326_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -326_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.2504608035087585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_327_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_327_UVP.out deleted file mode 100644 index cf84b0fbc4e648d475724efb7cb305ef6b94132a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_327_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -327_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.2913416425387063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_32_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_32_UVP.out deleted file mode 100644 index a784bc3ae2105efbfe7ec4ec28f3a68bb4cca868..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_32_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -32_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6429415782292683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_330_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_330_UVP.out deleted file mode 100644 index 46429a3efd4a06ec5bdadb34e8a53a1caae05bf9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_330_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -330_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.2296482801437376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_331_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_331_UVP.out deleted file mode 100644 index dac38e59a8f10c19781b77df49b0bb7b847f447a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_331_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -331_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.7515174706776935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_332_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_332_UVP.out deleted file mode 100644 index d447effbd8c78b876df27bcb1d8d6916749e6b4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_332_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -332_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5732437054316202 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_333_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_333_UVP.out deleted file mode 100644 index 37432c1a2a043f0999ac284b5f6577b2e742a17f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_333_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -333_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5325912276903788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_335_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_335_UVP.out deleted file mode 100644 index 2fb4241311de650a793cc7c6118dc734ee216fee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_335_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -335_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5332464734713236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_337_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_337_UVP.out deleted file mode 100644 index ceef751f9b1b786a3b3d6c4a550ff54be8878abc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_337_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -337_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6556510766347249 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_338_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_338_UVP.out deleted file mode 100644 index 18bfa560f934e13558826f0b3acfed85915ec629..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_338_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -338_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.573909378051758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_340_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_340_UVP.out deleted file mode 100644 index d56dc59235666c4a107af1fb47c42839cf0d1862..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_340_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -340_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.073275935649872 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_342_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_342_UVP.out deleted file mode 100644 index 36db843598d27acd3d7abec7f95c20776a249495..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_342_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -342_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9376470247904459 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_343_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_343_UVP.out deleted file mode 100644 index f2c3d8f5db8cb0380487a096dba19b4a6ccea6a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_343_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -343_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5193816622098287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_344_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_344_UVP.out deleted file mode 100644 index fc1b35fcf9fee5cb1174aeddef879f1b52733404..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_344_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -344_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7177894353866577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_347_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_347_UVP.out deleted file mode 100644 index b49c667c84f5155db8afc789e03f7393f0734624..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_347_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -347_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3203669548034669 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_348_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_348_UVP.out deleted file mode 100644 index 58d035d300fda6c67019f72c1530c2e34a09466c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_348_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -348_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6540331999460857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_352_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_352_UVP.out deleted file mode 100644 index bedfee028defa08b60492b1090b71ed2e231018b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_352_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -352_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9791859904925029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_354_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_354_UVP.out deleted file mode 100644 index b6aded06dd01c5ef1360c75d651eee2de4a2d4fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_354_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -354_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6177626927693685 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_357_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_357_UVP.out deleted file mode 100644 index 3eff6f6d7dd8d172dc94e275841111387113bf36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_357_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -357_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7652223189671834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_358_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_358_UVP.out deleted file mode 100644 index 76ec91a680c2feb98feec1d160f5a476b3970cc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_358_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -358_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9290053804715475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_359_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_359_UVP.out deleted file mode 100644 index 0bb733d894ac74b959f53f314a6c0a77b59e6c7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_359_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -359_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9293442686398825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_35_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_35_UVP.out deleted file mode 100644 index 04d2ea54309fddc513dad313171d0cf4226d527b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_35_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -35_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6443926175435384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_360_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_360_UVP.out deleted file mode 100644 index 490aa048428879c9c672de9ced2dfa1aa9f4d403..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_360_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -360_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7552707592646282 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_361_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_361_UVP.out deleted file mode 100644 index 3d75f2b84b51ddcc5cdfca89fb600d6b409ffec6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_361_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -361_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1663312792778013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_363_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_363_UVP.out deleted file mode 100644 index 825c924d16e4a8586afbf840808ca3d2062c5f67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_363_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -363_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9586551308631897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_365_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_365_UVP.out deleted file mode 100644 index 53a924082b414b60d264afc35f8c0f2cdcce83b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_365_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -365_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5533831040064494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_366_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_366_UVP.out deleted file mode 100644 index 270bb47d07abd7c6cd7499dbc486a4af197fc28b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_366_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -366_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.682322883605957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_368_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_368_UVP.out deleted file mode 100644 index 8aef71d55f0db7134a6b027ee9567c482fbb1031..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_368_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -368_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6160938302675883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_369_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_369_UVP.out deleted file mode 100644 index 2d94d0d06cfadcbbedd500a4079d497938dda469..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_369_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -369_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5604361216227214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_370_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_370_UVP.out deleted file mode 100644 index 7bf4cfaaba84a15c6542c901ed10fff03438dd6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_370_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -370_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6807573318481446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_372_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_372_UVP.out deleted file mode 100644 index 7deb3f4577bbc327eb4a5cb511d033dc28174b6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_372_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -372_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6090097506841023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_373_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_373_UVP.out deleted file mode 100644 index 44a109c1ffad0705792d8ce8a649c404d65d4f2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_373_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -373_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5373220125834147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_374_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_374_UVP.out deleted file mode 100644 index aefbdde45f1c6db5a8ef53ecb09d62b3115c440d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_374_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -374_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7082821170488993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_375_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_375_UVP.out deleted file mode 100644 index 9a9eac7bc5a31e00d0a0a937cd4655affc5e8ee6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_375_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -375_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6817273616790771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_3_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_3_UVP.out deleted file mode 100644 index 0dcc407a5d15f40010a6e08646efb94bee654e42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_3_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -3_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9669176896413167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_40_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_40_UVP.out deleted file mode 100644 index c0efd8df4a7ad9a1d1cbd2c02f82b6ecf4862e74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_40_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -40_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.2510021607081097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_41_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_41_UVP.out deleted file mode 100644 index 999b77db6b4f9627fd4200155ac6059325acc766..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_41_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -41_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.761047621568044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_42_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_42_UVP.out deleted file mode 100644 index a957a94ede8d6b9104a54a160fad00359bc17ddd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_42_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -42_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6374070366223653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_43_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_43_UVP.out deleted file mode 100644 index 0f8cae3affe4a39657a9379aea8859c8123596c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_43_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -43_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1643967549006145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_44_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_44_UVP.out deleted file mode 100644 index c6245cf52cba39cd5572c285719be36eed387d3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_44_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -44_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.142720325787862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_45_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_45_UVP.out deleted file mode 100644 index 9816f53ad7b623bb277e88016d82322862d9203c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_45_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -45_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1992890437444053 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_46_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_46_UVP.out deleted file mode 100644 index 3671d1d3bdb1e9d2793474092de0bf72d1e57d54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_46_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -46_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.025779056549072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_4_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_4_UVP.out deleted file mode 100644 index 450f059872c3fd5b3249388875680f66760933a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_4_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -4_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9028663953145345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_51_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_51_UVP.out deleted file mode 100644 index ef150bdb305b3e8f8953ab374c185dcf04c6216f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_51_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -51_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.194667911529541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_530_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_530_UVP.out deleted file mode 100644 index 85c0a42a3f3d8f108141de037c37646b349dd6f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_530_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -530_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6021597425142924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_534_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_534_UVP.out deleted file mode 100644 index 788cedbcc7b1d6fe6ca607e59b0f546972860420..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_534_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -534_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.49227514266967776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_53_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_53_UVP.out deleted file mode 100644 index 5a442070d4964fda31785d5319591cd34750d64b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_53_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -53_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.633039673169454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_540_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_540_UVP.out deleted file mode 100644 index 9f849511a39af7a8c9c7ca02f6c3f5d85ebcc60c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_540_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -540_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.45774110953013103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_54_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_54_UVP.out deleted file mode 100644 index 1ca3e65450c2b0eb78cab99a4bb0000d4992a2d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_54_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -54_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1185346523920696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_56_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_56_UVP.out deleted file mode 100644 index e3a37de16c6c7dc15b8e6d331705a9e763ef1b45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_56_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -56_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.585394545396169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_57_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_57_UVP.out deleted file mode 100644 index 57365c4fcb3a79538def13a9e2f98534c9f4f38f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_57_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -57_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1721501191457113 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_59_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_59_UVP.out deleted file mode 100644 index c363d347d06b00b27ddb2b49c1c03cbc7321f0ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_59_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -59_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3842451930046082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_5_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_5_UVP.out deleted file mode 100644 index 637b8f86d36714554be4f22d2797343f26f6d57b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_5_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -5_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9215854287147522 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_60_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_60_UVP.out deleted file mode 100644 index 0fe8e02123750cdc6d2d97b6584af49a27383625..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_60_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -60_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6720462679862976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_61_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_61_UVP.out deleted file mode 100644 index e34966445b8b727856c54d11df09703e5198b78c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_61_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -61_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5300484855969747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_62_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_62_UVP.out deleted file mode 100644 index 727a5f0c57bf43b8c11250b2a72cf1df8ba2e0c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_62_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -62_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.175605277220408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_63_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_63_UVP.out deleted file mode 100644 index 5ee04017dfa4e0bc6527ec87389196bcaa4977d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_63_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -63_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2951691706975301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_64_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_64_UVP.out deleted file mode 100644 index eab3d861aee94a999ce89e0fc937bea4b6668d3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_64_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -64_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8530283530553182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_68_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_68_UVP.out deleted file mode 100644 index c963d0fbace6908f27f2272c15e227bfecbe6024..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_68_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -68_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5606076757113139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_6_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_6_UVP.out deleted file mode 100644 index a11cdf069bd09d5d35b4cafe0d58761323fae839..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_6_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -6_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6721011956532796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_73_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_73_UVP.out deleted file mode 100644 index 1c4d4963cc71a455c91e7300f10fcc24b6978443..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_73_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -73_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6143574515978495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_76_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_76_UVP.out deleted file mode 100644 index ab7b38d6f90707b990b8c371da6015ec90ff5b30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_76_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -76_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6759380499521891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_77_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_77_UVP.out deleted file mode 100644 index 1383e76e3ac9ba20d7f87ab690f8f8eb92fc84ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_77_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -77_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8023003896077474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_83_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_83_UVP.out deleted file mode 100644 index 6a731279bc0d5c81189194d9171e6ab0a772db0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_83_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -83_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5193931420644124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_86_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_86_UVP.out deleted file mode 100644 index d1c99f6de21a4e65dfda4135f29da841c29043e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_86_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -86_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8408282200495402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_87_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_87_UVP.out deleted file mode 100644 index 52e444e1368c9b5ce2bf784bf00608d235624635..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_87_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -87_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0695140997568766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_8_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_8_UVP.out deleted file mode 100644 index 86c3430fae30bc9b4576e692639fa9594d7b0092..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_8_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -8_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.007334585984548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_96_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_96_UVP.out deleted file mode 100644 index 2eb8a497065b65129b557d1ae5acbb8ef340fc25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_96_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -96_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9963442166646321 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/S3/0_9_UVP.out b/run/stage_logs/NAPMD_O3/S3/0_9_UVP.out deleted file mode 100644 index 0fb5bce4e5cbce49d2019fe2dc52349dc6aff441..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/S3/0_9_UVP.out +++ /dev/null @@ -1,23 +0,0 @@ -9_UVP -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.348929190635681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_100_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_100_UVP_D_GLOBAL.out deleted file mode 100644 index 3875c3ebec142cc09b50ecc4cd35953527067555..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_100_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.29217774073282876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_100_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_100_UVP_H_GLOBAL.out deleted file mode 100644 index 34cf321ef5177c8d428f9bee5e9a1ac30011d17d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_100_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8446328798929851 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_100_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_100_UVP_M_GLOBAL.out deleted file mode 100644 index d149d6bd4362578a14bff9422658fc1834d34def..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_100_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4345206141471863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_101_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_101_UVP_D_GLOBAL.out deleted file mode 100644 index 8dd6cb76256d5dbb6287f88faed2907f5ae2ad50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_101_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -101_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5542322595914205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_101_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_101_UVP_H_GLOBAL.out deleted file mode 100644 index 38411660a8ba276106a04c3a6a99881bba47d586..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_101_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -101_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.052363141377767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_101_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_101_UVP_M_GLOBAL.out deleted file mode 100644 index 17f7b1610285821b809370d6e17d32ba40e9744b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_101_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -101_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6438765446345012 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_102_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_102_UVP_D_GLOBAL.out deleted file mode 100644 index d6790a95ef12a418384392b4c7bfaaa6a7221322..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_102_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -102_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4712921579678853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_102_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_102_UVP_H_GLOBAL.out deleted file mode 100644 index 965a422dd14c93afa385b5d1e6abf947173c952c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_102_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -102_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8920668363571167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_102_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_102_UVP_M_GLOBAL.out deleted file mode 100644 index b591d459d85b213127bfefeac4150ddafe2b35c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_102_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -102_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.43149346510569253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_104_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_104_UVP_D_GLOBAL.out deleted file mode 100644 index 58859b6db0d0b69f0a5c97df886769491936cbf8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_104_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5033419728279114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_104_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_104_UVP_H_GLOBAL.out deleted file mode 100644 index 295e38e49bb7403e90fdaaa07de2a224191809b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_104_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6586652477582295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_104_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_104_UVP_M_GLOBAL.out deleted file mode 100644 index 36fdb2c3126b060531339024c220c70198d30c3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_104_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.36018309990564984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_105_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_105_UVP_D_GLOBAL.out deleted file mode 100644 index 73250f21f6466b916b5de90010c3182f7f50e925..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_105_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.19254862070083617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_105_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_105_UVP_H_GLOBAL.out deleted file mode 100644 index 5b1fa1492e22934a33f5e8d3998160dbd53759ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_105_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5908993681271871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_105_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_105_UVP_M_GLOBAL.out deleted file mode 100644 index f150663dc2f57082032bc521d9d6c35a4867a5f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_105_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6271092454592387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_107_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_107_UVP_D_GLOBAL.out deleted file mode 100644 index c2b29efb7152fccd946a15b6bc60b9495687c6ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_107_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18582568566004434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_107_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_107_UVP_H_GLOBAL.out deleted file mode 100644 index 1d0218c452814b59637b0607b70ae2df49336a6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_107_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7809798757235209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_107_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_107_UVP_M_GLOBAL.out deleted file mode 100644 index 369bfaaf1e976bb548bca0ffc649685df28c3bc5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_107_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.35044538974761963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_10_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_10_UVP_D_GLOBAL.out deleted file mode 100644 index 9d480c7349c96c249fe30eb7e1b0599c20fd2358..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_10_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -10_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.013126989205678305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_10_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_10_UVP_H_GLOBAL.out deleted file mode 100644 index 66fb7d949198ebccf31a52d890a3eb50a913cd94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_10_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -10_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.14938764969507853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_10_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_10_UVP_M_GLOBAL.out deleted file mode 100644 index 3ec92866eb7c9c4a2d58a3a5cc9b002c7895ec71..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_10_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -10_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.005848121643066406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_110_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_110_UVP_D_GLOBAL.out deleted file mode 100644 index 47483415e661d7ff069f21056ed2dcab06af226a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_110_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.25278675158818564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_110_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_110_UVP_H_GLOBAL.out deleted file mode 100644 index c70ca257f2686bdf63d8fc32ba7748404cc1063f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_110_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0337406953175863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_110_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_110_UVP_M_GLOBAL.out deleted file mode 100644 index 4400b09605f629406f141dc0eea0796186bf36f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_110_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.28293861548105875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_11_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_11_UVP_D_GLOBAL.out deleted file mode 100644 index ced8f1d72bd791e04b908b8aa66628998788e7a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_11_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.787274177869161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_11_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_11_UVP_H_GLOBAL.out deleted file mode 100644 index 28f082d8abd1d1edde81f3f5221e9c8c6b03a866..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_11_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8419456084569295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_11_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_11_UVP_M_GLOBAL.out deleted file mode 100644 index 9e20fe60a0f137204d013671a704179290f0748a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_11_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4308517972628276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_12_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_12_UVP_D_GLOBAL.out deleted file mode 100644 index 37d9365ea3ca805825e8ddfb04173cd67e4278a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_12_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -12_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.011304847399393718 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_12_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_12_UVP_H_GLOBAL.out deleted file mode 100644 index 116706178e54bae71d4cf15e0fef337eb8e1caca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_12_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -12_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1537877321243286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_12_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_12_UVP_M_GLOBAL.out deleted file mode 100644 index e4c394637d46584d2d5212572f86d7685cc2d361..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_12_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -12_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.007786762714385986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_13_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_13_UVP_D_GLOBAL.out deleted file mode 100644 index 981a17058ddf37000344ecd033295df73192acfd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_13_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8629774570465087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_13_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_13_UVP_H_GLOBAL.out deleted file mode 100644 index 15342f89a8ff5f04354007fd23db7516fbd08209..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_13_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2937015652656556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_13_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_13_UVP_M_GLOBAL.out deleted file mode 100644 index 328252154c22fca217f9d97e2e670eacb6a66c96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_13_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.567161230246226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_14_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_14_UVP_D_GLOBAL.out deleted file mode 100644 index 851bba7b3e14b93c42394d9e28cebd20dea199a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_14_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5028393626213074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_14_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_14_UVP_H_GLOBAL.out deleted file mode 100644 index 934b958a3575450e03cae3ebfaf12b64f2380801..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_14_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9488352100054424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_14_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_14_UVP_M_GLOBAL.out deleted file mode 100644 index bf120d3698e29b1b667301380d1133b693538431..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_14_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.41957192023595175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_15_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_15_UVP_D_GLOBAL.out deleted file mode 100644 index 30af1f24425c9ef97a6a0a59f113dbec581327b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_15_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8767055789629619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_15_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_15_UVP_H_GLOBAL.out deleted file mode 100644 index 608dac8b96eb40da1108f74953918b912dd6def9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_15_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0116811871528624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_15_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_15_UVP_M_GLOBAL.out deleted file mode 100644 index 0175f89cf3edaba56ca0759bcbd20990649a0854..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_15_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.49971923828125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_18_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_18_UVP_D_GLOBAL.out deleted file mode 100644 index a2a44a528f08ba78ee3c4db213d229534c90b960..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_18_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.676591408252716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_18_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_18_UVP_H_GLOBAL.out deleted file mode 100644 index 601965c19892a0ea251958961279dc46d37e3987..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_18_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6557280500729878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_18_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_18_UVP_M_GLOBAL.out deleted file mode 100644 index a2650936ccb42e4c8e1cc350e4235040dd614b00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_18_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31679892937342324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_19_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_19_UVP_D_GLOBAL.out deleted file mode 100644 index 66bed7b9bfcc6dc986f4881c88568c3da4999442..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_19_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6000740170478821 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_19_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_19_UVP_H_GLOBAL.out deleted file mode 100644 index b38ebfa975350c22f683c591139f24698f7befc1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_19_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7558101495107015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_19_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_19_UVP_M_GLOBAL.out deleted file mode 100644 index 543b377919ac623e752bf34d39ebef6f3d74e158..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_19_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5119258642196656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_1_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_1_UVP_D_GLOBAL.out deleted file mode 100644 index eabe7766d650c0e892fadbe5898ae8de1cff9ca9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_1_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0392335534095765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_1_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_1_UVP_H_GLOBAL.out deleted file mode 100644 index afc3f0d98d95816d05590f26f9b3dfa5341362be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_1_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.596983500321706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_1_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_1_UVP_M_GLOBAL.out deleted file mode 100644 index 6f7572cdb06238446aa42d95b59c09fb60a07e65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_1_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7472885290781657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_20_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_20_UVP_D_GLOBAL.out deleted file mode 100644 index 3518ad739079b364cfe91cfcbcc7665d235b704d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_20_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.16958992878595988 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_20_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_20_UVP_H_GLOBAL.out deleted file mode 100644 index 667b1190764b492236874f136781d731839b710e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_20_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5898699879646301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_20_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_20_UVP_M_GLOBAL.out deleted file mode 100644 index 6d4c1f48228be54e610ddffe6fdce5d08a57c99b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_20_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3350434939066569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_22_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_22_UVP_D_GLOBAL.out deleted file mode 100644 index 520cbb6fe696cabe5fe45df097164ab868feb86c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_22_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6849825779596964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_22_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_22_UVP_H_GLOBAL.out deleted file mode 100644 index 4a460f0cd9b247f28ded3fec4e6fd88680f10de7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_22_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8759194334348044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_22_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_22_UVP_M_GLOBAL.out deleted file mode 100644 index f864958a0a67974e71178416ccd6fd9f3a68b656..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_22_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.132809539635976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_23_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_23_UVP_D_GLOBAL.out deleted file mode 100644 index 99c20200f028f9cfaf4c17accf1a337779fe1428..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_23_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3099843700726828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_23_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_23_UVP_H_GLOBAL.out deleted file mode 100644 index 73840b2669954334c33bcd91280c26ba106e01e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_23_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.157957736651103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_23_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_23_UVP_M_GLOBAL.out deleted file mode 100644 index a9e45dc924a0330ad05f1cbd4d08a7d7e33dbb35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_23_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.829416072368622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_24_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_24_UVP_D_GLOBAL.out deleted file mode 100644 index 8f3b3d7a297aab8314f78ad616dae602b0fa937e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_24_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07718671162923177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_24_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_24_UVP_H_GLOBAL.out deleted file mode 100644 index 2c9466d92f65c1793ccf7f6cf23d3fe757d12d3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_24_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2584206740061442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_24_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_24_UVP_M_GLOBAL.out deleted file mode 100644 index 18b2fd999dcd3092e80f097f2e0b8897d39632fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_24_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.046258207162221274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_26_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_26_UVP_D_GLOBAL.out deleted file mode 100644 index b68f761d7b29115b610284ffd6f1325a8849c0ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_26_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3301724950472513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_26_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_26_UVP_H_GLOBAL.out deleted file mode 100644 index 3c4fea6be38cdcb32ec6e22545e56accf3c4e692..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_26_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2507980982462565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_26_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_26_UVP_M_GLOBAL.out deleted file mode 100644 index bf3599947fca42ac3c56e6d376b5365ad0752800..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_26_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4032059868176778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_270_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_270_UVP_D_GLOBAL.out deleted file mode 100644 index 64cb0bb6034ec9e807454bb0879407cde52dfa60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_270_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8146128137906392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_270_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_270_UVP_H_GLOBAL.out deleted file mode 100644 index c12ca72b59638653d5c22ed2a8ffa24dab71dec4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_270_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3643356959025066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_270_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_270_UVP_M_GLOBAL.out deleted file mode 100644 index 6c7d1818b906e446a293cb3388862fd1dcb9c620..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_270_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5072771946589152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_271_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_271_UVP_D_GLOBAL.out deleted file mode 100644 index 29bca9f915c66d545f930888ecd9791f2418a9d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_271_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9531866987546285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_271_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_271_UVP_H_GLOBAL.out deleted file mode 100644 index b57fcb560fc94f976d4abd92e70d2541397c8634..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_271_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7219473838806152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_271_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_271_UVP_M_GLOBAL.out deleted file mode 100644 index 5af344e5eb4faed177517e8b88effeec7ccfb00f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_271_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1580380241076151 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_272_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_272_UVP_D_GLOBAL.out deleted file mode 100644 index 5ea41caa354cdfd366166637bbf2f59dec4d5b2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_272_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9595699707667033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_272_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_272_UVP_H_GLOBAL.out deleted file mode 100644 index 62216aa2371203885b47ca470fc14318df465269..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_272_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8034539143244426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_272_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_272_UVP_M_GLOBAL.out deleted file mode 100644 index f355ebdde00bbb134d6e6f97c8e315f9d9b828ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_272_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9337037920951843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_274_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_274_UVP_D_GLOBAL.out deleted file mode 100644 index d3e3c685250ee53b19df23d4a50e7f8f4707dc5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_274_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0063013275464376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_274_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_274_UVP_H_GLOBAL.out deleted file mode 100644 index c36809553ed77dd1d912c80878757bbfe422e4e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_274_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8807986497879028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_274_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_274_UVP_M_GLOBAL.out deleted file mode 100644 index b9885a3c8bfc0ff29646b19ef73ff54d249ce8bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_274_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0717731316884358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_275_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_275_UVP_D_GLOBAL.out deleted file mode 100644 index 6649ff864933ff1d64eb5055765afa8573df34fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_275_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4727331479390462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_275_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_275_UVP_H_GLOBAL.out deleted file mode 100644 index b148ab4ed399bbd4c291ac57150d495beda01fe9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_275_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0502415855725604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_275_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_275_UVP_M_GLOBAL.out deleted file mode 100644 index ed34cfa5ddb67dcded18cbb0d521e3271271d702..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_275_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9040368080139161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_278_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_278_UVP_D_GLOBAL.out deleted file mode 100644 index 4a0e7fa147ff64d78dce2b3b4902e18e4bdd75bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_278_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07766341765721639 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_278_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_278_UVP_H_GLOBAL.out deleted file mode 100644 index 6a0ecec1b6d90a6e77a9bfffd8db6a755989eeb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_278_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5423092087109883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_278_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_278_UVP_M_GLOBAL.out deleted file mode 100644 index 44496cd56020edb987f58a68e1eea18cc293a610..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_278_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0767242709795634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_27_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_27_UVP_D_GLOBAL.out deleted file mode 100644 index 1041d827a92abad8389e4dbac648b0d2bd05158a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_27_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23048531611760456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_27_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_27_UVP_H_GLOBAL.out deleted file mode 100644 index c2fb46c623d6a84b06507089d73f33a55f196e66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_27_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5681771397590637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_27_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_27_UVP_M_GLOBAL.out deleted file mode 100644 index dbdfac3b14d2af785f9cb8cae7c5f69734f8c74c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_27_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.362098757425944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_28_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_28_UVP_D_GLOBAL.out deleted file mode 100644 index 9a839166e5eea2b4c45e3aefecf62fc4f85087fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_28_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.044908877213796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_28_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_28_UVP_H_GLOBAL.out deleted file mode 100644 index b32858273489f09517bbdeade9818dbd4f34b4fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_28_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.291135028998057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_28_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_28_UVP_M_GLOBAL.out deleted file mode 100644 index 50556a3f75cee2d553825ab3e9a7070df6d9d5d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_28_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3685349146525065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_29_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_29_UVP_D_GLOBAL.out deleted file mode 100644 index ffaff8af7b9c1e2cfc599035f4db959e18194264..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_29_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.202605652809143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_29_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_29_UVP_H_GLOBAL.out deleted file mode 100644 index cc136b5e0fac0106ad25fcb5a6b666999f0777f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_29_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.933664651711782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_29_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_29_UVP_M_GLOBAL.out deleted file mode 100644 index 6fa8e50a7968bec5c15cfdac03abdeb0ac5ef469..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_29_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8843306263287862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_2_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_2_UVP_D_GLOBAL.out deleted file mode 100644 index 25ab7d50b61fed1c4cb2e2fac76da80ffda52650..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_2_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12010703484217326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_2_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_2_UVP_H_GLOBAL.out deleted file mode 100644 index 40a2a0e15f9171018307f29f07d499c91071ef61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_2_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.40972846349080405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_2_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_2_UVP_M_GLOBAL.out deleted file mode 100644 index ab2bc530b58ef36f2c1811bb8b4e16790a97e246..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_2_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09731893539428711 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_30_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_30_UVP_D_GLOBAL.out deleted file mode 100644 index 83814df95fcfedc3655255c2bcbe38cce34ab0b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_30_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6562220414479574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_30_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_30_UVP_H_GLOBAL.out deleted file mode 100644 index bf0ba5bddecc005f3119f923dbb26fe2fb9cfb2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_30_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9956343491872153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_30_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_30_UVP_M_GLOBAL.out deleted file mode 100644 index 09c3f85e022ecafc1ebe08c7c7f761694b0a92f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_30_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8249237577120463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_31_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_31_UVP_D_GLOBAL.out deleted file mode 100644 index bf03914c0906fe521eaf477337d3ab8ccc11062e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_31_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5559112151463826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_31_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_31_UVP_H_GLOBAL.out deleted file mode 100644 index 4f663ea703a88dedc2213d4c28d00acb4ea1b590..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_31_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.196796711285909 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_31_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_31_UVP_M_GLOBAL.out deleted file mode 100644 index ed943b48592e2083a8ccb0189808bb67cab3a109..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_31_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6250320951143901 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_324_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_324_UVP_D_GLOBAL.out deleted file mode 100644 index 2cc81390a34aa52d8831f9eea9526f150f2ca456..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_324_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1172834356625876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_324_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_324_UVP_H_GLOBAL.out deleted file mode 100644 index ff67f04b3c3b803afdc4ef6ea562605dbd97eebb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_324_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.713722821076711 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_324_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_324_UVP_M_GLOBAL.out deleted file mode 100644 index 1609f684ebe43273d210417c75d6bff9b34000b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_324_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3365448395411172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_325_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_325_UVP_D_GLOBAL.out deleted file mode 100644 index e9c3cea86233bbcb882a5cefb4227c96a37dcaa5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_325_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7076072812080383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_325_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_325_UVP_H_GLOBAL.out deleted file mode 100644 index e3aa4671a34f62faba81676db15aff268b7def17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_325_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4497779250144958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_325_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_325_UVP_M_GLOBAL.out deleted file mode 100644 index 4f2cd4af8e366ad3cd9fd86837e76ab82d67c5c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_325_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.619495447476705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_326_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_326_UVP_D_GLOBAL.out deleted file mode 100644 index a91cdaf4910fef2e48c75cf4b3a1d08b098435c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_326_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7307652115821839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_326_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_326_UVP_H_GLOBAL.out deleted file mode 100644 index 55f287964cddab5a8759e113a5ed9c666a54eb93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_326_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2900245348612467 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_326_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_326_UVP_M_GLOBAL.out deleted file mode 100644 index c2f8d5dca5e6c27131e370a657833b9c35deb33f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_326_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6280429402987162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_327_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_327_UVP_D_GLOBAL.out deleted file mode 100644 index b8b91d722a702d76bd4574d15e67413ae67ac4b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_327_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4988647421201071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_327_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_327_UVP_H_GLOBAL.out deleted file mode 100644 index 64fde3c7bdeed4a71eb12353cafc1d553c0dc6c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_327_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.245820903778076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_327_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_327_UVP_M_GLOBAL.out deleted file mode 100644 index ca58401ba3d293629cc115f25df2170411116dd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_327_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6566838264465331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_32_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_32_UVP_D_GLOBAL.out deleted file mode 100644 index 03d53642498b18cbf71d0700bf538b4ed99e7a5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_32_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07920406659444174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_32_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_32_UVP_H_GLOBAL.out deleted file mode 100644 index 3c546b1cf8ad670bf42c6599de1ce169d764b218..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_32_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20906662940979004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_32_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_32_UVP_M_GLOBAL.out deleted file mode 100644 index f04c38bd71fabfd9dda23bd01bc64910e4a6560d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_32_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.038443084557851157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_330_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_330_UVP_D_GLOBAL.out deleted file mode 100644 index 5dc1cb1c32fd8507f83c321d6feda6a1aec80bdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_330_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6733902454376222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_330_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_330_UVP_H_GLOBAL.out deleted file mode 100644 index 97a2aa2d42e73c2db1d4100b1e51a46b646b58cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_330_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3010441581408183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_330_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_330_UVP_M_GLOBAL.out deleted file mode 100644 index 7a7bd09670d84708e96d26fd15cc423bec82eeca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_330_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3464826424916585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_331_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_331_UVP_D_GLOBAL.out deleted file mode 100644 index cd4e138e1f5d25a1028c4e32ec955be6c2cda2b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_331_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8463228503863016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_331_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_331_UVP_H_GLOBAL.out deleted file mode 100644 index 887f6aada41c6911d318c980f28243f10990bca7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_331_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.364088543256124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_331_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_331_UVP_M_GLOBAL.out deleted file mode 100644 index 9858cef50a04812d83439970c84384db2ac53614..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_331_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0876811742782593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_332_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_332_UVP_D_GLOBAL.out deleted file mode 100644 index 66f363dbf545c18e40cba27c21fb9e21cd992d10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_332_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6978327949841817 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_332_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_332_UVP_H_GLOBAL.out deleted file mode 100644 index 08982d1d7e9e6d7155012ae0c876decbc25d761b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_332_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6116291085879009 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_332_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_332_UVP_M_GLOBAL.out deleted file mode 100644 index 2a5cbca3f82ebe30b6aa076b509fd7b97ee02e97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_332_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.982384200890859 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_333_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_333_UVP_D_GLOBAL.out deleted file mode 100644 index dd15c8dea132b2bb4d4a8979bcdd175230fc34bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_333_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -333_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6710032224655151 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_333_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_333_UVP_H_GLOBAL.out deleted file mode 100644 index e891f2302f816656ed25ec373ad695b6a2dffe10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_333_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -333_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.820990510781606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_333_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_333_UVP_M_GLOBAL.out deleted file mode 100644 index 52e48fee1e588100c18ee8d7be3f66639f5cacc1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_333_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -333_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2964012463887533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_335_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_335_UVP_D_GLOBAL.out deleted file mode 100644 index 294ee26468d02371f610c63c6598e5d9c5a31aab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_335_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.400355831782023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_335_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_335_UVP_H_GLOBAL.out deleted file mode 100644 index 511e9259757d33c9fac7cad0f3f6f159968ab645..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_335_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.638425636291504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_335_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_335_UVP_M_GLOBAL.out deleted file mode 100644 index 39b4e4f5c71bd8490dc486a00cf6dc2c75e637fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_335_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0500243226687114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_337_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_337_UVP_D_GLOBAL.out deleted file mode 100644 index 4b8f333c9afc5a7f5945e1d25fe432ea06d3696e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_337_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2010696053504944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_337_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_337_UVP_H_GLOBAL.out deleted file mode 100644 index e4d2e1b09da965c5295fe2b888557d8a577895d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_337_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5111793835957845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_337_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_337_UVP_M_GLOBAL.out deleted file mode 100644 index b622923aa26433d6540daee9bf9f5a311776f930..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_337_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18454204003016153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_338_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_338_UVP_D_GLOBAL.out deleted file mode 100644 index 20741303867b9b958287cb523ba5c33c8a80fd42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_338_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -338_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.644703169663747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_338_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_338_UVP_H_GLOBAL.out deleted file mode 100644 index d86ce30e2cb2e393ae835d291a708cbca6b7ca0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_338_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -338_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.448770836989085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_338_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_338_UVP_M_GLOBAL.out deleted file mode 100644 index 98db97ca247cde1c250c1a728d5df2df71f2a9cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_338_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -338_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2827943841616312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_340_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_340_UVP_D_GLOBAL.out deleted file mode 100644 index 4b1c4c03371386f3df5461f2d72dcc4b9a4fde51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_340_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1974048574765523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_340_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_340_UVP_H_GLOBAL.out deleted file mode 100644 index e11b6643e5da5b6bed8ebdef0718124d8a1cd34f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_340_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9133681178092956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_340_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_340_UVP_M_GLOBAL.out deleted file mode 100644 index 0da83199bcacadfff0bbe297aac4fcd2d577a3dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_340_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1408063411712646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_342_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_342_UVP_D_GLOBAL.out deleted file mode 100644 index 0a25d97e686702007b92ae8e90d422982607d720..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_342_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6884260376294454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_342_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_342_UVP_H_GLOBAL.out deleted file mode 100644 index caed998ac9aeccf6e136e14c7deed18dede44004..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_342_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6290902336438496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_342_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_342_UVP_M_GLOBAL.out deleted file mode 100644 index f1c27786fe9c8a8acff847f60d5f3a010fdfd589..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_342_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20626583496729534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_343_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_343_UVP_D_GLOBAL.out deleted file mode 100644 index cce5d60d790f47804adc58b3da5fb52266546bc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_343_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02932796875635783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_343_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_343_UVP_H_GLOBAL.out deleted file mode 100644 index 2d25e02e56de83d53a062316b091aba1401a5bad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_343_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1538634975751241 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_343_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_343_UVP_M_GLOBAL.out deleted file mode 100644 index 65426d15b74ebd5a80cd9dfcdc57ff3f761abc6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_343_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.009974169731140136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_344_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_344_UVP_D_GLOBAL.out deleted file mode 100644 index 56861ba178145710223a68a3dad507f144dfd7ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_344_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -344_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24121638536453247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_344_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_344_UVP_H_GLOBAL.out deleted file mode 100644 index 0e7825aa76e906bddb06f59ba5dbb477a3cd2662..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_344_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -344_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2675094445546468 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_344_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_344_UVP_M_GLOBAL.out deleted file mode 100644 index 52976613876f75dc3b431bb1e5cfff16a5f7dcf9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_344_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -344_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.038341180483500166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_347_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_347_UVP_D_GLOBAL.out deleted file mode 100644 index 7497079718103d4d1f69077479dda9fb14dd32d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_347_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.159923259417216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_347_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_347_UVP_H_GLOBAL.out deleted file mode 100644 index 2c74d73ff3fd9bb0d1ded2c0eb251bee5f45dcd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_347_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7235540310541789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_347_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_347_UVP_M_GLOBAL.out deleted file mode 100644 index 7cac9383ba2e70b59f6ffe19888e5b538a7c330f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_347_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -347_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6453952312469482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_348_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_348_UVP_D_GLOBAL.out deleted file mode 100644 index f6b906be08f1aa40e8009b6854b9970c7ff2a47a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_348_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -348_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.024486136436462403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_348_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_348_UVP_H_GLOBAL.out deleted file mode 100644 index 7a4fb3922ce6cb16e36b93179fd3f8f340668022..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_348_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -348_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.16124752759933472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_348_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_348_UVP_M_GLOBAL.out deleted file mode 100644 index 8f18f1f88c7de7f973b54c3a6c4a3ab6704e17d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_348_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -348_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2713353713353475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_352_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_352_UVP_D_GLOBAL.out deleted file mode 100644 index ce81ad0de695392a92311a8711046331cb5c1087..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_352_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9925936539967855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_352_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_352_UVP_H_GLOBAL.out deleted file mode 100644 index 4bcaea11db5e59f0d7be931deb095bffb2059637..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_352_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.077259862422943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_352_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_352_UVP_M_GLOBAL.out deleted file mode 100644 index 73fa6f483edc133b6f9899a8ca133e80003c6927..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_352_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.602993106842041 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_354_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_354_UVP_D_GLOBAL.out deleted file mode 100644 index 2067d28cf7374c019e884784766d5c0b80c270d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_354_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02663448651631673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_354_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_354_UVP_H_GLOBAL.out deleted file mode 100644 index ff430fba4ed2a40154de9192457a34c686229ec2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_354_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18304129044214884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_354_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_354_UVP_M_GLOBAL.out deleted file mode 100644 index de709aa94463b2b431d918616da4bbfd7506c7a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_354_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.00907682180404663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_357_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_357_UVP_D_GLOBAL.out deleted file mode 100644 index 7a62e4b3076447b9d5dd47a8ff9cd446fd6a337b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_357_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.054689455032348636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_357_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_357_UVP_H_GLOBAL.out deleted file mode 100644 index 4e3a3ec862f9f658b75eb1bc2e60cddc33f3984e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_357_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3306628346443176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_357_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_357_UVP_M_GLOBAL.out deleted file mode 100644 index 52ce24214ab8ccee2014ea393f9a2228157729f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_357_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0585343599319458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_358_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_358_UVP_D_GLOBAL.out deleted file mode 100644 index d3636e7234644e1172e61faf7a61d5ae32753820..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_358_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2568982402483622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_358_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_358_UVP_H_GLOBAL.out deleted file mode 100644 index 21703fabf7af86751756bb8d0a0537b10aabf3b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_358_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0715715964635213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_358_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_358_UVP_M_GLOBAL.out deleted file mode 100644 index a96ddba640da8eb1bdb9f82b0f1aa65e176bb295..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_358_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5561458826065064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_359_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_359_UVP_D_GLOBAL.out deleted file mode 100644 index 628d40037cc6feb3cae04d832e4f850f1485ad64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_359_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -359_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5199246883392334 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_359_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_359_UVP_H_GLOBAL.out deleted file mode 100644 index c6a742d12b67788ba56744e6524414de98722b66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_359_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -359_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0606216311454775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_359_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_359_UVP_M_GLOBAL.out deleted file mode 100644 index 1fae350e21ce0ec685b323a1e792c4ebf78ffb7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_359_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -359_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7581299781799316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_35_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_35_UVP_D_GLOBAL.out deleted file mode 100644 index cb4f29f0342186b2c421c8f23afcccdf3859b7b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_35_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02032525936762492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_35_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_35_UVP_H_GLOBAL.out deleted file mode 100644 index c49878f183925700aef9adf8f46b786265dc52c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_35_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1622068683306376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_35_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_35_UVP_M_GLOBAL.out deleted file mode 100644 index 9f64863f38100d4103cfb7e8a71bde03dca8ec33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_35_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.016200844446818033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_360_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_360_UVP_D_GLOBAL.out deleted file mode 100644 index 60b04607d61619bc548abb99ef79ff04a4760dbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_360_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6107857783635458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_360_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_360_UVP_H_GLOBAL.out deleted file mode 100644 index 2a6be9151e86f9189ec7d51f89307c9bac76419b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_360_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.91331334511439 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_360_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_360_UVP_M_GLOBAL.out deleted file mode 100644 index d60dae7a8d97790bc614ccc53ab2485c02fc7cbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_360_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0470580458641052 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_361_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_361_UVP_D_GLOBAL.out deleted file mode 100644 index afed6f05cbba4f498b5ff5d8f432e84ff4a466fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_361_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -361_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3986270904541016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_361_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_361_UVP_H_GLOBAL.out deleted file mode 100644 index 23f087cc0f46d3610ec2e34a6c0cd141378ea390..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_361_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -361_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9301455736160278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_361_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_361_UVP_M_GLOBAL.out deleted file mode 100644 index 28eb8574c06ab0d0cba6bec88f04b9d3e20b6406..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_361_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -361_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3116000334421793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_363_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_363_UVP_D_GLOBAL.out deleted file mode 100644 index b99520259dc2c01c8fd0c49c401139ce5c1ecefa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_363_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9881717205047608 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_363_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_363_UVP_H_GLOBAL.out deleted file mode 100644 index ce71599a9e8e8e77022f91ff3ba5cf0f3a2dbf1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_363_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.278006541728973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_363_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_363_UVP_M_GLOBAL.out deleted file mode 100644 index 8e1f3482cc3fbfbed003683e9c423ce90f09a9da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_363_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0578348557154338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_365_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_365_UVP_D_GLOBAL.out deleted file mode 100644 index 21bcfca7281af39269278d601e23f338f34d6373..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_365_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -365_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.011794312795003255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_365_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_365_UVP_H_GLOBAL.out deleted file mode 100644 index bd16f0405333566ddb3557e159731f3136b2d87e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_365_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -365_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20782357056935627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_365_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_365_UVP_M_GLOBAL.out deleted file mode 100644 index 75ddabd24fba1be22ee2f6c71b38041fd6554d0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_365_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -365_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.00606084664662679 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_366_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_366_UVP_D_GLOBAL.out deleted file mode 100644 index 237dc610a9b9fe7017dd7a4fa3a12bf918d78dff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_366_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.046904865900675455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_366_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_366_UVP_H_GLOBAL.out deleted file mode 100644 index ef18bd404d296ece31b084a4be62c25ea6a442e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_366_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21840416590372722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_366_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_366_UVP_M_GLOBAL.out deleted file mode 100644 index 91e0138ebe823506b4ebff8fd4e0bdbd1f2dbc5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_366_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06659713983535767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_368_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_368_UVP_D_GLOBAL.out deleted file mode 100644 index 7f1a414fec4f0e8dc3b4f64de3b3996b51dc855d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_368_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0267647385597229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_368_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_368_UVP_H_GLOBAL.out deleted file mode 100644 index 0b9c02748476d6259150782b3f943333b42b475f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_368_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22118656237920126 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_368_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_368_UVP_M_GLOBAL.out deleted file mode 100644 index 22f45bcf51e38cfc6ad04a105a8f6d7a9a584870..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_368_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.022830557823181153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_369_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_369_UVP_D_GLOBAL.out deleted file mode 100644 index 2dcfb22f6b66c564b1c78f211c01effebcf6fd36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_369_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.01665159861246745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_369_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_369_UVP_H_GLOBAL.out deleted file mode 100644 index 7b0744109945cbf8095e367123036cb2635edf47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_369_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18042612075805664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_369_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_369_UVP_M_GLOBAL.out deleted file mode 100644 index 5edb1bbd4d1ded0f8b2b861a0963ccd97cd1c410..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_369_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.010168532530466715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_370_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_370_UVP_D_GLOBAL.out deleted file mode 100644 index fbe4abce2afcae3f2828830f88e3678b5cd21a44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_370_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04646066824595133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_370_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_370_UVP_H_GLOBAL.out deleted file mode 100644 index 4c8cbdd12f0e8724226ff86d517e158be40a649d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_370_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.26412120660146077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_370_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_370_UVP_M_GLOBAL.out deleted file mode 100644 index 9c5eaf97286b02e21a7d4418bba203ee8e0e6e4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_370_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06729075113932291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_372_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_372_UVP_D_GLOBAL.out deleted file mode 100644 index d5aee0ac51dab3b92276ccd65cf505deb2660fbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_372_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03860514561335246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_372_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_372_UVP_H_GLOBAL.out deleted file mode 100644 index b7481cb5f9efe2dc9099a8fe9e91cc53c9292277..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_372_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.28012904326121013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_372_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_372_UVP_M_GLOBAL.out deleted file mode 100644 index 0fa5f0fa2408b815b808a5a44d74394ac8a19f1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_372_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06912047863006592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_373_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_373_UVP_D_GLOBAL.out deleted file mode 100644 index f65b646f4a569a757df3b2b16cd9d7ca82d9d00a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_373_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03926699161529541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_373_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_373_UVP_H_GLOBAL.out deleted file mode 100644 index 8064352d7d50db50c5c69718e9300a22b67d9960..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_373_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21510369380315145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_373_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_373_UVP_M_GLOBAL.out deleted file mode 100644 index 4a1828a368f80912d783a4090858f4950184cf35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_373_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03264507055282593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_374_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_374_UVP_D_GLOBAL.out deleted file mode 100644 index 54eace6adeefc65473fa10e96f98e7f3aec00466..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_374_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04692516724268595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_374_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_374_UVP_H_GLOBAL.out deleted file mode 100644 index b445fa0ff35522bb265b7de27091ccf7ff4f19fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_374_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.27671258052190145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_374_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_374_UVP_M_GLOBAL.out deleted file mode 100644 index f660e84cfb24d076e8ed4de762dcbd9f7feceaee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_374_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06620557308197021 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_375_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_375_UVP_D_GLOBAL.out deleted file mode 100644 index 4867c63cab3ce15cdfcda1ac65502488f29353d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_375_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.042679635683695476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_375_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_375_UVP_H_GLOBAL.out deleted file mode 100644 index a4a3158b7456640323c8a4e725c8a34c8a4f08a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_375_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2893761952718099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_375_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_375_UVP_M_GLOBAL.out deleted file mode 100644 index 818063c2a7419c6f60672b3046fe6e0fd4fe4002..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_375_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03270738919576009 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_3_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_3_UVP_D_GLOBAL.out deleted file mode 100644 index c8deda92faddaec0580352948548f8a4188d92ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_3_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0279382904370626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_3_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_3_UVP_H_GLOBAL.out deleted file mode 100644 index 9368d96c1b1c07adacdbb013769f4a3c45e8bf89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_3_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8654076298077902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_3_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_3_UVP_M_GLOBAL.out deleted file mode 100644 index d1ec436543297ce12b6bec075d60744997fc3ec1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_3_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7120842536290486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_40_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_40_UVP_D_GLOBAL.out deleted file mode 100644 index 7a8ed7c1c1aec0537ab809e1c6335b9cde366255..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_40_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3195896387100219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_40_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_40_UVP_H_GLOBAL.out deleted file mode 100644 index 477e6327977013fd9c7b7be0d8d6ff3fdbac22bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_40_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3753199100494387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_40_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_40_UVP_M_GLOBAL.out deleted file mode 100644 index e759a62c3458478a95089ba2da4f635297570128..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_40_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9743597626686096 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_41_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_41_UVP_D_GLOBAL.out deleted file mode 100644 index 83432ff94e9cb8eb42c47ad93ce0e4d13af2fb71..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_41_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.148692786693573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_41_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_41_UVP_H_GLOBAL.out deleted file mode 100644 index 2a52dc3a3206026eb63a677a11294cf975122c52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_41_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1782118042310077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_41_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_41_UVP_M_GLOBAL.out deleted file mode 100644 index 798af938621ce349c8fd02441bb3631adc5c6216..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_41_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1389972805976867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_42_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_42_UVP_D_GLOBAL.out deleted file mode 100644 index d47ca78d92facf5a55bcaae2768dcd0e85946407..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_42_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08093410730361938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_42_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_42_UVP_H_GLOBAL.out deleted file mode 100644 index df9d861ac2d564c3f7385f83cbd9d907434444b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_42_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.26075139045715334 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_42_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_42_UVP_M_GLOBAL.out deleted file mode 100644 index f9c97dbdcea9d0027c26625806d6ad0a08d04b4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_42_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.040575472513834636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_43_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_43_UVP_D_GLOBAL.out deleted file mode 100644 index 8380bc619e30c1301ee6f81f3cd186001cc4abbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_43_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.44371599753697716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_43_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_43_UVP_H_GLOBAL.out deleted file mode 100644 index 71a8afe36ca9efe8b9c8922d94272694acd3e863..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_43_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0933800180753073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_43_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_43_UVP_M_GLOBAL.out deleted file mode 100644 index 2680045573066d241fe3211719866b769917f5a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_43_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.912554124991099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_44_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_44_UVP_D_GLOBAL.out deleted file mode 100644 index eef434f3e7a501c8545b46c92e0a53a69c4361d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_44_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.305608292420705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_44_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_44_UVP_H_GLOBAL.out deleted file mode 100644 index 148226217e1fe650380ff58e721884b8ce03a93a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_44_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0700371702512106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_44_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_44_UVP_M_GLOBAL.out deleted file mode 100644 index df668c22a9ee520ed0ac9441a77e9b8ca9d7b283..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_44_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.513864282766978 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_45_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_45_UVP_D_GLOBAL.out deleted file mode 100644 index f9be7a58347bf78f33713f184c9350d7f3e2b1ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_45_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3362735549608866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_45_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_45_UVP_H_GLOBAL.out deleted file mode 100644 index e6d70d3b8f540392147858648d7aff70f144a808..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_45_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.098825216293335 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_45_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_45_UVP_M_GLOBAL.out deleted file mode 100644 index 984863196f4d6f59b2f600c3193151caee69d429..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_45_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.208491325378418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_46_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_46_UVP_D_GLOBAL.out deleted file mode 100644 index 25bcf46d4ce12da8cfee1558ee822695d49f5eda..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_46_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.528756841023763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_46_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_46_UVP_H_GLOBAL.out deleted file mode 100644 index bb19b27058d5c70f1bea0295479308cb0a0fd398..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_46_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9331140875816346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_46_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_46_UVP_M_GLOBAL.out deleted file mode 100644 index 666c3775acaacf0ef2706bd7066dd5e848cc9ed6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_46_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1991290807724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_4_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_4_UVP_D_GLOBAL.out deleted file mode 100644 index e185de8fffb27f45caa7c3e9afeac73b1370ce53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_4_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3326925198237101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_4_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_4_UVP_H_GLOBAL.out deleted file mode 100644 index 774edce5488223fec3c1218747cbe4638c3ad93d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_4_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7599940021832784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_4_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_4_UVP_M_GLOBAL.out deleted file mode 100644 index f3ce5fbf71116bc7b48eb18337ac2259823507b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_4_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17277683019638063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_51_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_51_UVP_D_GLOBAL.out deleted file mode 100644 index d3830e373aa8b9e61e38e4a31febebbadc9cbf0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_51_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8661137580871583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_51_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_51_UVP_H_GLOBAL.out deleted file mode 100644 index 755d40a329046d1e3f1d14a4ecb80a63b8ed8755..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_51_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1816295107205708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_51_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_51_UVP_M_GLOBAL.out deleted file mode 100644 index 541f24e013f4a04c9235309108949ac94f2df5d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_51_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.436044450600942 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_530_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_530_UVP_D_GLOBAL.out deleted file mode 100644 index ab581d4bc3f0574046aab58db9a0359db095447f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_530_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.025442628065745036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_530_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_530_UVP_H_GLOBAL.out deleted file mode 100644 index 1796e3ec4d1a1ffe53a689d1e10e17231fb4e300..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_530_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17409218947092692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_530_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_530_UVP_M_GLOBAL.out deleted file mode 100644 index 7c021b1be2748a07ff1d556ba3dd275b0661eb7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_530_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.014660004774729412 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_534_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_534_UVP_D_GLOBAL.out deleted file mode 100644 index 6f5812c73d21a0e6c5f950bab5b3ade6f5e53dec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_534_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.01987408399581909 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_534_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_534_UVP_H_GLOBAL.out deleted file mode 100644 index 6287d18223ca962a1771836661c84dabfbd056f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_534_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1990553339322408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_534_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_534_UVP_M_GLOBAL.out deleted file mode 100644 index dd12ef06e40b0064a330c44b8eccae8761181982..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_534_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.01481797695159912 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_53_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_53_UVP_D_GLOBAL.out deleted file mode 100644 index 88e20b0658773b3c766b52b6e729f45b7e8d35bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_53_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -53_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.012112367153167724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_53_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_53_UVP_H_GLOBAL.out deleted file mode 100644 index 292ce33b7a6a300e70a51fdb97e09e531a970634..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_53_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -53_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.14867236216862997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_53_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_53_UVP_M_GLOBAL.out deleted file mode 100644 index 92b195a350e09ad8f5047ecd24244e4ab324d2f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_53_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -53_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.004913206895192464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_540_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_540_UVP_D_GLOBAL.out deleted file mode 100644 index c208a8a0c4fe0635ab7c54513e12aff2adcec493..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_540_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.011243991057078044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_540_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_540_UVP_H_GLOBAL.out deleted file mode 100644 index 070c826a98cf9a63985df028e40d1b90ead6d21f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_540_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18863321940104166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_540_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_540_UVP_M_GLOBAL.out deleted file mode 100644 index f55cc180f72304fbdc4103fd4cc8237e748ce467..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_540_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.004950881004333496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_54_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_54_UVP_D_GLOBAL.out deleted file mode 100644 index 9b8597ff4c5636d329c05e5d64f21fcb52491de6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_54_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5064293265342712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_54_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_54_UVP_H_GLOBAL.out deleted file mode 100644 index 93e0b4b6f5a141dc030a87c777f3067d143c2102..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_54_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9531463861465455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_54_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_54_UVP_M_GLOBAL.out deleted file mode 100644 index 74e3f4650660fcaaba107a29b550e36483dfca23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_54_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4965670386950174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_56_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_56_UVP_D_GLOBAL.out deleted file mode 100644 index c6bfbccb5e40c60ede8d9f426d730e3404a10e43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_56_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -56_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.01422791878382365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_56_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_56_UVP_H_GLOBAL.out deleted file mode 100644 index c22b8ca0ec47f4cd42961f03eb68682be58aec73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_56_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -56_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.15631263256072997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_56_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_56_UVP_M_GLOBAL.out deleted file mode 100644 index df16641423ea9459bb07148beb8bcb39cfd6b33d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_56_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -56_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.009335668881734212 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_57_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_57_UVP_D_GLOBAL.out deleted file mode 100644 index d64c3485e9c5a162d424590e6166a7c25f29ddb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_57_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.801894450187683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_57_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_57_UVP_H_GLOBAL.out deleted file mode 100644 index 9e6f2dba45ff37a93d2314fdacf7f7d2aa95c2ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_57_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3892147302627564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_57_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_57_UVP_M_GLOBAL.out deleted file mode 100644 index 19e746f062a71843cf8c380c24f3ce647fe6feb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_57_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2549477775891622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_59_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_59_UVP_D_GLOBAL.out deleted file mode 100644 index d96b03a01f023b526982fe6d5bfe063525f64718..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_59_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8632353663444519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_59_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_59_UVP_H_GLOBAL.out deleted file mode 100644 index 8e07c4f1123c7efe7265ca551ff52b7a325ac37b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_59_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3964202364285787 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_59_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_59_UVP_M_GLOBAL.out deleted file mode 100644 index d295fa6f882cd76e33f78876ba5d4db4c9647428..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_59_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6640260457992554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_5_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_5_UVP_D_GLOBAL.out deleted file mode 100644 index 37865eb908513b63477c9a115a75d6ffb10e02ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_5_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17945947647094726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_5_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_5_UVP_H_GLOBAL.out deleted file mode 100644 index 621b840c02837e73d8d5899a8190d0090578301a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_5_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7684854547182719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_5_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_5_UVP_M_GLOBAL.out deleted file mode 100644 index c683c90eda9cf47e60e73c91f0ef2a72345b9fe1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_5_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31541833877563474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_60_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_60_UVP_D_GLOBAL.out deleted file mode 100644 index eeef6ea8d3fc996d6dc2a6acf851e4cfcec1d2be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_60_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10606609582901001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_60_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_60_UVP_H_GLOBAL.out deleted file mode 100644 index 6f0da1a676b381407d0e452deca9c0011e973b99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_60_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23469317356745403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_60_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_60_UVP_M_GLOBAL.out deleted file mode 100644 index 874762f7e97854ee11f09342a90e48f1711bfe38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_60_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09563965797424316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_61_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_61_UVP_D_GLOBAL.out deleted file mode 100644 index 4f41728559827cda803a3fcdde038e15686b0717..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_61_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0612367351849874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_61_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_61_UVP_H_GLOBAL.out deleted file mode 100644 index c381e094f1cf2470100c514970b971970b45ff23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_61_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2687318325042725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_61_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_61_UVP_M_GLOBAL.out deleted file mode 100644 index 610b68a8bab702b676913dc70dd1eea595f509dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_61_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5015146652857463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_62_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_62_UVP_D_GLOBAL.out deleted file mode 100644 index 98e81486375ca22829101135d99ae4a91ff96c85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_62_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5574555118878683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_62_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_62_UVP_H_GLOBAL.out deleted file mode 100644 index a2af171a000b7fb13c41f8d91ae9936ca9a74838..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_62_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.328245917956034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_62_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_62_UVP_M_GLOBAL.out deleted file mode 100644 index 410c94eec2499bcef7f35918f2c53dfccedd4f75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_62_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9262960433959961 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_63_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_63_UVP_D_GLOBAL.out deleted file mode 100644 index dad2d6bd7579ec9cd94b2ef2ee19c6881c501add..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_63_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0353446801503499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_63_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_63_UVP_H_GLOBAL.out deleted file mode 100644 index c5eb88642c13834a0293aa89730387ba93109a0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_63_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4647430340449015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_63_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_63_UVP_M_GLOBAL.out deleted file mode 100644 index 753940a80c9c4892525e23dc97ca86b18f5d5df5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_63_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7466560045878092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_64_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_64_UVP_D_GLOBAL.out deleted file mode 100644 index c22b1cd01e80d000e9224082c2ed42c6f5b548ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_64_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2699401378631592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_64_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_64_UVP_H_GLOBAL.out deleted file mode 100644 index 52e71710167c13c270d7fa1b2e9f93bacece20b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_64_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6668896913528443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_64_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_64_UVP_M_GLOBAL.out deleted file mode 100644 index 1b0a0a9adf04887eedeb69a580474fc2117fed83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_64_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.305735719203949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_68_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_68_UVP_D_GLOBAL.out deleted file mode 100644 index 16be9b97833284bc93fe06d2636e2824766d65b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_68_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04288517236709595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_68_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_68_UVP_H_GLOBAL.out deleted file mode 100644 index 8063cc77605954d1234b27efa17d7870c78fc8e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_68_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21157700618108113 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_68_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_68_UVP_M_GLOBAL.out deleted file mode 100644 index 595b88996ac1321929547a0a2ff996648494db01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_68_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06947287718454996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_6_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_6_UVP_D_GLOBAL.out deleted file mode 100644 index 51cf8dd042ecce8644977e83e8abb209654faae4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_6_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04161843458811442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_6_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_6_UVP_H_GLOBAL.out deleted file mode 100644 index 3c4316afb036b3fef183a1755d7a561ef6e3f5f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_6_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24439172347386678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_6_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_6_UVP_M_GLOBAL.out deleted file mode 100644 index 336bf5ab4d6fb484d39031f1471c415fbdf8ce45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_6_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.054525578022003175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_73_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_73_UVP_D_GLOBAL.out deleted file mode 100644 index 5be7f643e111b882f3669baaec005ad90db4387d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_73_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02320538361867269 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_73_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_73_UVP_H_GLOBAL.out deleted file mode 100644 index 4c516fc1a5c496772325a45fd16f17b7f4a6af33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_73_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.210616401831309 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_73_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_73_UVP_M_GLOBAL.out deleted file mode 100644 index 126430ebd709e15f979c986d06ac8c8fa6047b20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_73_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.030874991416931154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_76_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_76_UVP_D_GLOBAL.out deleted file mode 100644 index a146ff337dca1a9582802b07678abff7d4c9329e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_76_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3018473823865255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_76_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_76_UVP_H_GLOBAL.out deleted file mode 100644 index fe955ac3f671443ed090112fd0e9badb7b4e3644..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_76_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24103544950485228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_76_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_76_UVP_M_GLOBAL.out deleted file mode 100644 index 3158d2088189f00a13a6d36409797de3702fe27d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_76_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.046300216515858965 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_77_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_77_UVP_D_GLOBAL.out deleted file mode 100644 index 739487df599c64f593eba11d694c5c9a401557b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_77_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.16349157094955444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_77_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_77_UVP_H_GLOBAL.out deleted file mode 100644 index babd67c58f219eec2c6dc6ca0d40f59d34a3b26e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_77_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.39703319072723386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_77_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_77_UVP_M_GLOBAL.out deleted file mode 100644 index b9cc594491ae5f9529f0cf2dc61055271822f7d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_77_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07752060890197754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_83_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_83_UVP_D_GLOBAL.out deleted file mode 100644 index 08f53f4f7493944616edf92684c3dff30bfdd1f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_83_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -83_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.023598078886667886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_83_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_83_UVP_H_GLOBAL.out deleted file mode 100644 index 0b2dbc20a2421895992887a959d13c17ac1c981d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_83_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -83_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2112926999727885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_83_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_83_UVP_M_GLOBAL.out deleted file mode 100644 index a0eb4ad069a2ff7a3f2d2ea60be0982d3aa80c74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_83_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -83_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.015424946943918863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_86_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_86_UVP_D_GLOBAL.out deleted file mode 100644 index bc0a3e291b3ac6c7e71b6e4dd5d482dad3c9d9b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_86_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -86_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6429357647895813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_86_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_86_UVP_H_GLOBAL.out deleted file mode 100644 index bf58f8fa10ff3dfbcfc5844d987a66b845bf3e15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_86_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -86_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7403874119122823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_86_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_86_UVP_M_GLOBAL.out deleted file mode 100644 index c7021fa8fa9093035ec142e4c56c059ef9e267b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_86_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -86_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.48258356253306073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_87_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_87_UVP_D_GLOBAL.out deleted file mode 100644 index 9c4e7c359748070f70ba8ec6c2758647f477f979..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_87_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4716081698735555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_87_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_87_UVP_H_GLOBAL.out deleted file mode 100644 index 2d4dab02e5d85cf8f69684f75fb673f5471bf53d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_87_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7534463961919149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_87_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_87_UVP_M_GLOBAL.out deleted file mode 100644 index 53e202c938cb34b4ff62bd74ac61475b595459b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_87_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2801068385442098 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_8_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_8_UVP_D_GLOBAL.out deleted file mode 100644 index 595fe93ed83e77ed3dc73b503d8053d42b33ba4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_8_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6018750270207723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_8_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_8_UVP_H_GLOBAL.out deleted file mode 100644 index dc6ef809579caf4de1af3f4c0ac9f74990c99440..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_8_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9230194091796875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_8_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_8_UVP_M_GLOBAL.out deleted file mode 100644 index fea294b138542d1465194f3b6001cdbfe4acca14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_8_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6135592142740885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_96_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_96_UVP_D_GLOBAL.out deleted file mode 100644 index df54494b8613d75b79a6e318b0d09159bd533b0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_96_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5477761308352153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_96_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_96_UVP_H_GLOBAL.out deleted file mode 100644 index 9ea8538e9af27456ba6acb923c3b3953fcc68601..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_96_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8229972084363302 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_96_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_96_UVP_M_GLOBAL.out deleted file mode 100644 index 1d0c9f81bc43f24940c6922fb08fcdc316c81da0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_96_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20374073187510172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_9_UVP_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_9_UVP_D_GLOBAL.out deleted file mode 100644 index fedeed95eff49f7a693a76b6b600fcf0076af400..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_9_UVP_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1023512880007427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_9_UVP_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_9_UVP_H_GLOBAL.out deleted file mode 100644 index 33acf8c1f4588990ddcd92546f6a46f5b82c11db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_9_UVP_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.596857444445292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T1/0_9_UVP_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T1/0_9_UVP_M_GLOBAL.out deleted file mode 100644 index da97795b33052e74be39ba1ca2d593ec87a53471..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T1/0_9_UVP_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_UVP -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.785010838508606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197812_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197812_D_GLOBAL.out deleted file mode 100644 index 17f7c3a60763620f88170abc860b4834f1fa9850..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197812 STATION NETCDFs -0.19226397275924684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197812_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197812_H_GLOBAL.out deleted file mode 100644 index fb2aeb7c6f83de2862f1ef985e658b264c7a7a85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197812 STATION NETCDFs -0.16828092734018962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197812_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197812_M_GLOBAL.out deleted file mode 100644 index c5bf1824f3dfd832701958a37d1a37e73cad3c6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197812 STATION NETCDFs -0.23416418234507244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197901_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197901_D_GLOBAL.out deleted file mode 100644 index 7b28608a2d379ecb1a58dd9cc103a6e4c81ba73e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.022199598948160808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197901_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197901_H_GLOBAL.out deleted file mode 100644 index f1a2d7e554be4d273eeb3d1e57266a02c94878b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.167376705010732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197901_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197901_M_GLOBAL.out deleted file mode 100644 index 5ed743cce0bcec61302564f9250ee174df6a1666..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197901 STATION NETCDFs -0.11771959861119588 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197902_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197902_D_GLOBAL.out deleted file mode 100644 index 5c79c882335feba2bcb54321d1a7361746dd7be7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197902 STATION NETCDFs -0.03460832039515178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197902_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197902_H_GLOBAL.out deleted file mode 100644 index 9b96ca13ececdf7e276f240225e193e94db8c989..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197902 STATION NETCDFs -0.06076538562774658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197902_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197902_M_GLOBAL.out deleted file mode 100644 index 00a18a4e9ca7f5c13e1cfdcac91d0512198159c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197902 STATION NETCDFs -0.11289039452870687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197903_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197903_D_GLOBAL.out deleted file mode 100644 index c1eee40ba87aa33c697b8667a1f848a760c737b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.024189261595408122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197903_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197903_H_GLOBAL.out deleted file mode 100644 index 9c4017d9bd4e2377387098f73dbbda8bdc2a1cf3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.03548634052276611 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197903_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197903_M_GLOBAL.out deleted file mode 100644 index 287b5348a2593b324c42ad1582f30974aeb1fbfb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197903 STATION NETCDFs -0.027532406648000083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197904_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197904_D_GLOBAL.out deleted file mode 100644 index f8694b7286af9ff7959082251596561dcd31fc3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.031813275814056394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197904_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197904_H_GLOBAL.out deleted file mode 100644 index 92d4a62659de407a014b1274396a750565e36604..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.037066551049550374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197904_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197904_M_GLOBAL.out deleted file mode 100644 index f101090b4ac6d8182dc7d91f6d96edd7fb472995..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197904 STATION NETCDFs -0.11387950579325358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197905_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197905_D_GLOBAL.out deleted file mode 100644 index 584cae414410df547e9fa840540fb99ba4c82b2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.08335978984832763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197905_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197905_H_GLOBAL.out deleted file mode 100644 index c0266efbaafd2cbf4c5b02ebac0663a5111455e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.039490485191345216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197905_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197905_M_GLOBAL.out deleted file mode 100644 index 5c0ee0aa2ea3d1e1593ffc2a5e8be02d8ed30a0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197905 STATION NETCDFs -0.02710497776667277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197906_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197906_D_GLOBAL.out deleted file mode 100644 index 14a70a63ab7990ef35829652edc294c84ef54c83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.016752390066782634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197906_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197906_H_GLOBAL.out deleted file mode 100644 index b2601124441b918d04bcd1e8b88dc7df5b4acfe0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.028670346736907958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197906_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197906_M_GLOBAL.out deleted file mode 100644 index 8068aadb1be4618af5bcc982c2d5e966c464ef69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197906 STATION NETCDFs -0.024372851848602294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197907_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197907_D_GLOBAL.out deleted file mode 100644 index aad84ed73969104885504f9ea8c8b0bce3e994f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.25089919567108154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197907_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197907_H_GLOBAL.out deleted file mode 100644 index 516c9ac8a969206e4d4103b4c831f80cdc29d700..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.03442803621292114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197907_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197907_M_GLOBAL.out deleted file mode 100644 index 394c5095fee4023e206c77a7ecdc0c4cfc8d3c27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197907 STATION NETCDFs -0.024499861399332683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197908_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197908_D_GLOBAL.out deleted file mode 100644 index 3e0f0ee6a972fc89bab9985028f6d8ec42421fa4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.024598220984141033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197908_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197908_H_GLOBAL.out deleted file mode 100644 index f29031b7ca4351d6c4bf4259a059534cbdba975b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.2385704557100932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197908_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197908_M_GLOBAL.out deleted file mode 100644 index 12a93ea4987f118d7a6bf1161a0f164ce5f881eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197908 STATION NETCDFs -0.07761373917261759 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197909_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197909_D_GLOBAL.out deleted file mode 100644 index b53a38807678e904fa838396ebaa99f8ad91450b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.02702893813451131 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197909_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197909_H_GLOBAL.out deleted file mode 100644 index f4d582fd9d7ae47f0bd105aa8ac580a4bffc3286..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.04007728894551595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197909_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197909_M_GLOBAL.out deleted file mode 100644 index b2b09e5624d9c3864e7823be99101f543f39f3f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197909 STATION NETCDFs -0.022631895542144776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197910_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197910_D_GLOBAL.out deleted file mode 100644 index 8a0f7d80bcd8c4ae3f1ffe3b2699526b6be1a143..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.24334770838419598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197910_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197910_H_GLOBAL.out deleted file mode 100644 index cc9334eb6da24e29dae317fc5d4db512fa12ced2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.2245606541633606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197910_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197910_M_GLOBAL.out deleted file mode 100644 index 0291430388d276e1fcf8aa2d0ae47fae75861781..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197910 STATION NETCDFs -0.027065726121266682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197911_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197911_D_GLOBAL.out deleted file mode 100644 index b94811eea95eb5970fd867f6a35e45bf3478feb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.03360110918680827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197911_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197911_H_GLOBAL.out deleted file mode 100644 index 1b4e5d771360f48e4c72a1f687e060c3862e7cb1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.02704488436381022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197911_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197911_M_GLOBAL.out deleted file mode 100644 index 8d2f583e1936dcfb3dad08385d5bbd0957f7a593..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197911 STATION NETCDFs -0.021487128734588624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197912_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197912_D_GLOBAL.out deleted file mode 100644 index 0ea7c23731a7a4667ad182989b4c1133cb91f4fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.027058414618174233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197912_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197912_H_GLOBAL.out deleted file mode 100644 index 94e7e81e83b4901cb806f1dd7e4fb6d1873b13cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.18534638086954752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_197912_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_197912_M_GLOBAL.out deleted file mode 100644 index c3d14f59bc8e88062812e3379a37605a68b001cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_197912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 197912 STATION NETCDFs -0.04090971946716308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198001_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198001_D_GLOBAL.out deleted file mode 100644 index 2f381ed2767a57104ef567eae0b0f71822e70bd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.025873049100240072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198001_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198001_H_GLOBAL.out deleted file mode 100644 index 28cbbee225302e1a2322b034328c1416c2583517..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.021620702743530274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198001_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198001_M_GLOBAL.out deleted file mode 100644 index 05e0d0c65ea8a8fe46eb5b5275ba42197bea7cce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198001 STATION NETCDFs -0.03531019687652588 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198002_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198002_D_GLOBAL.out deleted file mode 100644 index 0f6ca10a7dcfff499c66baf5f740c41230a7e50d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.02216498057047526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198002_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198002_H_GLOBAL.out deleted file mode 100644 index 429c224cd1b21cfc46591a64c2776515eda447dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.031156988938649495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198002_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198002_M_GLOBAL.out deleted file mode 100644 index c6e2f22070ff3d43392661d4dc1851a3a59b18bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198002 STATION NETCDFs -0.22169552246729532 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198003_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198003_D_GLOBAL.out deleted file mode 100644 index f4b56e72dfabf0fdf674d10ec6c93560b5db0347..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.19322511752446492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198003_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198003_H_GLOBAL.out deleted file mode 100644 index e8aa0b3f27f555af2c2a09cafa8ec77bc584174d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.029093078772226968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198003_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198003_M_GLOBAL.out deleted file mode 100644 index aaa427c98ee5c8dc707cd604637e0d957e17124d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198003 STATION NETCDFs -0.19895217816034952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198004_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198004_D_GLOBAL.out deleted file mode 100644 index 8827f074f1247e39537302cd3fe8767950b90493..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.026673718293507894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198004_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198004_H_GLOBAL.out deleted file mode 100644 index b5c4a2c77759315d43c7f58f6526986052e14a97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.027664629618326823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198004_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198004_M_GLOBAL.out deleted file mode 100644 index 75432e46aa9b25ba4001603b329265a9f997f55f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198004 STATION NETCDFs -0.028374803066253663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198005_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198005_D_GLOBAL.out deleted file mode 100644 index c55923cd5befdcd6f9664956df39dfa560652922..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.15741945505142213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198005_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198005_H_GLOBAL.out deleted file mode 100644 index dbc591e14522bdd43b47bb94fcb65822cfd1bf31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.025856955846150716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198005_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198005_M_GLOBAL.out deleted file mode 100644 index e5f8a1c0715d32fdba402ffa8be04a87608ec2d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198005 STATION NETCDFs -0.021188116073608397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198006_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198006_D_GLOBAL.out deleted file mode 100644 index ff9ecc97fe885089ac3ec0d8539379a3048e38b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.2507308562596639 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198006_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198006_H_GLOBAL.out deleted file mode 100644 index 3489da80aea488f60386688b3a53fca59aa5280a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.020631190141042074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198006_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198006_M_GLOBAL.out deleted file mode 100644 index 50a822940dbd91578a1b3a109ec096c5a2fa64bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198006 STATION NETCDFs -0.01920347213745117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198007_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198007_D_GLOBAL.out deleted file mode 100644 index 437c1bfd1fb8a5efe75efe58d99a34bbd83b16fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.2209882418314616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198007_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198007_H_GLOBAL.out deleted file mode 100644 index 119d0331ca7133ea7427a346d40b3f6885b2f9b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.2045054237047831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198007_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198007_M_GLOBAL.out deleted file mode 100644 index 31ef365a6a75ce281c3f63ced466a0c2f34208ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198007 STATION NETCDFs -0.11245980660120646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198008_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198008_D_GLOBAL.out deleted file mode 100644 index 8e77a16b140bcd8fd264c18bef9a971e914afcc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.20013999144236247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198008_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198008_H_GLOBAL.out deleted file mode 100644 index 89fd87fa33193fe7ece703f9c20b9899a5a491cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.024040706952412925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198008_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198008_M_GLOBAL.out deleted file mode 100644 index 91f7c3f2fdbc70a068639db77165d85a2aa3e138..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198008 STATION NETCDFs -0.03618110418319702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198009_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198009_D_GLOBAL.out deleted file mode 100644 index cf680230b16ab6ece7828a73be4c45f7a49f17c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.1972072680791219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198009_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198009_H_GLOBAL.out deleted file mode 100644 index 59c7e0a0e66e164b0223eeb16e135bce59bdf4ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.13849490483601887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198009_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198009_M_GLOBAL.out deleted file mode 100644 index af778e66c7965c1b5542af189e1ef868d2459373..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198009 STATION NETCDFs -0.02284708817799886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198010_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198010_D_GLOBAL.out deleted file mode 100644 index 5928212a98c86fa16925bed10f6a48954e778194..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.0355521043141683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198010_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198010_H_GLOBAL.out deleted file mode 100644 index 12b29578a825a4dedfad3df6cab77a14e6f1983d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.03613856236139933 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198010_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198010_M_GLOBAL.out deleted file mode 100644 index 6924df1fe7ab1c790f04311933775b995214ea60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198010 STATION NETCDFs -0.022120654582977295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198011_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198011_D_GLOBAL.out deleted file mode 100644 index b078b034cc704963127ef4cb72e073701d9815f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198011 STATION NETCDFs -0.020019185543060303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198011_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198011_H_GLOBAL.out deleted file mode 100644 index f2e5384425ca164620fd24aa532e3e6a8d4e3f45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198011 STATION NETCDFs -0.0349212368329366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198011_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198011_M_GLOBAL.out deleted file mode 100644 index 66cedd97fb6ca2f2f6ec1a31a8cfd1ae8bd3dd8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198011 STATION NETCDFs -0.028764394919077556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198012_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198012_D_GLOBAL.out deleted file mode 100644 index 0bcff6d28d21ec98240205cea32ba717520b8825..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.08964224656422932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198012_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198012_H_GLOBAL.out deleted file mode 100644 index da8c1ce842028e46d6e8e365fd12300565a4b085..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.019115177790323894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198012_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198012_M_GLOBAL.out deleted file mode 100644 index 051de31c22da7c84592cab4cf32d028eeb702c6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198012 STATION NETCDFs -0.018659241994222007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198101_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198101_D_GLOBAL.out deleted file mode 100644 index 0d45c75d4bf6accc84978af11f919693fb60a31c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.055326664447784425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198101_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198101_H_GLOBAL.out deleted file mode 100644 index 40de5de35ae82424535a7e26833633d6318fd912..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.021609707673390707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198101_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198101_M_GLOBAL.out deleted file mode 100644 index 83ce33c5a9396026a53e484eb6055e8626b9c458..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198101 STATION NETCDFs -0.11445762316385905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198102_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198102_D_GLOBAL.out deleted file mode 100644 index d31f7dd6e021c81f0d23b0c9a15c38548fb1bbf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.044777909914652504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198102_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198102_H_GLOBAL.out deleted file mode 100644 index 74e46e8a181ea2ee958fa9a638d74ac21bcfac2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.039607516924540204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198102_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198102_M_GLOBAL.out deleted file mode 100644 index e69399292e23eb4c897f7fda2738832580e38525..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198102 STATION NETCDFs -0.22563769022623698 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198103_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198103_D_GLOBAL.out deleted file mode 100644 index 62ae32937d2a12b231352c9562e9bef9a282e414..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.020201818148295084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198103_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198103_H_GLOBAL.out deleted file mode 100644 index 8fdd8a4fc60b0ad9054397c112635e8bec4bf5d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.023332961400349937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198103_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198103_M_GLOBAL.out deleted file mode 100644 index f67a148d61b81821d6e814841ebb33e489f1cd91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198103 STATION NETCDFs -0.24495943784713745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198104_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198104_D_GLOBAL.out deleted file mode 100644 index 4298154aa2ca25b30d7151a471dee7a0711fe0a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198104 STATION NETCDFs -0.03359439770380656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198104_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198104_H_GLOBAL.out deleted file mode 100644 index 287b0e762b27da5b9d4599e2d69d42ab0ac71896..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198104 STATION NETCDFs -0.2012492060661316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198104_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198104_M_GLOBAL.out deleted file mode 100644 index 158633f66407521a6ec4fced15b3287924966cd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198104 STATION NETCDFs -0.043875813484191895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198105_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198105_D_GLOBAL.out deleted file mode 100644 index 911541698c1279d4581c298db4f0114362e54c96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198105 STATION NETCDFs -0.07493975559870401 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198105_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198105_H_GLOBAL.out deleted file mode 100644 index 693675ea1fb05f7f76acc48a5c623bd37ce36d25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198105 STATION NETCDFs -0.18359623750050863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198105_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198105_M_GLOBAL.out deleted file mode 100644 index 58d05c77572623cfe82e4bc910646fde3938fef5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198105 STATION NETCDFs -0.035572536786397296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198106_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198106_D_GLOBAL.out deleted file mode 100644 index 679386b5f3a5341b7d9f20fc1c284111072f04c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.05667730569839478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198106_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198106_H_GLOBAL.out deleted file mode 100644 index aee046db2dc0822dcf9343a2a1b8677707499129..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.02450554370880127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198106_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198106_M_GLOBAL.out deleted file mode 100644 index ec0f6e194c57b763bbf7bcffd90f67b716b96e9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198106 STATION NETCDFs -0.22773865461349488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198107_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198107_D_GLOBAL.out deleted file mode 100644 index 51c53e3886fe39bfc9a6a236649f103a948c15af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.032979142665863034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198107_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198107_H_GLOBAL.out deleted file mode 100644 index 5abad8b34b9bcda779d945e733729830374c42d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.06239155530929565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198107_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198107_M_GLOBAL.out deleted file mode 100644 index 356c89a1e234438caecf299c4e21a081822f1823..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198107 STATION NETCDFs -0.021291796366373697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198108_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198108_D_GLOBAL.out deleted file mode 100644 index 20dc731660b8a1ca88953ecc85d204aaf7ec6c1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.0616369088490804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198108_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198108_H_GLOBAL.out deleted file mode 100644 index 8329dc2b59bab2fe05e87ae06f87b9c0658d62eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.04118003845214844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198108_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198108_M_GLOBAL.out deleted file mode 100644 index 7e73267bfb20431e0e207f9429656e5ad00480df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198108 STATION NETCDFs -0.03950161536534627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198109_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198109_D_GLOBAL.out deleted file mode 100644 index f03943870285c60d047f352646d76450cdda7b22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.040288253625233965 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198109_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198109_H_GLOBAL.out deleted file mode 100644 index 505dca951561ab563b906da0a98f8ced62a98240..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.24626474777857463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198109_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198109_M_GLOBAL.out deleted file mode 100644 index d465a931575f28edf67c26a0bad7f0568cb6ea14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198109 STATION NETCDFs -0.23932059605916342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198110_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198110_D_GLOBAL.out deleted file mode 100644 index 99700585b9412615ef1d4ef45bd110dc062f1847..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.08458511829376221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198110_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198110_H_GLOBAL.out deleted file mode 100644 index e1c2fc4b73deaa3df31e49f882a8c0105fb4eb4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.027362696329752603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198110_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198110_M_GLOBAL.out deleted file mode 100644 index 8a5c623221992ffe32e44771a05e61ea2ecc8be6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198110 STATION NETCDFs -0.02261221408843994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198111_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198111_D_GLOBAL.out deleted file mode 100644 index 3860c761157990a05169e443319ae8c0d95fc74e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.023305785655975342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198111_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198111_H_GLOBAL.out deleted file mode 100644 index 2bbf0168186f8b70ddf18a247de87f4a965470db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.04552939732869466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198111_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198111_M_GLOBAL.out deleted file mode 100644 index 5f857ef702b7a1e4301289bed66f4a0c7789bb16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198111 STATION NETCDFs -0.04426501592000325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198112_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198112_D_GLOBAL.out deleted file mode 100644 index df13339b055171ef4c239d66c84ccc981aaf185d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.23208208878835043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198112_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198112_H_GLOBAL.out deleted file mode 100644 index df032eeef5a3443fc166a0cc0cd995d1ab1bfc31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.20447757641474407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198112_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198112_M_GLOBAL.out deleted file mode 100644 index 0751f53694bb15f60c9792eab39ceb82b923e9d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198112 STATION NETCDFs -0.04455542961756388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198201_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198201_D_GLOBAL.out deleted file mode 100644 index 833a0085a17c572ff655fdd2198f88eea460cde1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.23970094124476116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198201_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198201_H_GLOBAL.out deleted file mode 100644 index 8c08d8d380fd7b99cf09368afe0c8fdc4b06be2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.04083603620529175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198201_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198201_M_GLOBAL.out deleted file mode 100644 index 5468129c4c09b1d7549372d551f1164f692beddb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198201 STATION NETCDFs -0.06274662017822266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198202_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198202_D_GLOBAL.out deleted file mode 100644 index 9891442b0bafb1bc8f0e70ce37a6d557ec666e35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.2816230018933614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198202_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198202_H_GLOBAL.out deleted file mode 100644 index 5754a52e24e7429b9221f57db4e08b826a59ca92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.02783511479695638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198202_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198202_M_GLOBAL.out deleted file mode 100644 index 38a1d922da77aaedb0463143aa7e7b6262a9e095..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198202 STATION NETCDFs -0.24647202889124553 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198203_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198203_D_GLOBAL.out deleted file mode 100644 index ebc6ebf2e869106c098d919d97ffdb164d35c5cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.04050169785817464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198203_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198203_H_GLOBAL.out deleted file mode 100644 index 2eff2fde52949ebb953516c44f4b14a1f2a0f108..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.035059646765391035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198203_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198203_M_GLOBAL.out deleted file mode 100644 index e0d73cca0ff6008bdd637d88008eb61b9753dce9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198203 STATION NETCDFs -0.12149271567662558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198204_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198204_D_GLOBAL.out deleted file mode 100644 index 0bfd55f935932f79d64cbe3393090b744a078cdc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.023306238651275634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198204_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198204_H_GLOBAL.out deleted file mode 100644 index 9ab7057a0cee4523a216e0164dbf196d03446483..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.03767488797505696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198204_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198204_M_GLOBAL.out deleted file mode 100644 index b3111772f5970ab5986a5fc3b22101fe7ffce733..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198204 STATION NETCDFs -0.11636905670166016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198205_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198205_D_GLOBAL.out deleted file mode 100644 index bd5a525a40dd344434e8d052e159b8ebfdba610b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.04507439931233724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198205_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198205_H_GLOBAL.out deleted file mode 100644 index b3495253f3891f99c010309b77ce53e015221385..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.02115476131439209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198205_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198205_M_GLOBAL.out deleted file mode 100644 index 79d5213efa463fa0d8437793cc915eeb536bcc6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198205 STATION NETCDFs -0.023633821805318197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198206_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198206_D_GLOBAL.out deleted file mode 100644 index a07ea102904ede93ce326f12c518486e3ffe6bb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.05520728826522827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198206_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198206_H_GLOBAL.out deleted file mode 100644 index c6b611e4e90504656711a469e13152c2fc99fe87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.023326385021209716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198206_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198206_M_GLOBAL.out deleted file mode 100644 index 52608697ca8383f68db102ec9587123da34a508f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198206 STATION NETCDFs -0.060754617055257164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198207_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198207_D_GLOBAL.out deleted file mode 100644 index 1aace9f391f5cf706a9414b3a965ce9d0074c0f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.05395270188649495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198207_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198207_H_GLOBAL.out deleted file mode 100644 index 0eef154850f705ad4b58f9b28e7c6e45f0e97ff5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.027290757497151694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198207_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198207_M_GLOBAL.out deleted file mode 100644 index 5396061a5d8a646797c057139de7bdf6a5adacf8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198207 STATION NETCDFs -0.07437835931777954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198208_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198208_D_GLOBAL.out deleted file mode 100644 index 2e5d30f95b9d4d4ac08ac0311afe9aa7112ea402..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.19779510100682576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198208_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198208_H_GLOBAL.out deleted file mode 100644 index fa118508f481b104b0fd67fde7b299e806cc9534..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.03605740865071615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198208_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198208_M_GLOBAL.out deleted file mode 100644 index 06d3c101428f9e27c63b0ac5dd26faa83906674d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198208 STATION NETCDFs -0.023532295227050783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198209_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198209_D_GLOBAL.out deleted file mode 100644 index d6e0392eba3f95e4d8345a7b33ebbc9ccd61fbd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.049205589294433597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198209_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198209_H_GLOBAL.out deleted file mode 100644 index 16f67ddfb5903c626af7b90f1634e74d43147512..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.02233175834019979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198209_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198209_M_GLOBAL.out deleted file mode 100644 index ac5b615a57fa21399c6f43d7bc8a461f0ba9909f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198209 STATION NETCDFs -0.026055161158243814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198210_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198210_D_GLOBAL.out deleted file mode 100644 index 7690a7f833792123e878b88ee849d7f288156f85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.046494666735331217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198210_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198210_H_GLOBAL.out deleted file mode 100644 index 6cbead2a3f863804b3ee6bfc047e18ba42ca481f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.05319908857345581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198210_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198210_M_GLOBAL.out deleted file mode 100644 index d9d69ef0f24ce4e066a80f710442ac7a17a707b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198210 STATION NETCDFs -0.07841178178787231 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198211_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198211_D_GLOBAL.out deleted file mode 100644 index 6417202d2fb2f49cd13a9758014a05bbd4df9b75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.025779088338216145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198211_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198211_H_GLOBAL.out deleted file mode 100644 index db0fb9ab37889cc2c9a9a8f092fe517e76907604..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.18449434041976928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198211_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198211_M_GLOBAL.out deleted file mode 100644 index 54439845599fcfb032b00d87e7584dd70ffe7929..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198211 STATION NETCDFs -0.039414405822753906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198212_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198212_D_GLOBAL.out deleted file mode 100644 index 93aea6def1db49d4c6f081d803380f385a4b15e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.028358821074167886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198212_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198212_H_GLOBAL.out deleted file mode 100644 index 24b255eb5619c4d9062fe98481e2769caf0d8bb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.03951241970062256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198212_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198212_M_GLOBAL.out deleted file mode 100644 index 7803314da699e7bba89a5a16b3191db9a43037d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198212 STATION NETCDFs -0.24600621064503989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198301_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198301_D_GLOBAL.out deleted file mode 100644 index 80256cf6a6aa5cdc05dbaf615a5d964d47a8284c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.053308403491973876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198301_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198301_H_GLOBAL.out deleted file mode 100644 index 285ae2951725f7324e14a18b68b611e10f07f427..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.035204946994781494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198301_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198301_M_GLOBAL.out deleted file mode 100644 index 0e333d213e9bbfc9d1471547b39cdab55b7c08ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198301 STATION NETCDFs -0.06274362802505493 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198302_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198302_D_GLOBAL.out deleted file mode 100644 index 17481052402abd62e294a057b53b78f4bd940da6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.0293156901995341 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198302_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198302_H_GLOBAL.out deleted file mode 100644 index 6827f6c966222f813ca92b938d9edd61af53a46a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.0493194063504537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198302_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198302_M_GLOBAL.out deleted file mode 100644 index 5e369f849b68e30a5be6895893b979b92442ed0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198302 STATION NETCDFs -0.028185367584228516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198303_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198303_D_GLOBAL.out deleted file mode 100644 index 1badf39ac5a35b569bf264aa7fbf8f07ccaf8dcb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.03901830514272054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198303_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198303_H_GLOBAL.out deleted file mode 100644 index aabaf7ca75d5219d5654aa63f75db445647fcc1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.0245837132136027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198303_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198303_M_GLOBAL.out deleted file mode 100644 index 4f79ef4516a58757c59a6e3b50f8d2003c27b1b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198303 STATION NETCDFs -0.2475978374481201 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198304_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198304_D_GLOBAL.out deleted file mode 100644 index 76daafd6875f16d964340cfad9824325f5b72f1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.23076260089874268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198304_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198304_H_GLOBAL.out deleted file mode 100644 index f1f0b158550b9628eabc796529e8753a893b8c67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.04399553537368774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198304_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198304_M_GLOBAL.out deleted file mode 100644 index 09565cbc42b3f60f8e5f07da33a046a158f6509c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198304 STATION NETCDFs -0.020280754566192626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198305_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198305_D_GLOBAL.out deleted file mode 100644 index 3cacf09d90aa59f86b1231922eb0a66d49373e78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.23693884213765462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198305_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198305_H_GLOBAL.out deleted file mode 100644 index 68b6928adfef9e81b6685d31348c4467f6c0cbf7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.032765833536783855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198305_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198305_M_GLOBAL.out deleted file mode 100644 index 8eea14e6c124f227a8a52bfa77f7988ae5ccd61a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198305 STATION NETCDFs -0.25198613007863363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198306_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198306_D_GLOBAL.out deleted file mode 100644 index 6ab70afa4dd35d09a2e5600d421de37d7d17eb11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.2835832715034485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198306_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198306_H_GLOBAL.out deleted file mode 100644 index afcad9d1c080ffea4521c1237b5d92dddc035d79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.026649085680643718 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198306_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198306_M_GLOBAL.out deleted file mode 100644 index d7160f039bf15ba403251d2994a4cffbedb46c05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198306 STATION NETCDFs -0.05099504391352336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198307_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198307_D_GLOBAL.out deleted file mode 100644 index 49063d81fb68f6a6909ba768259899185b8db125..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.25864924589792887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198307_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198307_H_GLOBAL.out deleted file mode 100644 index 3c081cfc37b2f6da807db3dbcc3c5e1f2efcc831..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.16686464150746663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198307_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198307_M_GLOBAL.out deleted file mode 100644 index 002facc3dbead864cad138f44672f04d496b450b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198307 STATION NETCDFs -0.04055337905883789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198308_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198308_D_GLOBAL.out deleted file mode 100644 index d4ed3d1696272489473a83ea1090d4e6641f8b22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.02591580549875895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198308_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198308_H_GLOBAL.out deleted file mode 100644 index b0ca77ce3503e77245b5f26833ae5c4715a98770..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.03005055586496989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198308_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198308_M_GLOBAL.out deleted file mode 100644 index d8e8f1342b9fa4504daa3d77d7c1bde2edaf429c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198308 STATION NETCDFs -0.08507582743962606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198309_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198309_D_GLOBAL.out deleted file mode 100644 index e0cc5f7c8e598be3e5e2ab9162e997b36f544f7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.051676424344380696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198309_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198309_H_GLOBAL.out deleted file mode 100644 index 4da8ff06e9f46a69cde24b5c33976c6fd69ec2cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.2305336316426595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198309_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198309_M_GLOBAL.out deleted file mode 100644 index 83473fd697b6c53e5551cef9e64bf36ebef83ff9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198309 STATION NETCDFs -0.2929530104001363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198310_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198310_D_GLOBAL.out deleted file mode 100644 index 05102ec6e78d66324aa4dd6cc6a0b941f6a997d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.05056825081507365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198310_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198310_H_GLOBAL.out deleted file mode 100644 index 48a7bf9ed682a474165ae358c5adee18589208cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.2375330448150635 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198310_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198310_M_GLOBAL.out deleted file mode 100644 index 34edb2eb7c0b13c1fcceb74331faa698c71b7a9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198310 STATION NETCDFs -0.02753987709681193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198311_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198311_D_GLOBAL.out deleted file mode 100644 index e77db83a379ea040ba7fd8571510ff91f2a93e53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.03268941640853882 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198311_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198311_H_GLOBAL.out deleted file mode 100644 index ee673bbb803d3b0ca0b755b24524d258cc81bb08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.17258679469426472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198311_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198311_M_GLOBAL.out deleted file mode 100644 index 7295c261f69eff7ee2f2c28c678d326a58694402..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198311 STATION NETCDFs -0.030575895309448244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198312_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198312_D_GLOBAL.out deleted file mode 100644 index b6f20406ad02384c8ebb3dbb3e06f4a527a93c23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.23275916973749797 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198312_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198312_H_GLOBAL.out deleted file mode 100644 index 64208d4526148b4f7800928b4a0c9a6dbe88d377..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.05853612422943115 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198312_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198312_M_GLOBAL.out deleted file mode 100644 index 5053f10fed04dd60f42ba3510c8c6986f719cee9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198312 STATION NETCDFs -0.20202542146046956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198401_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198401_D_GLOBAL.out deleted file mode 100644 index 99960c03ff6f5563235d53b9e1b7fc7dd84326df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.06615523497263591 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198401_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198401_H_GLOBAL.out deleted file mode 100644 index b201c295e31cb0301e408a0490709c06024841d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.03392347494761149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198401_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198401_M_GLOBAL.out deleted file mode 100644 index 6f28abe5def75bd9a15802b62bff78a7c3c0235a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198401 STATION NETCDFs -0.12320553461710612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198402_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198402_D_GLOBAL.out deleted file mode 100644 index 1391821fc54d36ccf4488360a21fbbe63bf303a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.04807381629943848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198402_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198402_H_GLOBAL.out deleted file mode 100644 index 95b6f6ed9e62b76f555cac0ab87e0e243d7f4083..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.23680182695388793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198402_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198402_M_GLOBAL.out deleted file mode 100644 index 5a53ae2fdb197cae985201ab5958c49db6e4cbc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198402 STATION NETCDFs -0.027718524138132732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198403_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198403_D_GLOBAL.out deleted file mode 100644 index ea080bb44663832819892e5d29d17ab70f2ac8c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.07255870501200358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198403_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198403_H_GLOBAL.out deleted file mode 100644 index 6af228809a367ce8dc0260240de1b98cfb96df50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.03360678354899089 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198403_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198403_M_GLOBAL.out deleted file mode 100644 index 1d4a85622c040be331d7ca414ce549b2c3f19678..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198403 STATION NETCDFs -0.048739115397135414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198404_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198404_D_GLOBAL.out deleted file mode 100644 index a5fa567df415d9b210059fba1560f9466bb4bbcb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.26420731941858927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198404_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198404_H_GLOBAL.out deleted file mode 100644 index 61921d375062176645f1040a64274faf8ea99135..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.1767559051513672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198404_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198404_M_GLOBAL.out deleted file mode 100644 index 47ba50b59ab81c4e7a23a8b6842c1fcc32f90ec4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198404 STATION NETCDFs -0.06555304527282715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198405_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198405_D_GLOBAL.out deleted file mode 100644 index 8aeed55fed20f2ad63f8fa2e24ed23abdb21cbce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.038236347834269206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198405_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198405_H_GLOBAL.out deleted file mode 100644 index 6796a0713ae3eb19533943a06c032f726671fc52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.027762130896250407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198405_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198405_M_GLOBAL.out deleted file mode 100644 index 77d8c591a933541b4d545034f25bf636ce6bbcf7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198405 STATION NETCDFs -0.039988450209299725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198406_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198406_D_GLOBAL.out deleted file mode 100644 index 3a5d92a210106a776781dbe8d3959a4c8bc3f805..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.02426807483037313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198406_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198406_H_GLOBAL.out deleted file mode 100644 index f5cfd3f73cb430ffe83401ea772c3f88620231a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.2307092785835266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198406_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198406_M_GLOBAL.out deleted file mode 100644 index 6e0401de7c6ffc93ad1c86acd871b0e558db8707..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198406 STATION NETCDFs -0.24876668850580852 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198407_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198407_D_GLOBAL.out deleted file mode 100644 index 2aaaacbcee18cd825cb625f57749277a70d1fe27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.028992982705434163 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198407_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198407_H_GLOBAL.out deleted file mode 100644 index 1e05ca273c5e128a8b4a0a41329409cff704972a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.03211969534556071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198407_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198407_M_GLOBAL.out deleted file mode 100644 index aff5a44081933beb91f33c1852534b2440ab0b3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198407 STATION NETCDFs -0.0318638285001119 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198408_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198408_D_GLOBAL.out deleted file mode 100644 index ec2e39d4ace2e68535fc4171f426245cce86625d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.03314855496088664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198408_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198408_H_GLOBAL.out deleted file mode 100644 index e97fb6f785a90ea9310dbdbeb1b88f3b395bd40c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.18614867925643921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198408_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198408_M_GLOBAL.out deleted file mode 100644 index ab3c52a27200aaca09df618f73608979af752755..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198408 STATION NETCDFs -0.03659348487854004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198409_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198409_D_GLOBAL.out deleted file mode 100644 index 8964d2b128b4fc8424d903de96394a1c0fff1938..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.04356930653254191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198409_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198409_H_GLOBAL.out deleted file mode 100644 index e49702cca0f7589a3792533787095d9d1d49b3d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.09677692651748657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198409_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198409_M_GLOBAL.out deleted file mode 100644 index c95e93997ba8e9bc69717cbdb2ab869faaac574c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198409 STATION NETCDFs -0.040065670013427736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198410_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198410_D_GLOBAL.out deleted file mode 100644 index c0efb9159a16fb8284d6a82e5324f8120969e178..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.025015429655710856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198410_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198410_H_GLOBAL.out deleted file mode 100644 index 0337571c5d4f9af15c5b61138ba8eccdc3d57654..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.03027608394622803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198410_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198410_M_GLOBAL.out deleted file mode 100644 index 2615e0487eaeac7a2d5466bdaa127a6e292b0535..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198410 STATION NETCDFs -0.030392205715179442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198411_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198411_D_GLOBAL.out deleted file mode 100644 index 47c0564f095bf25d9a5f5a9585c2b9be3be34c9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.06799539724985758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198411_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198411_H_GLOBAL.out deleted file mode 100644 index 6b4ad3e7049cf770039c6f6bb8e7c2df03a395da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.04801250298817952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198411_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198411_M_GLOBAL.out deleted file mode 100644 index 82111eef08a2d31d7d9b90aee1627dcd337264d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198411 STATION NETCDFs -0.027322967847188313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198412_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198412_D_GLOBAL.out deleted file mode 100644 index b301951de9d085655f369c4f7844548cf2c17354..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.031522651513417564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198412_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198412_H_GLOBAL.out deleted file mode 100644 index e730986d5f96b6e667f8262fc240edfe07f231f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.24415425856908163 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198412_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198412_M_GLOBAL.out deleted file mode 100644 index 0c3b061add29dd4372ca8565da7fab68213a1a5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198412 STATION NETCDFs -0.020486247539520264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198501_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198501_D_GLOBAL.out deleted file mode 100644 index 204b4ccc3b405fdd8b6ffa39710a98eccf600e41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.028266167640686034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198501_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198501_H_GLOBAL.out deleted file mode 100644 index aa911cd71596fadce88d3b5c40c4f9fa0c04d18d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.031603550910949706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198501_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198501_M_GLOBAL.out deleted file mode 100644 index d1489176d2066b219b7f9523c5b5a75acbee47c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198501 STATION NETCDFs -0.04230252106984456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198502_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198502_D_GLOBAL.out deleted file mode 100644 index ab2951ebbdde511f987910fadf8d2c3f7eec3e93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.0229239026705424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198502_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198502_H_GLOBAL.out deleted file mode 100644 index c6b2dd3d35d1fe5ec65cda43fbab80a473d7bb40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.2255848248799642 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198502_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198502_M_GLOBAL.out deleted file mode 100644 index 9573a68936bf25df450026f5fe87686370a769dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198502 STATION NETCDFs -0.0332381804784139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198503_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198503_D_GLOBAL.out deleted file mode 100644 index 703b307966be9c3919139af2875ad916baec7402..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.2330286383628845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198503_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198503_H_GLOBAL.out deleted file mode 100644 index 611cca9fd8fdaeae6022d0aba3f1d53a978ec578..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.037843588987986246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198503_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198503_M_GLOBAL.out deleted file mode 100644 index 75ec12657b1dbe4417ad15b657da443dce48f9d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198503 STATION NETCDFs -0.2234389384587606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198504_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198504_D_GLOBAL.out deleted file mode 100644 index c5ac69ae986c3951ad944ae94ff33a2802269880..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.025515222549438478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198504_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198504_H_GLOBAL.out deleted file mode 100644 index e993f882e06a049dcbc20b0cf6ef3a8e4543420f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.03900614579518636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198504_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198504_M_GLOBAL.out deleted file mode 100644 index 48b2e2f863375b63d4cf6f940bfc76d7b6542169..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198504 STATION NETCDFs -0.04113911787668864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198505_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198505_D_GLOBAL.out deleted file mode 100644 index 66ea0467586a06e70565512ce1f44512798927c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.035622421900431314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198505_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198505_H_GLOBAL.out deleted file mode 100644 index bd5fed67b7af6a7513cc3f9a21857f40bfd21a3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.035709917545318604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198505_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198505_M_GLOBAL.out deleted file mode 100644 index ae6b2866f07f1e231f665e2e8a923d8ae4c5fcbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198505 STATION NETCDFs -0.044228498140970865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198506_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198506_D_GLOBAL.out deleted file mode 100644 index 7af42aa2ca09b2ff2adb0f7746a38018765384fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.052595404783884685 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198506_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198506_H_GLOBAL.out deleted file mode 100644 index f3cf4d1f4f479b4613f304f93f83f42371e86c05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.035373806953430176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198506_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198506_M_GLOBAL.out deleted file mode 100644 index 83b820bc57bcd845a4efde2beffe80c07bf94656..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198506 STATION NETCDFs -0.029204710324605306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198507_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198507_D_GLOBAL.out deleted file mode 100644 index e17d99144c0cfd7acffb6b3357a35f0be6b9067e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.24960095087687176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198507_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198507_H_GLOBAL.out deleted file mode 100644 index 29ce5263ea460e6024b24dd3ce9a3c6d17cc24b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.2541442632675171 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198507_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198507_M_GLOBAL.out deleted file mode 100644 index 2f1c40188cd82dd8c7db81e0039320b67696812b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198507 STATION NETCDFs -0.040078171094258624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198508_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198508_D_GLOBAL.out deleted file mode 100644 index 6352d8c96050c304332f02bc9c7ce303a8855b84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.15845312277475992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198508_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198508_H_GLOBAL.out deleted file mode 100644 index c3b8e9b01f184f52c6eec7563c6c79397a709132..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.2477850039800008 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198508_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198508_M_GLOBAL.out deleted file mode 100644 index 9f754906cde382cc9fe02922e2792db34b13925c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198508 STATION NETCDFs -0.040669608116149905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198509_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198509_D_GLOBAL.out deleted file mode 100644 index d90d1f7bcc77797073c3aee93b48b2deb01b9596..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.029342424869537354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198509_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198509_H_GLOBAL.out deleted file mode 100644 index a0bd6eb4c9249ca4975397ff4ce9e4c30595a5f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.029514002799987792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198509_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198509_M_GLOBAL.out deleted file mode 100644 index 2ec1454bc8bb6dbd1674f7b7c901ef98b384b045..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198509 STATION NETCDFs -0.03388810157775879 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198510_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198510_D_GLOBAL.out deleted file mode 100644 index 460c349da89e2278170b39401c2b90d9d1fa9309..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.07603348890940348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198510_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198510_H_GLOBAL.out deleted file mode 100644 index ab20f25c3c57567670ab593c1bbc2c5f2f3000fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.061514413356781004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198510_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198510_M_GLOBAL.out deleted file mode 100644 index 4cc3f22176ca66ea74c748423cd9d93e7a018e8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198510 STATION NETCDFs -0.046960469086964926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198511_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198511_D_GLOBAL.out deleted file mode 100644 index 1fe11bf413758d9e9bc805bb63e73758a9d613dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.023700527350107827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198511_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198511_H_GLOBAL.out deleted file mode 100644 index c635d27b77cabfd261e7f7d28f36e66f1d959886..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.02596579392751058 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198511_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198511_M_GLOBAL.out deleted file mode 100644 index 11d2c299a85277b362b028b6ee947bb156a97ae9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198511 STATION NETCDFs -0.03137501875559489 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198512_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198512_D_GLOBAL.out deleted file mode 100644 index d0e72188981babccb09bc63b46ab9066a90e67ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.26416446367899576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198512_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198512_H_GLOBAL.out deleted file mode 100644 index 69e2c9a7d88d671fcf341b6bc759e638cef5ddf5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.029075010617574056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198512_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198512_M_GLOBAL.out deleted file mode 100644 index a367eb75544a5cb1a4aada05747cb2c60faf122a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198512 STATION NETCDFs -0.02847773631413778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198601_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198601_D_GLOBAL.out deleted file mode 100644 index f810baef1624d98468d089a79cfcc50cceb5403a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.077080770333608 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198601_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198601_H_GLOBAL.out deleted file mode 100644 index d516bf648a525437aa13d8699068e2a5ec0b8ef0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.04953344265619914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198601_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198601_M_GLOBAL.out deleted file mode 100644 index bf0ce3ffa98529759931cf54c46bc70e33d14572..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198601 STATION NETCDFs -0.20204403003056845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198602_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198602_D_GLOBAL.out deleted file mode 100644 index 7b327affb8a239ba84b1891f732b4365e63566f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.04589995543162028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198602_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198602_H_GLOBAL.out deleted file mode 100644 index dc6446477d24ef2dbf4a4d02ff1b883c3ea173c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.025927074750264487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198602_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198602_M_GLOBAL.out deleted file mode 100644 index 45b0d9b71d9e2587dc5ce21f3f512006b775a70d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198602 STATION NETCDFs -0.028808756669362386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198603_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198603_D_GLOBAL.out deleted file mode 100644 index 628111e090f35d9c3282bc516f1fd70fb836a37f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.2064555009206136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198603_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198603_H_GLOBAL.out deleted file mode 100644 index 46c2379ae8d789b7c143e118722a49fdd84f2279..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.030890889962514243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198603_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198603_M_GLOBAL.out deleted file mode 100644 index 8d804b0403e2b411cbf93cd380f9d2c0d9c507b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198603 STATION NETCDFs -0.18550336360931396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198604_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198604_D_GLOBAL.out deleted file mode 100644 index eec0b5027637d5f0f9fc4f9a55385a7a9f578a8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.026117082436879477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198604_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198604_H_GLOBAL.out deleted file mode 100644 index 050d223b6c603225e1c60f670f3079eafc005dad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.03482950925827026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198604_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198604_M_GLOBAL.out deleted file mode 100644 index da4d79bfba3a2da93262c07c92efeedaa4f88489..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198604 STATION NETCDFs -0.04160991112391154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198605_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198605_D_GLOBAL.out deleted file mode 100644 index 73004fae44ffc6e18aa5a312630be23911f8f93a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.02888197104136149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198605_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198605_H_GLOBAL.out deleted file mode 100644 index c9b2f2082e63d8caa788c06490b2ba53c7d5b559..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.21297874053319296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198605_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198605_M_GLOBAL.out deleted file mode 100644 index c3c7e6d90e086c4deef3274c1025809ee7ff33f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198605 STATION NETCDFs -0.04145476818084717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198606_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198606_D_GLOBAL.out deleted file mode 100644 index da96ebbc224faed9160cbd201273d3e5bab84153..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.024340800444285073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198606_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198606_H_GLOBAL.out deleted file mode 100644 index 7320ea3529b09fa5fc0072565d52010bd26434a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.23536545435587566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198606_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198606_M_GLOBAL.out deleted file mode 100644 index c26cfe183935a720018098e0c47690551f9630f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198606 STATION NETCDFs -0.11842516660690308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198607_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198607_D_GLOBAL.out deleted file mode 100644 index a297a4cc3595ff7d09ce90bd7c42c5be3247fe36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.045368345578511556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198607_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198607_H_GLOBAL.out deleted file mode 100644 index bf655674f8992ae397d184197beee0bac27448d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.05183689594268799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198607_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198607_M_GLOBAL.out deleted file mode 100644 index 6aa4be50b91dfcda5ca40bd4d7c65b1c0563292c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198607 STATION NETCDFs -0.02341116269429525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198608_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198608_D_GLOBAL.out deleted file mode 100644 index 55551233a8915885b27f39db37086c8f0128fda2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.0480354110399882 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198608_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198608_H_GLOBAL.out deleted file mode 100644 index ad4673bc0d61f16d410ce7c9415053c4c61ccd1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.0683432141939799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198608_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198608_M_GLOBAL.out deleted file mode 100644 index 3673ed8b984deb6d6d52a8d4f14d7fe73388d3b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198608 STATION NETCDFs -0.028609851996103924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198609_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198609_D_GLOBAL.out deleted file mode 100644 index edf35e3f0f20c0c5319e652cda6359550b284dbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.02658910353978475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198609_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198609_H_GLOBAL.out deleted file mode 100644 index 7b71e64ac436565fc5102c6825dff4e0ea723530..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.1607669989267985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198609_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198609_M_GLOBAL.out deleted file mode 100644 index b18ff29a487707523017faab56f95fc9f90ae3de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198609 STATION NETCDFs -0.02830046812693278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198610_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198610_D_GLOBAL.out deleted file mode 100644 index 75fe4824afeb89d5f96deaf2bbc17d9547092dbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.24138516585032146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198610_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198610_H_GLOBAL.out deleted file mode 100644 index cff672d72657a44764b50ae32f11f598358d1701..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.12406950791676839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198610_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198610_M_GLOBAL.out deleted file mode 100644 index 8a14ed21d3db08c7132a0a280869d3b00f6df259..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198610 STATION NETCDFs -0.042688651879628496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198611_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198611_D_GLOBAL.out deleted file mode 100644 index 31942a5bc667dca2ad5deb48171b0f37522129f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.20316171248753864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198611_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198611_H_GLOBAL.out deleted file mode 100644 index d6ccf3babc9e885a47ea5aff0259b26a2ed828e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.0490809957186381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198611_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198611_M_GLOBAL.out deleted file mode 100644 index 9282a767aab48e56b6047c86da960a518f3a69e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198611 STATION NETCDFs -0.03004510005315145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198612_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198612_D_GLOBAL.out deleted file mode 100644 index 9e7cb51f1ce92f4e3ec8578f3cdf02858cd69c30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.06599142948786417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198612_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198612_H_GLOBAL.out deleted file mode 100644 index 341eb1057c04266363025bb9fe0ea9a640683c5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.043731049696604414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198612_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198612_M_GLOBAL.out deleted file mode 100644 index 4554e91072140e62daa6ab38783e938e4a446475..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198612 STATION NETCDFs -0.2647846897443136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198701_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198701_D_GLOBAL.out deleted file mode 100644 index 0a32e5f27da811786eb94671f1db17120f4e8f04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.0307653546333313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198701_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198701_H_GLOBAL.out deleted file mode 100644 index c1df42264bbd26cf1080e0d644851804ce72fbe2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.16828909715016682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198701_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198701_M_GLOBAL.out deleted file mode 100644 index aa893f62dcf73851a1700353eeffe0bc0f82505f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198701 STATION NETCDFs -0.04496620893478394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198702_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198702_D_GLOBAL.out deleted file mode 100644 index 4f974c31917a224fbaaef95de7ceec392276af08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.039660910765329994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198702_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198702_H_GLOBAL.out deleted file mode 100644 index cc1f512af0917a964a8bda7ef63a6aaf28e01de9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.044404804706573486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198702_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198702_M_GLOBAL.out deleted file mode 100644 index 17e13b7791795331b093d5a265fc312699c9eafd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198702 STATION NETCDFs -0.08146501382191976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198703_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198703_D_GLOBAL.out deleted file mode 100644 index d7934e47629c83cacb151a23156076c2a6df8db2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.0359183669090271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198703_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198703_H_GLOBAL.out deleted file mode 100644 index cf3ef31a344ff7ce105977f16f40285c5de5187f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.027563766638437907 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198703_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198703_M_GLOBAL.out deleted file mode 100644 index d6cce22c53264b821086fa2806d463e6f3bcdb99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198703 STATION NETCDFs -0.024164891242980956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198704_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198704_D_GLOBAL.out deleted file mode 100644 index 13041fabc0ef2b77f54d3cb2cd85d6d5cab0c449..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.24480510950088502 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198704_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198704_H_GLOBAL.out deleted file mode 100644 index aab77a1cf97f86b4c9ed84fd4ac1369cfff1c633..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.022529836495717367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198704_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198704_M_GLOBAL.out deleted file mode 100644 index 4eefed7c5492d3c0528115d055503a6bc2663934..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198704 STATION NETCDFs -0.025879494349161782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198705_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198705_D_GLOBAL.out deleted file mode 100644 index 9feff4eaa280b112103e54d0221fb89a18a2f342..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.047300497690836586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198705_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198705_H_GLOBAL.out deleted file mode 100644 index 5e68a3a2937314faa56fd21a8ef23b5ee5550a3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.2259155551592509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198705_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198705_M_GLOBAL.out deleted file mode 100644 index 1423e6157b951f26bbebf7f14594ef527e74b248..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198705 STATION NETCDFs -0.029578697681427003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198706_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198706_D_GLOBAL.out deleted file mode 100644 index bb033f75acfc888b4bc7753419d3bba333e35e6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198706 STATION NETCDFs -0.04197385311126709 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198706_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198706_H_GLOBAL.out deleted file mode 100644 index e509a9a47a92bc9be1f9fdcea082d6ece56925e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198706 STATION NETCDFs -0.05313816070556641 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198706_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198706_M_GLOBAL.out deleted file mode 100644 index 3a6f09f169d918f39ba60c116048b2083b6f24f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198706 STATION NETCDFs -0.11821777820587158 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198707_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198707_D_GLOBAL.out deleted file mode 100644 index 5126c8060c78ebeb52b878d688d4796fa90339f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198707 STATION NETCDFs -0.155857785542806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198707_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198707_H_GLOBAL.out deleted file mode 100644 index 3dca538d1c26d77b5a5cba2e2a4bf4076f98e0c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198707 STATION NETCDFs -0.025974726676940917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198707_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198707_M_GLOBAL.out deleted file mode 100644 index 3417f210a3e7f601c478ff378af297e9ae747801..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198707 STATION NETCDFs -0.2028539498647054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198708_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198708_D_GLOBAL.out deleted file mode 100644 index c1dd1e7953f0e18a3e2a840bdf0ad49256b72a47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198708 STATION NETCDFs -0.04593354860941569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198708_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198708_H_GLOBAL.out deleted file mode 100644 index 63fd0657a69f0f7c293c80c30ff629063a86152d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198708 STATION NETCDFs -0.04650946855545044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198708_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198708_M_GLOBAL.out deleted file mode 100644 index 3a5771e3f68f8614f0852d350dddb45ae0e65e4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198708 STATION NETCDFs -0.26421653032302855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198709_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198709_D_GLOBAL.out deleted file mode 100644 index 7d32858d08093dfdff4f4e523bc45cdefa147a4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198709 STATION NETCDFs -0.24534406661987304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198709_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198709_H_GLOBAL.out deleted file mode 100644 index 7c6e92ebc571baa4e1c131a0f8da951aac379a2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198709 STATION NETCDFs -0.04966839551925659 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198709_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198709_M_GLOBAL.out deleted file mode 100644 index 5d2a8088e59eeec963d9ac8bbc627f710905d12a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198709 STATION NETCDFs -0.029280710220336913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198710_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198710_D_GLOBAL.out deleted file mode 100644 index 23e9c980e8ce8f00eb5c7de16504b82a6f647bad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198710 STATION NETCDFs -0.029143182436625163 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198710_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198710_H_GLOBAL.out deleted file mode 100644 index af0363ed1c1ab4f24a8ddb8fd52c992ad0be7d5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198710 STATION NETCDFs -0.1719843029975891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198710_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198710_M_GLOBAL.out deleted file mode 100644 index 99479bb23a593e77fa229bc46abe581136397202..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198710 STATION NETCDFs -0.042803911368052165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198711_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198711_D_GLOBAL.out deleted file mode 100644 index 463c34379c498769cf3795531ea067bdadfec892..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198711 STATION NETCDFs -0.2708499312400818 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198711_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198711_H_GLOBAL.out deleted file mode 100644 index 1c41a82f263b07b359b362f071e662e50ac8fe42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198711 STATION NETCDFs -0.02892436186472575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198711_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198711_M_GLOBAL.out deleted file mode 100644 index bf40237ccfb088da33a5952e21e30ad51cc24f75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198711 STATION NETCDFs -0.046159629027048746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198712_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198712_D_GLOBAL.out deleted file mode 100644 index e1934d659697000dd9b2e935192f0925533f1ef8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198712 STATION NETCDFs -0.07780722777048747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198712_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198712_H_GLOBAL.out deleted file mode 100644 index 78dda1b163b84a64cb44590be2770bd819483a98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198712 STATION NETCDFs -0.029409348964691162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198712_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198712_M_GLOBAL.out deleted file mode 100644 index 78b95d06b22172e9211048f588b1c55f5de71c13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198712 STATION NETCDFs -0.028915031750996908 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198801_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198801_D_GLOBAL.out deleted file mode 100644 index a834e8450fbbed4af3a4eb6cc865feab08584fb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198801 STATION NETCDFs -0.2657487869262695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198801_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198801_H_GLOBAL.out deleted file mode 100644 index a1dcee7cc1822100569be35441622b5a04354d18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198801 STATION NETCDFs -0.22914110422134398 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198801_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198801_M_GLOBAL.out deleted file mode 100644 index e5c726ddd61415d969d0a28ad2039fe71f9e5e28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198801 STATION NETCDFs -0.2838311036427816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198802_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198802_D_GLOBAL.out deleted file mode 100644 index 87b3202e43d2a38ddcaa360cd85d9b913bafb2f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198802 STATION NETCDFs -0.06681070725123088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198802_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198802_H_GLOBAL.out deleted file mode 100644 index ec411b4797c4de6293a6c1a9257e04abd7215dd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198802 STATION NETCDFs -0.02938921848932902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198802_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198802_M_GLOBAL.out deleted file mode 100644 index 6ff87bf1268ad41507e8894c3ad376e0a5ed071f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198802 STATION NETCDFs -0.24754087924957274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198803_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198803_D_GLOBAL.out deleted file mode 100644 index 03624a5d8c7b6e3544f7d41909d2fd67e957f1f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198803 STATION NETCDFs -0.02821239233016968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198803_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198803_H_GLOBAL.out deleted file mode 100644 index b1b834fe6670dfbba238ca31af53efd0b4e31e53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198803 STATION NETCDFs -0.02989186445871989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198803_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198803_M_GLOBAL.out deleted file mode 100644 index b2b6f723cbbeec735cdb23345ffb2dabc50be7e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198803 STATION NETCDFs -0.04782975912094116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198804_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198804_D_GLOBAL.out deleted file mode 100644 index b8ddc4da0724fab985b621a082f86f5aa8d4d7e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.057236711184183754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198804_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198804_H_GLOBAL.out deleted file mode 100644 index 9ebe6ac9a302032a02060ef81c1ec9297f493a9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.02894577185312907 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198804_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198804_M_GLOBAL.out deleted file mode 100644 index f8ea8c0f9cdf061e3c6eaebc591491d0a974315e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198804 STATION NETCDFs -0.0289803942044576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198805_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198805_D_GLOBAL.out deleted file mode 100644 index a4917db9eb276bb23d14c0bcaa7bc74f8407ad1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198805 STATION NETCDFs -0.030449163913726807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198805_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198805_H_GLOBAL.out deleted file mode 100644 index ae90adb153c35d51985e7727590564aa5fece019..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198805 STATION NETCDFs -0.17815515200297039 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198805_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198805_M_GLOBAL.out deleted file mode 100644 index 6fee3524a78dfe6fd4d74e19e6a30b5f507385be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198805 STATION NETCDFs -0.04301932255427043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198806_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198806_D_GLOBAL.out deleted file mode 100644 index 3c6bbd0a749b2b3759f7484c68f19fd6e5399c59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198806 STATION NETCDFs -0.027810851732889812 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198806_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198806_H_GLOBAL.out deleted file mode 100644 index 27e7a99461744d3ffa2d3cf71dbbff298fcd4abf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198806 STATION NETCDFs -0.03263141711552938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198806_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198806_M_GLOBAL.out deleted file mode 100644 index 1a6b85c2f8cfb7818b15ffe90f122ffda7515d00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198806 STATION NETCDFs -0.24671215216318768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198807_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198807_D_GLOBAL.out deleted file mode 100644 index 7594fff9b2016c607424e9fa3aa37704d2568978..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198807 STATION NETCDFs -0.053831978638966875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198807_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198807_H_GLOBAL.out deleted file mode 100644 index 9b4df5c470d9aebaa2bdd7c272564ce67daa49f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198807 STATION NETCDFs -0.05027719338734945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198807_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198807_M_GLOBAL.out deleted file mode 100644 index a9a686a9c0ff6ca166ff8c8361ed70d1605ce93d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198807 STATION NETCDFs -0.03054685195287069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198808_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198808_D_GLOBAL.out deleted file mode 100644 index 3fb941d784da22f40f469372bbd9205e385cd236..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198808 STATION NETCDFs -0.08279394308725993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198808_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198808_H_GLOBAL.out deleted file mode 100644 index 86758b9a7c0baefaf4862d052e60f083d4160975..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198808 STATION NETCDFs -0.06329751412073771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198808_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198808_M_GLOBAL.out deleted file mode 100644 index e8f1de6bf46edfa56e0899ba46ebbd9b4fdf6324..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198808 STATION NETCDFs -0.24409031867980957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198809_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198809_D_GLOBAL.out deleted file mode 100644 index 1432446f7a80b39ca9037071621348edcec06082..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198809 STATION NETCDFs -0.02225772539774577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198809_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198809_H_GLOBAL.out deleted file mode 100644 index 004f81890925fb1c0a2a886a5729c2f5f4f0c609..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198809 STATION NETCDFs -0.17188496192296346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198809_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198809_M_GLOBAL.out deleted file mode 100644 index f41934ad2a453440b30a2d307462ae5a93baf21a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198809 STATION NETCDFs -0.02333759864171346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198810_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198810_D_GLOBAL.out deleted file mode 100644 index 84425637a6f861d95dc2c9985a22392a78385ab9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.20939658482869467 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198810_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198810_H_GLOBAL.out deleted file mode 100644 index bf396a668e152571009ad26a64ac7d0643861c80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.024965612093607585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198810_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198810_M_GLOBAL.out deleted file mode 100644 index 7fb62210fd51a81c388a3b9049a18d66378bc2bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198810 STATION NETCDFs -0.03153426647186279 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198811_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198811_D_GLOBAL.out deleted file mode 100644 index 10e9f1689a0143804ac0d0e3c58c147b3f4479ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.2387531836827596 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198811_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198811_H_GLOBAL.out deleted file mode 100644 index 64a50b39598f57d8f5a4ddaf845eb0cf5400eda2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.18231667677561442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198811_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198811_M_GLOBAL.out deleted file mode 100644 index ead97aa6ee85720782c930a267c97dcf44e75e3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198811 STATION NETCDFs -0.04918851852416992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198812_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198812_D_GLOBAL.out deleted file mode 100644 index df39b05e9739e9c2a3d7678b5324b0385c3e7c95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.23655163844426472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198812_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198812_H_GLOBAL.out deleted file mode 100644 index 6d728ba3e5f8a95aa4390ef8f2d9bcdc00b62acd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.0293123722076416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198812_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198812_M_GLOBAL.out deleted file mode 100644 index eebd38e9f0c5ac6b718ed55414653409456e38c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198812 STATION NETCDFs -0.24680679241816203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198901_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198901_D_GLOBAL.out deleted file mode 100644 index c482ce7bf758741702c15bc75980d3e1d028ac39..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.03948299487431844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198901_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198901_H_GLOBAL.out deleted file mode 100644 index f3efb592c076edc9175d18e3b0793a7e3fb9cf05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.03875222206115723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198901_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198901_M_GLOBAL.out deleted file mode 100644 index 34d342cb47a83a61d8b8d36dde68c694af13cf2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198901 STATION NETCDFs -0.23748160600662233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198902_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198902_D_GLOBAL.out deleted file mode 100644 index ac7f36b2f70450b2a5f45a704ac8699cbb0dc63e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.04627544085184733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198902_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198902_H_GLOBAL.out deleted file mode 100644 index 00d09ecdd6a6c1ee77c330ea752aff69a51b3a35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.06733014186223348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198902_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198902_M_GLOBAL.out deleted file mode 100644 index ee8dc3199c610729ca89b01f0ade7e9c3a2f840f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198902 STATION NETCDFs -0.04245246648788452 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198903_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198903_D_GLOBAL.out deleted file mode 100644 index 478d180762f8957e89bf3ebb55defee2166925cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.052088300387064614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198903_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198903_H_GLOBAL.out deleted file mode 100644 index 8c134a8b8662a6631767f84a50d68e15e323b6c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.04445687929789225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198903_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198903_M_GLOBAL.out deleted file mode 100644 index 81ac2e655703bbf6dab6b4b4dadf2429251165ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198903 STATION NETCDFs -0.24567800362904865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198904_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198904_D_GLOBAL.out deleted file mode 100644 index 8ad417e5c489a36b295c0e04f790a0725266a1f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.03316371043523152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198904_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198904_H_GLOBAL.out deleted file mode 100644 index 2fe7c0bf576586b84ade1123f2b980a68b230e32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.029477572441101073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198904_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198904_M_GLOBAL.out deleted file mode 100644 index 7ca187399ec33722f810a8fded33e01ac5efb2bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198904 STATION NETCDFs -0.07925402720769247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198905_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198905_D_GLOBAL.out deleted file mode 100644 index 2f7da0b6987fbfca08fd80365a48eed0da6b142c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.03237072626749674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198905_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198905_H_GLOBAL.out deleted file mode 100644 index 1754f01e031d1c17e42b4bab00f818e7c32d3b95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.024703097343444825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198905_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198905_M_GLOBAL.out deleted file mode 100644 index 7831fbb30f5ae468086c20d2c4013917d18c66d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198905 STATION NETCDFs -0.056201934814453125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198906_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198906_D_GLOBAL.out deleted file mode 100644 index 284a00036f1c7ec84e1f74606757c9298eb6be5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.02772207260131836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198906_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198906_H_GLOBAL.out deleted file mode 100644 index fda802037aab426a6fa090aade7ee610eb8c6be6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.12454547882080078 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198906_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198906_M_GLOBAL.out deleted file mode 100644 index 9690e4c78486ffe09eb841cf693185af7a40bbc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198906 STATION NETCDFs -0.05286864837010701 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198907_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198907_D_GLOBAL.out deleted file mode 100644 index d69b396f1e4ff4da1229ae3ac5fd1e534eccfb41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.0291814923286438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198907_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198907_H_GLOBAL.out deleted file mode 100644 index 72bc059834e5d0185a7a8b5ed8a06ff564e75f4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.0593998114267985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198907_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198907_M_GLOBAL.out deleted file mode 100644 index b7a12f293c051d54fada4df2d529d08bab13c29b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198907 STATION NETCDFs -0.07270196278889975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198908_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198908_D_GLOBAL.out deleted file mode 100644 index f02f4f40b5b12f85623c39a614a4b02d3a928fea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.06792921622594197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198908_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198908_H_GLOBAL.out deleted file mode 100644 index 2f449aafdddcf425ff64b38d0be50c4afee01b8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.04338080088297526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198908_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198908_M_GLOBAL.out deleted file mode 100644 index 0a25d6c866aff6b2792c0a6dc760c758b91b5b5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198908 STATION NETCDFs -0.24561729033788046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198909_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198909_D_GLOBAL.out deleted file mode 100644 index bddd4bce3508cc6c352c77e1fedb2951a13b8019..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.02426136334737142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198909_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198909_H_GLOBAL.out deleted file mode 100644 index e3b29a13662b0a9f543389f352a1878fde8d6600..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.03757940530776978 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198909_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198909_M_GLOBAL.out deleted file mode 100644 index 06ac2ca40f1a6e41c720b32b77a57b008772bafe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198909 STATION NETCDFs -0.1250040888786316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198910_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198910_D_GLOBAL.out deleted file mode 100644 index 27a64245f2eaeff7eba92174286a5a30e4ccbd16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.09612410068511963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198910_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198910_H_GLOBAL.out deleted file mode 100644 index d73fbdb6aba488dc83749cd247d6327beaa75857..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.04770127932230631 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198910_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198910_M_GLOBAL.out deleted file mode 100644 index 899d97e50fd299f58feb49a89ac7d50f48aad856..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198910 STATION NETCDFs -0.05055133104324341 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198911_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198911_D_GLOBAL.out deleted file mode 100644 index 0eb680f3473a08e5d3e51479c566620c3610b6c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.09682840903600057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198911_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198911_H_GLOBAL.out deleted file mode 100644 index fc62f9a4eae79fdda9a9fe3b321938d825075760..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.23973052899042765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198911_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198911_M_GLOBAL.out deleted file mode 100644 index e78d44cbbe8e7a4d7affbed3c5c049afb32956cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198911 STATION NETCDFs -0.21945602893829347 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198912_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198912_D_GLOBAL.out deleted file mode 100644 index 201648647448d3d3e8bc3651a59a32fb56570e1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.20957945982615153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198912_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198912_H_GLOBAL.out deleted file mode 100644 index 7d9ca8ecc5d65b8f75b1520b874cc626a8fcb00c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.023546020189921062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_198912_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_198912_M_GLOBAL.out deleted file mode 100644 index 1a6ddbaaa582b171c6f0d003a25aa0af925c7c86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_198912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.033515504995981854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199001_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199001_D_GLOBAL.out deleted file mode 100644 index 7622889be2a495b2c3abf25244580962f7240ca3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.04125531514485677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199001_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199001_H_GLOBAL.out deleted file mode 100644 index 24194342a4068f243d530f5c62519819ee96732c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.03108604351679484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199001_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199001_M_GLOBAL.out deleted file mode 100644 index 31bc1b3e0c2ed4aec845610225e1643f05bba79f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.04325923919677734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199002_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199002_D_GLOBAL.out deleted file mode 100644 index 1b2769e31ddca3c65d077fdf5466b2cc3d4ba8fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.03855983813603719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199002_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199002_H_GLOBAL.out deleted file mode 100644 index 85ceef79257d308db654c87f9eabc15ab3b0b149..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.04023334980010986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199002_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199002_M_GLOBAL.out deleted file mode 100644 index 8ceb3b904aa59c16482209cc2eb2b99026a80ccb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.2470881700515747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199003_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199003_D_GLOBAL.out deleted file mode 100644 index 8332dae22350416527028ed0f028340ddbd634da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.032756149768829346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199003_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199003_H_GLOBAL.out deleted file mode 100644 index 9ea713281f65dece7128dfa052e23beb8a594fc5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.18193203210830688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199003_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199003_M_GLOBAL.out deleted file mode 100644 index 8e2cd3c61acd0acae095be94d1f81422e93a6cb1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.04027519623438517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199004_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199004_D_GLOBAL.out deleted file mode 100644 index 564f70630b6e8f8041806403223e4b7e3bde7031..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.07153583367665609 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199004_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199004_H_GLOBAL.out deleted file mode 100644 index ce16d6deaac8cb2cce52d0a9bb304356c910a721..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.032969590028127035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199004_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199004_M_GLOBAL.out deleted file mode 100644 index 5d8e26dd305d823a9fe87d20570982378e4209f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.028355507055918376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199005_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199005_D_GLOBAL.out deleted file mode 100644 index 9c5938680cc6c185536d0611c830bcab164d5ed4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.23833062251408896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199005_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199005_H_GLOBAL.out deleted file mode 100644 index 5c77d998d42ea14473d196f021491e65be892481..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.24730112950007122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199005_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199005_M_GLOBAL.out deleted file mode 100644 index 6d53080facf537f9215bee9dee1d3850fa31cf32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.071757439772288 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199006_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199006_D_GLOBAL.out deleted file mode 100644 index 2f90f0351845c4c79e16b9e7cae59af389cfeec8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.03762980699539185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199006_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199006_H_GLOBAL.out deleted file mode 100644 index 3116e21c74db59c748ab5847f99cb23340dde21f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.12410806814829509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199006_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199006_M_GLOBAL.out deleted file mode 100644 index f3f82a9ea5f2e65b3ed783e5d4f68411b3d2f0f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.04092284838358561 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199007_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199007_D_GLOBAL.out deleted file mode 100644 index 8447a2a18bd634d4a84700d01deb37256c211770..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.27057915925979614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199007_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199007_H_GLOBAL.out deleted file mode 100644 index 5ccf9f2f3b8e1fd1f097625d89c2d0bcefdd4c1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.12312959432601929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199007_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199007_M_GLOBAL.out deleted file mode 100644 index 8bb4965184f7d5c2db3a49962e634135bed8b32b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.02839282751083374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199008_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199008_D_GLOBAL.out deleted file mode 100644 index 751c55d5d343544600e3851f079d039176f1bc36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.052924267450968426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199008_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199008_H_GLOBAL.out deleted file mode 100644 index 86f00b1e41c8b755675c15032efd5e03f8d148b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.11689139207204183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199008_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199008_M_GLOBAL.out deleted file mode 100644 index 17d1add6a7de771dbac3b8a11a01300497d479ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.05166138807932536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199009_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199009_D_GLOBAL.out deleted file mode 100644 index c63c4804ff68fecba9bae241093ac3ae48757211..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.04086924791336059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199009_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199009_H_GLOBAL.out deleted file mode 100644 index 90d64e53a4d54a8933153083659de30726eda005..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.23002395232518513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199009_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199009_M_GLOBAL.out deleted file mode 100644 index 4d464049b957cffa2b929b42dec4f23f89275e24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.02406578858693441 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199010_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199010_D_GLOBAL.out deleted file mode 100644 index 3c5d3fb791818f96df6bd84d4e5c97d9ad30a48e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.034692994753519696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199010_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199010_H_GLOBAL.out deleted file mode 100644 index 9db8a744a9f5b2cdfaec0d51aa1251db57b5bb36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.2300616423288981 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199010_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199010_M_GLOBAL.out deleted file mode 100644 index 1d4b57fe075bbeba443851acc622e8ccbc154f31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.025704936186472575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199011_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199011_D_GLOBAL.out deleted file mode 100644 index 4e9a51a27bc59dd070fb57cfe48e72b600d8c227..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.05677883625030518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199011_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199011_H_GLOBAL.out deleted file mode 100644 index e9a85de299fbcd4fa93ee89ea47c88163615db3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.026311349868774415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199011_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199011_M_GLOBAL.out deleted file mode 100644 index 03c66b2393ed263bb1899a91e39a2a9c7f9c8cd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.030998055140177408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199012_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199012_D_GLOBAL.out deleted file mode 100644 index 9578b60aca73cc9a06286dd45f7e0d35f1f351c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.08250760237375895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199012_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199012_H_GLOBAL.out deleted file mode 100644 index 37750f4ae1d1fcb5d00233d190f91eba075c2c29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.023805479208628338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199012_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199012_M_GLOBAL.out deleted file mode 100644 index eb43ec0cf1276edb81275a6b2c05c77320ee7c3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.03031694491704305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199101_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199101_D_GLOBAL.out deleted file mode 100644 index 939fbf5df913d3766a38d1750edde52d23f6584f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.023443806171417236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199101_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199101_H_GLOBAL.out deleted file mode 100644 index 020c717bdec95c01596adf8f90e3e279c5b78fb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.02961988846460978 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199101_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199101_M_GLOBAL.out deleted file mode 100644 index 7ce71ed81db47e808fb86601724cfd155349c872..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.2328515609105428 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199102_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199102_D_GLOBAL.out deleted file mode 100644 index 71d6b8efa353e0451e30780c80c63c42ca43e372..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.023129705588022867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199102_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199102_H_GLOBAL.out deleted file mode 100644 index 11bf717374c380a209c3df3e963b406535baed5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.02427041530609131 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199102_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199102_M_GLOBAL.out deleted file mode 100644 index 93dcf465c01e0361d48799dac08ead08c8310ea4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.24704078038533528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199103_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199103_D_GLOBAL.out deleted file mode 100644 index 872635ec1059efc5c5c111a851ae5f2f824ecdbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.024027363459269205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199103_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199103_H_GLOBAL.out deleted file mode 100644 index 3ece5bf8a29b032857fd42920277e7c073a6f048..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.05936371882756551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199103_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199103_M_GLOBAL.out deleted file mode 100644 index dead0266043fbc3ec88c89cede31802073d82f07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.033706951141357425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199104_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199104_D_GLOBAL.out deleted file mode 100644 index ac8044e14b8bda793c905945854463a7441c2c7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.057491838932037354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199104_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199104_H_GLOBAL.out deleted file mode 100644 index a107c730c0c7cf4df22ffe6430e50b3060a4a1f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.051171875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199104_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199104_M_GLOBAL.out deleted file mode 100644 index 77cae3e183faf11c6547ee9a096bb90eee244925..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.02852938969930013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199105_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199105_D_GLOBAL.out deleted file mode 100644 index a6842c125fa138b193c8134f0f6d8af1e57c9bc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.04157353639602661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199105_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199105_H_GLOBAL.out deleted file mode 100644 index 5d64b2d09ed1d5f6e7b6ba6a60ea5e40fe605009..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.24546738465627035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199105_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199105_M_GLOBAL.out deleted file mode 100644 index 313a5f2505d5e4eacc4266cd49ca76305653497d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.045644338925679526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199106_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199106_D_GLOBAL.out deleted file mode 100644 index 6d8e5b4430e8849afd3b98b3db57c47daf50bff9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.10365517536799113 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199106_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199106_H_GLOBAL.out deleted file mode 100644 index 8df4abb274f04b187f786e8e08f1d1f6e02a863e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.22597431739171345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199106_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199106_M_GLOBAL.out deleted file mode 100644 index ea560f3a5a4faf2d43ef9aa801a092ac5b061d2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.2255876898765564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199107_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199107_D_GLOBAL.out deleted file mode 100644 index 013c8c027e402c1f8f38bbdc40d4a15e3734ec1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.030201276143391926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199107_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199107_H_GLOBAL.out deleted file mode 100644 index 426c998ff939482e44cf0fc5bb14d0140cc5a245..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.03155186176300049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199107_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199107_M_GLOBAL.out deleted file mode 100644 index c960382536216ad49c231a3cc509330670527c3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.2131485382715861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199108_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199108_D_GLOBAL.out deleted file mode 100644 index 7b19c8ef3d7991a6d04f218af13a303a26a7c6bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.20069042444229127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199108_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199108_H_GLOBAL.out deleted file mode 100644 index 531e4250d1aaea2140493b401c7c4e45d4bb18b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.2219215234120687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199108_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199108_M_GLOBAL.out deleted file mode 100644 index 15f19c95a66a85340e73deb4573379dd4ff946b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.2706108729044596 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199109_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199109_D_GLOBAL.out deleted file mode 100644 index 5f4e7fcb5b0cb3c86caace24ea63f24bd7cfc924..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.25697582165400185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199109_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199109_H_GLOBAL.out deleted file mode 100644 index a623120db4ae402789def7938be167fa73af29bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.030824236075083413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199109_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199109_M_GLOBAL.out deleted file mode 100644 index 0aa8a2a6c9e1c7771d0d09165330ab210554c907..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.05258195002873738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199110_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199110_D_GLOBAL.out deleted file mode 100644 index f76ad0abff1c8f34cfef21ccc65327703a45b3a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.23713813622792562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199110_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199110_H_GLOBAL.out deleted file mode 100644 index 91e68b7d5e7e6953682945b24865ece1988ff8a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.041900392373402914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199110_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199110_M_GLOBAL.out deleted file mode 100644 index a138e792de1c7f5bc6e747a964f94628cd895230..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.06632453600565592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199111_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199111_D_GLOBAL.out deleted file mode 100644 index 63eaef93f17cf4c68c67a98245ec0ee8f30c9a8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.040131147702534994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199111_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199111_H_GLOBAL.out deleted file mode 100644 index b8641df342db3891333305060d042204d42daa5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.1732003966967265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199111_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199111_M_GLOBAL.out deleted file mode 100644 index 5445abf24714dc1ccfd47af027f28ac603784ecf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.023280223210652668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199112_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199112_D_GLOBAL.out deleted file mode 100644 index 12f54ba356c9ac2a5eee9d7b8ea6cfecbc3c5f31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.029151344299316408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199112_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199112_H_GLOBAL.out deleted file mode 100644 index 06d5fe2d885f87bca2cc79fbcc8f6f41ce952073..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.025315519173940024 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199112_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199112_M_GLOBAL.out deleted file mode 100644 index 8235ab7cef9bed6d4d82292577e1797b9ddea700..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.06878766616185507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199201_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199201_D_GLOBAL.out deleted file mode 100644 index 9d407121368734b1590a11a9d48f07ce04734e9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.027355329195658366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199201_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199201_H_GLOBAL.out deleted file mode 100644 index 8cd738a538498aaefdecc8fabe522e337d6c08b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.16540858348210652 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199201_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199201_M_GLOBAL.out deleted file mode 100644 index 341a3902133bce118264f8660f6c0e90737b1e00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.0401206374168396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199202_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199202_D_GLOBAL.out deleted file mode 100644 index 7e966f73466381ad2c59eca8a1b487356dee8c4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.03025087118148804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199202_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199202_H_GLOBAL.out deleted file mode 100644 index ee290d4a1abedc50c2ee1838bddb5fdffd50b733..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.14759965340296427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199202_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199202_M_GLOBAL.out deleted file mode 100644 index 3a23402d68cee3de933f013a00ed9a2a5e4fda49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.0272250493367513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199203_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199203_D_GLOBAL.out deleted file mode 100644 index ecf9b956f8073d8df5de229632839dab7fb1cb24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.04312464396158854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199203_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199203_H_GLOBAL.out deleted file mode 100644 index 3f34caa33ffef014725bd06a49cc2ec29be179e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.06652946869532267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199203_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199203_M_GLOBAL.out deleted file mode 100644 index 8cb8f054bac7c44ab9c3f2d3a308c7cbe0744313..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.028482155005137125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199204_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199204_D_GLOBAL.out deleted file mode 100644 index c886535666c866a8e8e7556865620cd2ae2a4252..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.03006805181503296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199204_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199204_H_GLOBAL.out deleted file mode 100644 index 7275ef43a174cb2cf04eac3e45698f3f0c08943d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.0657752792040507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199204_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199204_M_GLOBAL.out deleted file mode 100644 index 9de38a9df1bd65195a35348932df82cec96242e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.04047653277715047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199205_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199205_D_GLOBAL.out deleted file mode 100644 index c59c8c7106de4386f320082ff88dd5e2cd4b9bef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199205 STATION NETCDFs -0.02650697628657023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199205_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199205_H_GLOBAL.out deleted file mode 100644 index 6e17ef56ea3c8eea685aa9a69ad10e036fdfbdd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199205 STATION NETCDFs -0.025800414880116782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199205_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199205_M_GLOBAL.out deleted file mode 100644 index 64c4b9f3fbefc45421e8053ed4b71e6384e40aaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199205 STATION NETCDFs -0.038431406021118164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199206_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199206_D_GLOBAL.out deleted file mode 100644 index ae285d45813f04c0136a0d09cd976c4478a492db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199206 STATION NETCDFs -0.02308958371480306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199206_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199206_H_GLOBAL.out deleted file mode 100644 index 63a5dd914a6c09db5147156cc4ae0c5e9073cd7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199206 STATION NETCDFs -0.02548327048619588 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199206_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199206_M_GLOBAL.out deleted file mode 100644 index cb625f56cd5708643625a72df5078f673e23aae8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199206 STATION NETCDFs -0.20535861651102702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199207_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199207_D_GLOBAL.out deleted file mode 100644 index 8e9ffd12a46cb854a8ca2676bbec57db5d28d6a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.07757601340611776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199207_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199207_H_GLOBAL.out deleted file mode 100644 index 2bbda5d652a3d21cd727715c33c0ea7a089bf4f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.024957807858784993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199207_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199207_M_GLOBAL.out deleted file mode 100644 index bce13bbba34b71d4291b4a59f9a820c4d309145a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.049389982223510744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199208_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199208_D_GLOBAL.out deleted file mode 100644 index 3faeeb46df1857bd8f3d911ba4456a39311c925b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.26235820055007936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199208_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199208_H_GLOBAL.out deleted file mode 100644 index 8876412e66c91109a339c3fa9c75075a58d87205..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.1888275663057963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199208_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199208_M_GLOBAL.out deleted file mode 100644 index 7e3579d75a7729e1ff588fc92f356bf919b12f88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.24643590052922568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199209_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199209_D_GLOBAL.out deleted file mode 100644 index ea28f24cbb16a3893f55061a203f5e62495f29cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.22214672962824503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199209_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199209_H_GLOBAL.out deleted file mode 100644 index 0e158d910705c9ad1d4e9957342f520e7557c255..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.2466910719871521 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199209_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199209_M_GLOBAL.out deleted file mode 100644 index f387dbb16c4f6ec2baa80116b04688cf5ef7a06b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.07781829436620076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199210_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199210_D_GLOBAL.out deleted file mode 100644 index ee5badbd14e7f412f729bcbbd0b844a9a85920cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.07484558820724488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199210_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199210_H_GLOBAL.out deleted file mode 100644 index a0161f5d742219023559fef09e8f453ce3557936..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.04927717049916585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199210_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199210_M_GLOBAL.out deleted file mode 100644 index cb3cfaecf5a31e882d735aefdb2bf79fa19e7735..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.032537329196929934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199211_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199211_D_GLOBAL.out deleted file mode 100644 index c8775978a7067121bb2a363cfc20230dbddaf653..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.06995783646901449 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199211_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199211_H_GLOBAL.out deleted file mode 100644 index c0fb1a1534475019670adaae171fac9312b7e0f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.2469919999440511 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199211_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199211_M_GLOBAL.out deleted file mode 100644 index c1f5a7738d8913957eaf94b1d4d7934d26b1e943..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.148388942082723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199212_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199212_D_GLOBAL.out deleted file mode 100644 index c81fb85267eb96c8e7e7dc4d3375d59837b277a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.037731297810872394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199212_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199212_H_GLOBAL.out deleted file mode 100644 index 07dee524586379271f6b3cb1458e77082bf7f608..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.1479663332303365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199212_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199212_M_GLOBAL.out deleted file mode 100644 index a7f41637a018db4e7f43ba25c80d70f1bb28e561..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.04349491198857625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199301_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199301_D_GLOBAL.out deleted file mode 100644 index 97bc11174383ba4c3da7d18560d4e43464507126..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.04075632492701212 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199301_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199301_H_GLOBAL.out deleted file mode 100644 index d7cd5b6fe41b7d01fcd6c59f831228330236c7f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.19237689971923827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199301_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199301_M_GLOBAL.out deleted file mode 100644 index becad664081d4aa9b27fad59ef64b7548613253a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.031604679425557454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199302_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199302_D_GLOBAL.out deleted file mode 100644 index 8d58cc5866c3847181dc467358a225c4c2f22009..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.03336789210637411 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199302_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199302_H_GLOBAL.out deleted file mode 100644 index 4ccd26537169ffbc911dbb6d97102b7d75072d39..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.029786582787831625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199302_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199302_M_GLOBAL.out deleted file mode 100644 index 15417e6425a4cde1141543fc9c94424c2e16baf8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.06745095252990722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199303_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199303_D_GLOBAL.out deleted file mode 100644 index 5e463b7b603a55c76f1623948d83386c0580da5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.057513308525085446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199303_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199303_H_GLOBAL.out deleted file mode 100644 index 8398ddc9b217e5768f7d5fec6fa0ae2da2ce885e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.024813429514567057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199303_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199303_M_GLOBAL.out deleted file mode 100644 index d3240f6dbb967d76b58450e0b1d4f474ff975d14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.03062523603439331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199304_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199304_D_GLOBAL.out deleted file mode 100644 index d18a009b1fd3703d040641ce692cee8f415e6cd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.052837308247884116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199304_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199304_H_GLOBAL.out deleted file mode 100644 index ce1c9326b87c2b7ff1f85e9dfa2d3e0f66ec8148..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.1237296223640442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199304_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199304_M_GLOBAL.out deleted file mode 100644 index 68d55c3c30b40a5dfe1d3076db34bd8840ac5686..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.031193729241689047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199305_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199305_D_GLOBAL.out deleted file mode 100644 index 468a13f42d23ee1acad9ff9a9abfb8dfe532d10e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.04139228264490764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199305_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199305_H_GLOBAL.out deleted file mode 100644 index ccc649236de9ce81b30373f9dcc9f954e6cfa24d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.05068921248118083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199305_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199305_M_GLOBAL.out deleted file mode 100644 index c3e70c11835ae63c0ecc7beabe9d1faedce17d55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.026397653420766196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199306_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199306_D_GLOBAL.out deleted file mode 100644 index b77188ccfd79cd9cbb9de6b3fd5041d2241887e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.06414457956949869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199306_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199306_H_GLOBAL.out deleted file mode 100644 index b1fc01d1874b42a13188027b16e083af7895477b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.23513511021931965 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199306_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199306_M_GLOBAL.out deleted file mode 100644 index 4a178fd8b3cb424e45a0aea51fd8760cfde5934b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.24829919735590616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199307_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199307_D_GLOBAL.out deleted file mode 100644 index 7176d477f6d052964ac9b23e51c1a145febad13a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.026114110151926676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199307_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199307_H_GLOBAL.out deleted file mode 100644 index c38bf7eea85c056835a583500e5b2c21a8d1f90f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.024237736066182455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199307_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199307_M_GLOBAL.out deleted file mode 100644 index 78af2935f57e737923fc07307a6894683d08abb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.2709125200907389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199308_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199308_D_GLOBAL.out deleted file mode 100644 index b750f2893045472d0a2f9823947ff25a2bdbe111..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.2684364398320516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199308_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199308_H_GLOBAL.out deleted file mode 100644 index 6f6065500697a93639270f94d86e0bdfa6a67e53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.026839677492777506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199308_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199308_M_GLOBAL.out deleted file mode 100644 index c3797b6711daa81f9d983583ef6fd293e22a26ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.05205978155136108 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199309_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199309_D_GLOBAL.out deleted file mode 100644 index 30a35e0db7eb3f68efdb218005fad2c57c02a29a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.08343313137690227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199309_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199309_H_GLOBAL.out deleted file mode 100644 index 3b6e421cc21281bacce6fbaf701ea37aa309d935..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.028124133745829265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199309_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199309_M_GLOBAL.out deleted file mode 100644 index 5db1550ebb6a72ef0cd4a29edf0218f32a17949a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.12097579638163249 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199310_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199310_D_GLOBAL.out deleted file mode 100644 index 98e04a3232a90c0120fa0f73bad6c0bbfd48d561..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.02959280014038086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199310_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199310_H_GLOBAL.out deleted file mode 100644 index e4e391ab4463bdbba755c27f44084940af5bbbe6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.026115818818410238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199310_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199310_M_GLOBAL.out deleted file mode 100644 index a9bd8450495ec1c8edd98391ca01634b5f40aec7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.03273313045501709 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199311_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199311_D_GLOBAL.out deleted file mode 100644 index c6a4fb1cab34deb89c8c385960a2e799419c61dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.05174535115559896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199311_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199311_H_GLOBAL.out deleted file mode 100644 index 1ef0d13d702d5ef52b26fb50a3a4c85ab3a24ff5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.035113640626271564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199311_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199311_M_GLOBAL.out deleted file mode 100644 index 77831983151a1caa5b0bdb3c0608d0242f19eeb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.03326760133107503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199312_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199312_D_GLOBAL.out deleted file mode 100644 index 5c2fb71bda36dc86ca5648370036ce6c0eee2be7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.2525519410769145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199312_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199312_H_GLOBAL.out deleted file mode 100644 index 2d39157ce4830502f3f09bff7118cc0aa40e80d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.06141563653945923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199312_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199312_M_GLOBAL.out deleted file mode 100644 index f2c10a1f708d2d871a8dcd9276e2284e8e48b5d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.06444680293401082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199401_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199401_D_GLOBAL.out deleted file mode 100644 index 2801e9f60c5769d39a65796bf741f48d6eba7d6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.05130642652511597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199401_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199401_H_GLOBAL.out deleted file mode 100644 index 4ff279e97a098a98d017030c58ae5f7068f1338a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.0675434947013855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199401_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199401_M_GLOBAL.out deleted file mode 100644 index 8c17315f8bf75e2294370f2af9f68f566057ac72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.2529618263244629 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199402_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199402_D_GLOBAL.out deleted file mode 100644 index 56cf8fc80f56dc967c0ff11110c3df8768bc03e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.05082982778549194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199402_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199402_H_GLOBAL.out deleted file mode 100644 index 7ea8bc78739deac52d081a57342a76f645a29d8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.04219024181365967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199402_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199402_M_GLOBAL.out deleted file mode 100644 index 80658b2716aa4a04ae14f5ee1a4fde3e300accd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.2860408902168274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199403_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199403_D_GLOBAL.out deleted file mode 100644 index 0370d3caa59e1bbd25d85d096cf4495c9a049f05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.21657682259877523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199403_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199403_H_GLOBAL.out deleted file mode 100644 index e2b255add873306c8995da499cc155f41bdc8263..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.07475459973017375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199403_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199403_M_GLOBAL.out deleted file mode 100644 index eb18179d01fa685d187ccb1edd46345d1d54ce24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.06572056214014689 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199404_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199404_D_GLOBAL.out deleted file mode 100644 index 5a28505ce27680cad93a4571fd406e699914752c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.07575455904006959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199404_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199404_H_GLOBAL.out deleted file mode 100644 index 930ae7f3a95e5d38e9e22b8df11b1d5a966bab36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.25349611043930054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199404_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199404_M_GLOBAL.out deleted file mode 100644 index 59c58e7fe41565533125e341aedc0d4ac6e31bdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.24714622100194295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199405_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199405_D_GLOBAL.out deleted file mode 100644 index 6b5805a7b243f6f62aff9b95cb185aa954e7d619..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.04658656120300293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199405_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199405_H_GLOBAL.out deleted file mode 100644 index 53b735aef41e8e92606846202eb4e4d1aa614b7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.17328201134999593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199405_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199405_M_GLOBAL.out deleted file mode 100644 index 2bb453933c83473c2cc0bd3cf4b130894b2c8d3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.22127595742543538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199406_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199406_D_GLOBAL.out deleted file mode 100644 index 8440e0423ef927ec6dc1d9c8cc4bca4a51b79b4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.06549359162648519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199406_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199406_H_GLOBAL.out deleted file mode 100644 index 2d34167c0c83040f3647217ea0404c7dd173bbf7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.08490987221399943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199406_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199406_M_GLOBAL.out deleted file mode 100644 index a849a7ae506d448bd5a595422af40a3be46995f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.08420712153116862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199407_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199407_D_GLOBAL.out deleted file mode 100644 index acbc9c46282b6b9bf2600455d7091aacb15c738d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.047438192367553714 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199407_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199407_H_GLOBAL.out deleted file mode 100644 index a97370a6020a734b0d68376b3ac41e17bb1f6b8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.06507628758748372 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199407_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199407_M_GLOBAL.out deleted file mode 100644 index fe8c64e43e192c4d650acccd4fd25de11b4646a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.046991209189097084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199408_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199408_D_GLOBAL.out deleted file mode 100644 index 3afdb6e9b7db058e3527cd94de1657bf8b6a1f95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.074852454662323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199408_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199408_H_GLOBAL.out deleted file mode 100644 index bbcfab14fca81d511b3e9fbdb914568e4f2871f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.13598324060440065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199408_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199408_M_GLOBAL.out deleted file mode 100644 index ee0adaa6eb584f7878178633112c36697c5f2ab3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.06048945188522339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199409_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199409_D_GLOBAL.out deleted file mode 100644 index 58bbf8bcee989f43bb4ecaab082daa7c63c85520..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.07268691062927246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199409_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199409_H_GLOBAL.out deleted file mode 100644 index 62e345773c1a8e46a8496a5ee5839f99e4fe960f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.048872788747151695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199409_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199409_M_GLOBAL.out deleted file mode 100644 index 99cde1b23029215235f105bec6d164847de69508..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.07687867482503255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199410_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199410_D_GLOBAL.out deleted file mode 100644 index 9930ed23b59e1744d7793c30c87faaeb40972bac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.26024356683095295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199410_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199410_H_GLOBAL.out deleted file mode 100644 index 6650c5e9c78b9e2e7d4d51b73f067dcbc475ea5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.23799434502919514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199410_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199410_M_GLOBAL.out deleted file mode 100644 index a2ac6839ba52606ea8a436745e4fc9010a6489b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.13758407831192015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199411_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199411_D_GLOBAL.out deleted file mode 100644 index eb2138524b69db3db75af78083dfd04e55908ef2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.051261703173319496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199411_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199411_H_GLOBAL.out deleted file mode 100644 index 6ba6056e8efbb6a40588ceb60e7bc03a38cfbfa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.0472613255182902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199411_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199411_M_GLOBAL.out deleted file mode 100644 index 37e8a888a6b03ab21864647bc9af2e27034f4bde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.045932392279307045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199412_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199412_D_GLOBAL.out deleted file mode 100644 index b09d013b88907342e21b80625a82ed9eee0d30ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.2605974992116292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199412_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199412_H_GLOBAL.out deleted file mode 100644 index 9d9bb16a40a9efde9ac8ccedb2b1869d5bc2198a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.042368165651957196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199412_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199412_M_GLOBAL.out deleted file mode 100644 index 38dc69b70f62f4aa2a7b077325e931c98d9a52e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.05568333864212036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199501_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199501_D_GLOBAL.out deleted file mode 100644 index 47d774792d9b9f4ecb40acb772ad146389c3e724..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.05059303442637126 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199501_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199501_H_GLOBAL.out deleted file mode 100644 index 8a11c845446774e762e11df68213a895d17112e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.05664665699005127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199501_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199501_M_GLOBAL.out deleted file mode 100644 index 8bae4fb06f6896d8b7832ee14391aaecb9a4889a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.05311384201049805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199502_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199502_D_GLOBAL.out deleted file mode 100644 index 19fc0c7cb2319852376afbc06383d4fd3432c4c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.05332404375076294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199502_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199502_H_GLOBAL.out deleted file mode 100644 index eca71443dcaecc72de0f474420cf8c086f4b84f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.05267206827799479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199502_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199502_M_GLOBAL.out deleted file mode 100644 index d0d73eefbc1be1e05a4a395c912cac603bbfec0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.13849958578745525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199503_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199503_D_GLOBAL.out deleted file mode 100644 index b95a40881fc7c3f6bd757c377fd95142a5909b38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.13904544115066528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199503_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199503_H_GLOBAL.out deleted file mode 100644 index 68aaed5933ac9c52fd44d7c25e6cb5f93fc622a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.05030436118443807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199503_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199503_M_GLOBAL.out deleted file mode 100644 index 18fd5aab5c60b914eddf905dc183c9b677e2316a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.2067862351735433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199504_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199504_D_GLOBAL.out deleted file mode 100644 index 7bab1788bce3f45c4409c2468f56927c82072bde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.21350859403610228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199504_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199504_H_GLOBAL.out deleted file mode 100644 index 5235489fd907d21be88f3f2c300f41b6fd45dab6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.15642654101053874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199504_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199504_M_GLOBAL.out deleted file mode 100644 index e43cf895603f9595a2a5f7e04bd6aa84a745a502..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.08603015343348185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199505_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199505_D_GLOBAL.out deleted file mode 100644 index 6c7aa6f8fe71280b5c1ec85c11c07cc411d2e6b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.044341862201690674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199505_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199505_H_GLOBAL.out deleted file mode 100644 index 7e2dd9d7ed4b012b949a83385fe786d4a92b67d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.08273183902104696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199505_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199505_M_GLOBAL.out deleted file mode 100644 index 37949c1e299e4bac2336fc7da25642bfe08e5fc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.08042898575464884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199506_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199506_D_GLOBAL.out deleted file mode 100644 index 9e0647dca95cb956dd3321133d6f6dcdb39a9426..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.04914113283157349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199506_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199506_H_GLOBAL.out deleted file mode 100644 index 4a41257a1514ed4c0fc21bbd9c5fc9f46a906229..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.25778562227884927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199506_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199506_M_GLOBAL.out deleted file mode 100644 index 52aa9b8ee9efdb62314749f519fd91a452a2617c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.07270199060440063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199507_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199507_D_GLOBAL.out deleted file mode 100644 index ea1076cbff9fad9132602fce6e4fa3494ca07eae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.06499468485514323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199507_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199507_H_GLOBAL.out deleted file mode 100644 index 1281f43632688b147997c55f18cf16b5b146192b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.06852859656016032 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199507_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199507_M_GLOBAL.out deleted file mode 100644 index 78036ac5dc2562bcb3424f4cb942297de97cb44f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.05224192937215169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199508_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199508_D_GLOBAL.out deleted file mode 100644 index 16ca9130be8945eef0b65b65df853d1a7c3724de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.26219650109608966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199508_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199508_H_GLOBAL.out deleted file mode 100644 index b0ab02f0bd0162a3bf44657c91a0bdb48fb4af07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.15433027346928915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199508_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199508_M_GLOBAL.out deleted file mode 100644 index 6728d014399afae7baafc7b008f950ae424c46b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.0652315100034078 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199509_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199509_D_GLOBAL.out deleted file mode 100644 index 925c10bf2117b88c08eaefd7fcac6c3462662b5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.05647805134455363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199509_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199509_H_GLOBAL.out deleted file mode 100644 index 66a2af92d744c787b6eb5664a290b9802dd3558c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.19864354530970255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199509_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199509_M_GLOBAL.out deleted file mode 100644 index 0b512fafbc9f5024b26c68274af760bb6808f16c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.05743537346522013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199510_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199510_D_GLOBAL.out deleted file mode 100644 index 2242760b107c8828c16d445e1414080a094d9ed8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.2581343412399292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199510_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199510_H_GLOBAL.out deleted file mode 100644 index 513c0a7b007d97a012472c089ce2ee7e922f17f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.08766295512517293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199510_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199510_M_GLOBAL.out deleted file mode 100644 index 9392fb60897fea88ebe937bb2c621358e9509dea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.049698023001352946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199511_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199511_D_GLOBAL.out deleted file mode 100644 index a836ef0b5444dd7788392bf4ee00bb79ea66a6ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.07722970644632975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199511_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199511_H_GLOBAL.out deleted file mode 100644 index 6b7e8dfbbaafdc8f5f50b1184df075e936b01b38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.051435208320617674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199511_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199511_M_GLOBAL.out deleted file mode 100644 index 35e3a419d3218fd2614681b78295f62b3a3a5618..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.051896417140960695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199512_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199512_D_GLOBAL.out deleted file mode 100644 index 66b209c2c2dbb123c852ea7fe496e1cc0732ce9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.10658697684605917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199512_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199512_H_GLOBAL.out deleted file mode 100644 index a44e82dc2347e8f5c449d95ca353aaaa037c100d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.25607277154922486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199512_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199512_M_GLOBAL.out deleted file mode 100644 index 21fdaf12ff200b833296fd2c3ce728ceb8b3e331..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.09056942065556844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199601_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199601_D_GLOBAL.out deleted file mode 100644 index 3e009d3330563a0df5beb5c4149a1876c50331f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.10209317604700724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199601_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199601_H_GLOBAL.out deleted file mode 100644 index cb50ad8bbbb665c47fe0afbcbeb0c4424378fdcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.045613388220469155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199601_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199601_M_GLOBAL.out deleted file mode 100644 index da67349d8a1652984d573bb5ef5a95b0d69ef391..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.057061572869618736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199602_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199602_D_GLOBAL.out deleted file mode 100644 index 42c6d4580fd9fca290a143e0b1217aedd11469ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.053726601600646975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199602_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199602_H_GLOBAL.out deleted file mode 100644 index 3496a6a1913e8d8f656e428495869e9b24a1d967..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.2119299054145813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199602_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199602_M_GLOBAL.out deleted file mode 100644 index e44b63abe4b489b66f7feefdafd1d488c8ee05a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.046577235062917076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199603_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199603_D_GLOBAL.out deleted file mode 100644 index 100a79c71316604d513bf9c4be21b80175c01102..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.06939183473587036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199603_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199603_H_GLOBAL.out deleted file mode 100644 index ad988dfd09bf651312b5002073a9a81dbe911eb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.24848936796188353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199603_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199603_M_GLOBAL.out deleted file mode 100644 index 258679bfbc586d86e6ef229f7545b9489cd896bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.13833056290944418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199604_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199604_D_GLOBAL.out deleted file mode 100644 index e2b57e6eff296b4624a75fb42ede63570f7d6d15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.070371941725413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199604_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199604_H_GLOBAL.out deleted file mode 100644 index cbc36925549177b93556cb36b9ae3d60ce6166ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.04359092712402344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199604_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199604_M_GLOBAL.out deleted file mode 100644 index 55c3e66d7af4133d53a18c4265c0fd879d3cd4c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.21088984807332356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199605_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199605_D_GLOBAL.out deleted file mode 100644 index 947476ef56def6c00b88907b996cbb29c38e233e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.06667202313741048 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199605_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199605_H_GLOBAL.out deleted file mode 100644 index a0a436f70e1a7998d4532279311868730228be9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.04321041504542033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199605_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199605_M_GLOBAL.out deleted file mode 100644 index 6fa6cceb78d24b3a6cd2cec873f6d53767ee5c40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.06951344013214111 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199606_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199606_D_GLOBAL.out deleted file mode 100644 index acbb13c5b26d2992ecc5d23cae60adae4283c98b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.06550663709640503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199606_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199606_H_GLOBAL.out deleted file mode 100644 index 6f036151d665b2b3024e49ea87f4415edf416100..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.04668186902999878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199606_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199606_M_GLOBAL.out deleted file mode 100644 index 8b0b2cb5ecaf27c4f30b10e25aaeb189fb424c8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.10175613164901734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199607_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199607_D_GLOBAL.out deleted file mode 100644 index 7405f0ec091fec432e18010df9c703a836038fff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.2570290446281433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199607_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199607_H_GLOBAL.out deleted file mode 100644 index b841e40bb854ac1e3d9312e03790e9cbb169f737..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.04156123797098796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199607_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199607_M_GLOBAL.out deleted file mode 100644 index c8e79ed45ecb77f45f8555f79132733c1f8c6364..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.1435112675031026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199608_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199608_D_GLOBAL.out deleted file mode 100644 index 98394776b3f22b6e62e74f7b60af06432c6821b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.07109142144521077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199608_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199608_H_GLOBAL.out deleted file mode 100644 index b451822bf5d4622e10ad6ebe50f1c877afd268e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.044605791568756104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199608_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199608_M_GLOBAL.out deleted file mode 100644 index c0104f8dd44c2532d08e202ab5dc755f2e6c79fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.06614328622817993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199609_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199609_D_GLOBAL.out deleted file mode 100644 index 25fb0befba179a11768c9381ceea0b4a22d0b95a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.08678849935531616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199609_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199609_H_GLOBAL.out deleted file mode 100644 index f6d3b35135eff70d2f1740463d7c3c7d66f48efa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.05120388666788737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199609_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199609_M_GLOBAL.out deleted file mode 100644 index 612e45a317484ab7e9256719e572e247eaf4ee7f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.057964034875233966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199610_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199610_D_GLOBAL.out deleted file mode 100644 index 5940ffb3d2e3a43262e6b9d35c56b6987c144951..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.04680925210316976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199610_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199610_H_GLOBAL.out deleted file mode 100644 index 06da04d6381287aaa4bc154504103368d97f9626..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.06874262889226278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199610_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199610_M_GLOBAL.out deleted file mode 100644 index dd539f8b1c60affbc1f26fbc10b54d56715b6aa5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.05555952787399292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199611_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199611_D_GLOBAL.out deleted file mode 100644 index 3a3a282b65ec79d68ba2cd764dcc39329727e977..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.055349854628245036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199611_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199611_H_GLOBAL.out deleted file mode 100644 index 9bec3c4bc4b6abc1169ebcde6ed53454294f4ff7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.05915795962015788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199611_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199611_M_GLOBAL.out deleted file mode 100644 index c64e6d5978b074348ecd6e1b650c51674b61b93c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.07386664549509685 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199612_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199612_D_GLOBAL.out deleted file mode 100644 index 66641357eee39e0401887cce366177819109f966..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.07143494685490927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199612_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199612_H_GLOBAL.out deleted file mode 100644 index 6ae7e2bcdd14a54c867d2e9931b3436a52adb923..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.24878313541412353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199612_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199612_M_GLOBAL.out deleted file mode 100644 index 4ad9b8f05c76db678ade2240a07a94ba8be731ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.04877654711405436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199701_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199701_D_GLOBAL.out deleted file mode 100644 index 396b0b26a4151b60199d16d2458013efa9cf81b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.24775760173797606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199701_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199701_H_GLOBAL.out deleted file mode 100644 index 922e537332e23cec9727caaa9d00da87eef2c387..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.07671840985616048 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199701_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199701_M_GLOBAL.out deleted file mode 100644 index 62a9b2d42c85a7a827a4fdb4654133d88b9de192..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.21450486580530803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199702_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199702_D_GLOBAL.out deleted file mode 100644 index 4d489056f71d3913d18a8bd5c0ab78149eef8515..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.0473447839419047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199702_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199702_H_GLOBAL.out deleted file mode 100644 index 32c187c7101c68d519efae90f88b987793b15130..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.16707576513290406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199702_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199702_M_GLOBAL.out deleted file mode 100644 index dd0de7183012883e3bd304a743eb125b40574775..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.07207170327504477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199703_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199703_D_GLOBAL.out deleted file mode 100644 index 76bebace1d8f681f61bffbb5ed7b89f4551c98c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.25560584863026936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199703_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199703_H_GLOBAL.out deleted file mode 100644 index 8f5793907e040ea230ff35bf57400a31ae7fd731..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.04502104918162028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199703_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199703_M_GLOBAL.out deleted file mode 100644 index 2079057e533bc15f9abd62b8f3a1e4abedb4b246..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.06767082611719767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199704_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199704_D_GLOBAL.out deleted file mode 100644 index 46cac4655e058d634043a1108e654e659e486366..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.049480779965718584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199704_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199704_H_GLOBAL.out deleted file mode 100644 index c9a3ecc921a9c62748c6261d54c1c6ffa8a471dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.05853797197341919 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199704_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199704_M_GLOBAL.out deleted file mode 100644 index 7a32422c7f76445382747ee148f307b9bed6cbd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.2568763573964437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199705_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199705_D_GLOBAL.out deleted file mode 100644 index 1c4c4742da927ec210512192668e210290888bf4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.07095151742299398 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199705_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199705_H_GLOBAL.out deleted file mode 100644 index 67fdcf24566e0a4a25e46e7975cc20f467a78fb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.049846927324930825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199705_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199705_M_GLOBAL.out deleted file mode 100644 index f83dc196b77566d7d94469b15a6300a71f0c9e43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.24040327072143555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199706_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199706_D_GLOBAL.out deleted file mode 100644 index f9f7eb02cb85d22ab68c250751f954c5e93ba47c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.04860110282897949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199706_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199706_H_GLOBAL.out deleted file mode 100644 index 6c42fe64b1cd2c3f6e3e9d4e495e5873cb46e836..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.0514644980430603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199706_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199706_M_GLOBAL.out deleted file mode 100644 index 8d11e26439ece9b7ca23bbb01c312fc0d6c8e6d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.06914364496866862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199707_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199707_D_GLOBAL.out deleted file mode 100644 index d7515f309802bb7bdcf997fd24b23596405cd7b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.05076408783594767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199707_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199707_H_GLOBAL.out deleted file mode 100644 index a752553c6c486a3327a87b647424841f909191f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.05158913930257161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199707_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199707_M_GLOBAL.out deleted file mode 100644 index 7220c38c1d95c5e067e8e12a92303a174acba39e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.04316163857777913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199708_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199708_D_GLOBAL.out deleted file mode 100644 index 0570060e492808bd4ed683bcc871ddd0094b3430..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.07590300639470418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199708_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199708_H_GLOBAL.out deleted file mode 100644 index 9c5093b6681b21c3fee79226e26b9d1cecb0092c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.1928581674893697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199708_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199708_M_GLOBAL.out deleted file mode 100644 index edd4720a77edc64ef0fabff9b232ed46052e1558..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.15152686834335327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199709_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199709_D_GLOBAL.out deleted file mode 100644 index a828b57a6cfed300f565f628cef273460cd98ed9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.05886672735214234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199709_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199709_H_GLOBAL.out deleted file mode 100644 index 5287efcd32ca5c005dd353af720395f6a0848486..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.24859609206517538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199709_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199709_M_GLOBAL.out deleted file mode 100644 index 1e0d4ef4f3b55b474cd5ef9a4d3a689520b79379..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.08569123744964599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199710_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199710_D_GLOBAL.out deleted file mode 100644 index fa142a9491d65249cd3d9e81c05e177add2121f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.07793010075887044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199710_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199710_H_GLOBAL.out deleted file mode 100644 index fc9adf3173e711662d325c2e2158a3e9205ce51e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.04423117240269979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199710_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199710_M_GLOBAL.out deleted file mode 100644 index 107c5af920dd2da156a63c03b33a906e1075ec8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.24918347994486492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199711_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199711_D_GLOBAL.out deleted file mode 100644 index e4266e32455948e9e5acfc46557961d1bdcf76de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.2510518431663513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199711_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199711_H_GLOBAL.out deleted file mode 100644 index 575769f3f31861b7ce9f463fb9ac41f2844d16e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.08449174960454305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199711_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199711_M_GLOBAL.out deleted file mode 100644 index 57f2625175a724c6e06a90afd2093828fbacad03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.07327192624409994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199712_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199712_D_GLOBAL.out deleted file mode 100644 index 5bf042c3cfca12dc36beb88fba2d0b655772181f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.28436806201934817 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199712_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199712_H_GLOBAL.out deleted file mode 100644 index 831fdc6793ae96b7be37c35c61d43d6274c4496a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.046468818187713624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199712_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199712_M_GLOBAL.out deleted file mode 100644 index 3c4836c4aaf325e5f8b8ff4272a841feffdbb6e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.10202808777491251 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199801_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199801_D_GLOBAL.out deleted file mode 100644 index b6943e9c3b3ee99f5f56af3adca989adadfed89e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.07939036687215169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199801_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199801_H_GLOBAL.out deleted file mode 100644 index af9f59d7cd065b91d5859c2b1034af7828d5b748..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.05329190095265706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199801_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199801_M_GLOBAL.out deleted file mode 100644 index b1fce612c64724e9eeafceb0000aa15b03e7058f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.05077766974767049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199802_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199802_D_GLOBAL.out deleted file mode 100644 index 366d06378fb6a7f5ce5a085984e7ae3cb14441b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.07873717149098715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199802_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199802_H_GLOBAL.out deleted file mode 100644 index 1efff2551e6fb267cb0ac6d412a55a15f2432b96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.25166223843892416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199802_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199802_M_GLOBAL.out deleted file mode 100644 index 76c662ccce6d87ceb5fc59b4d4baf77b610928a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.07510616381963094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199803_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199803_D_GLOBAL.out deleted file mode 100644 index 3cb8e45c7eb35fcd2f9a43f884309c0ed05426d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.139497709274292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199803_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199803_H_GLOBAL.out deleted file mode 100644 index cd65559fc14df3597e99c5281ad53330c9940e54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.0754495104153951 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199803_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199803_M_GLOBAL.out deleted file mode 100644 index 1af5d8f24732cf3c76d14e1764430ee16289a63e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.26193797985712686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199804_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199804_D_GLOBAL.out deleted file mode 100644 index efe6bded35348cc99e966fc0d152506c9ee41c28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.082923956712087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199804_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199804_H_GLOBAL.out deleted file mode 100644 index a596a0f35a7ff7134766bf991394c79e9dd96431..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.0824875553448995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199804_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199804_M_GLOBAL.out deleted file mode 100644 index 422b9fe4774523b9c758317a1409386101ec98ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.2536749362945557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199805_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199805_D_GLOBAL.out deleted file mode 100644 index d61da70a5b57eacab1c9b3a133714cb70ca19e51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.08394888639450074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199805_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199805_H_GLOBAL.out deleted file mode 100644 index 8ffccc908c3a31de8a9585265441dc2b52be1045..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.05424352486928304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199805_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199805_M_GLOBAL.out deleted file mode 100644 index 7404126a8058eaaa18ed3a5dc71f9ccc495dbec3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.08481420675913492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199806_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199806_D_GLOBAL.out deleted file mode 100644 index 2a397e541da2e0e7c8132577035cebd93ee6d6cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.2516029278437297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199806_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199806_H_GLOBAL.out deleted file mode 100644 index 189c40e3f5875ca614413e7dc25e11e1d66c76e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.046566494305928546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199806_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199806_M_GLOBAL.out deleted file mode 100644 index 48440cc8915ccad3ef7d107b5b12e938669be030..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.08638508319854736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199807_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199807_D_GLOBAL.out deleted file mode 100644 index 73a367a86743ed60dce4db869f23a75880a0e36a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.10898937781651814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199807_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199807_H_GLOBAL.out deleted file mode 100644 index 6d09be3f557cca1fb4bb7f0452e74c896a951c39..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.08041450579961142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199807_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199807_M_GLOBAL.out deleted file mode 100644 index 0f7b6f7fed27668a36425dc82150c4c1b6eabd8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.0486164927482605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199808_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199808_D_GLOBAL.out deleted file mode 100644 index c275af8842747381feda9833790e9bda9c27278f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.23953205744425457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199808_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199808_H_GLOBAL.out deleted file mode 100644 index ed2a1c10c86c89889fed6625bd8ee6849ef465bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.06415961980819702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199808_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199808_M_GLOBAL.out deleted file mode 100644 index dd15b0e6f3aca98c018ebef97fabfb6906c8fb6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.052374958992004395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199809_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199809_D_GLOBAL.out deleted file mode 100644 index 3211fce4acf080ceca795de0c5998df6e3490ee9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.04459664424260457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199809_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199809_H_GLOBAL.out deleted file mode 100644 index 83cda9ddadef0ae0ae0fcd269b629976301b1174..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.07204777797063192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199809_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199809_M_GLOBAL.out deleted file mode 100644 index c4a1d0e3add64f03406af8bb55087ef20d43a37e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.060786553223927814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199810_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199810_D_GLOBAL.out deleted file mode 100644 index 4490c1b936492f19762f32e1509aeb2ac5b0713a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.05000474850336711 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199810_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199810_H_GLOBAL.out deleted file mode 100644 index 0bc40a48fdb10adcfdd3685aeed0a5b63c6224df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.07456958691279093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199810_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199810_M_GLOBAL.out deleted file mode 100644 index 8797b6e4ae0195ebd0cb34c026811a1d8fef66a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.07219158411026001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199811_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199811_D_GLOBAL.out deleted file mode 100644 index 1f7e68d36ce6c2a99ade23d24d1a72064a511879..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.11550995111465454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199811_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199811_H_GLOBAL.out deleted file mode 100644 index 897b8b54fd62bfc4429cedce3ca7bd1ac236c7fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.20139812628428141 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199811_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199811_M_GLOBAL.out deleted file mode 100644 index 15594f80a588b015b2b320e04ebb17b30fbeaf90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.05858779748280843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199812_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199812_D_GLOBAL.out deleted file mode 100644 index ce42e0c4474340afeb851eb19e823d586acf2839..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.29294712940851847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199812_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199812_H_GLOBAL.out deleted file mode 100644 index 2a7f688e21a339779759e9da6817bb83df02be72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.05143082539240519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199812_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199812_M_GLOBAL.out deleted file mode 100644 index 64b35f400f3b43df990d77c16fa6fe0dd72ffe65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.07254256804784139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199901_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199901_D_GLOBAL.out deleted file mode 100644 index 2a0c8abd74bce021527d34b14ada41965e4b43cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.06644456386566162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199901_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199901_H_GLOBAL.out deleted file mode 100644 index 17940c602d5b73f16a452a9fa7f96a66b374f29c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.07770816087722779 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199901_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199901_M_GLOBAL.out deleted file mode 100644 index 09626fa6a81980c29d868c10e28bc456c1e68390..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.22198299566904703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199902_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199902_D_GLOBAL.out deleted file mode 100644 index dfbce8024cbbb6edc1b5489341d9000d2e269e2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.04970310131708781 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199902_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199902_H_GLOBAL.out deleted file mode 100644 index 3f57b64688924979c0c3b7421edf6ec3a4e5c827..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.14429606993993124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199902_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199902_M_GLOBAL.out deleted file mode 100644 index e6e0acb8d3c9357f53cc8154c54024c5515eb8c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.22898898124694825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199903_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199903_D_GLOBAL.out deleted file mode 100644 index 0286b7c2483ebdc9381cc4c1d23a0b90670737a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.08718301852544148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199903_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199903_H_GLOBAL.out deleted file mode 100644 index debcb1f0a4041a03d8de1d35a80ab921822a175c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.21026145617167155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199903_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199903_M_GLOBAL.out deleted file mode 100644 index 3d5801eef55d478965301b9706ef64d87e206a01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.07363092104593913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199904_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199904_D_GLOBAL.out deleted file mode 100644 index 9437e73939cd64ed56392c851805561a95ab7482..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.05407160520553589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199904_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199904_H_GLOBAL.out deleted file mode 100644 index 2d412be00240ca47a11a6d8b041a224ef7b79988..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.054178380966186525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199904_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199904_M_GLOBAL.out deleted file mode 100644 index 7464b44b6babd35000367b002e01702bd6f9a594..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.2245713750521342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199905_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199905_D_GLOBAL.out deleted file mode 100644 index a66051b365c2a02925ad1cffe590203037bc29e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.05552579959233602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199905_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199905_H_GLOBAL.out deleted file mode 100644 index fe24f72db34d4f1e7ad75092bf1d16ec0b47e393..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.21984777053197224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199905_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199905_M_GLOBAL.out deleted file mode 100644 index 1044a3c49a16f4f6ac2772c77bd7b8b5a6546b33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.0795894742012024 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199906_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199906_D_GLOBAL.out deleted file mode 100644 index 0c97786d8c6a1b30c831af6a1401db87f22ded0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.047581688563028975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199906_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199906_H_GLOBAL.out deleted file mode 100644 index fc9d2f291c02ace0be363f1ab47450610a141780..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.07653785149256388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199906_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199906_M_GLOBAL.out deleted file mode 100644 index 699176d4f736d9e9e0d4c93c45df70314b1f97d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.26336395343144736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199907_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199907_D_GLOBAL.out deleted file mode 100644 index 9dca0b3e05660f7ebf02a373679eb9b80ef31519..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.26192395289738973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199907_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199907_H_GLOBAL.out deleted file mode 100644 index 8e8e346b216c2981cac66080f1ab475375505ee4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.04946856101353963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199907_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199907_M_GLOBAL.out deleted file mode 100644 index b390df615b3b938720de521ad44b19cfe135dd43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.1384596069653829 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199908_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199908_D_GLOBAL.out deleted file mode 100644 index e40af1287a54a6e7f793db88ff70380044330562..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.044433224201202395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199908_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199908_H_GLOBAL.out deleted file mode 100644 index 0cc72946f888ce4ab70fd254c29a65ab915676b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.07147562106450399 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199908_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199908_M_GLOBAL.out deleted file mode 100644 index 908a73c2dc23f9751f0263e6d1783083c3b37f68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.07992246548334757 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199909_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199909_D_GLOBAL.out deleted file mode 100644 index d226ef26df5f851d01fd29b57e83d34bd0ad4308..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.2828685164451599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199909_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199909_H_GLOBAL.out deleted file mode 100644 index 6fe19da2b24936c930d74cefe0a9a90e3aa131f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.049069849650065105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199909_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199909_M_GLOBAL.out deleted file mode 100644 index 2e59f6061c58a510b61c9e68465ca6624b6ce436..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.07240782181421916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199910_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199910_D_GLOBAL.out deleted file mode 100644 index 25ce8be05d15e735f1db1e7d1043f035fbe7be10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.07605872551600139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199910_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199910_H_GLOBAL.out deleted file mode 100644 index b9a57162bd85b629623ce9962061222f132df1dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.06058714389801025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199910_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199910_M_GLOBAL.out deleted file mode 100644 index 3fb06fa00abcaeacaa05468bd055dabba84da410..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.2906254450480143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199911_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199911_D_GLOBAL.out deleted file mode 100644 index 45c3f4bb5448f02d84e438f7b077fac29f2a12d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.08110603094100952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199911_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199911_H_GLOBAL.out deleted file mode 100644 index 9afd0e3e27382bf277a6438f826d09c6ef17f5d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.0857598861058553 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199911_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199911_M_GLOBAL.out deleted file mode 100644 index e8796fc9316fa0d6901e5d8c666972ba70d18256..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.08739950656890869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199912_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199912_D_GLOBAL.out deleted file mode 100644 index 2ede9c39a77dba2a6755f8b3f04cc0a7f34a6d3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.04828058083852132 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199912_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199912_H_GLOBAL.out deleted file mode 100644 index 66d78f9401dde08d8dbd9fc973cebc1fce7d3654..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.0795218825340271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_199912_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_199912_M_GLOBAL.out deleted file mode 100644 index f9ff6c9c8a658cdc8ef76e0e5d42725540c55e8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_199912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.08076970179875692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200001_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200001_D_GLOBAL.out deleted file mode 100644 index 3f7855da596aeb19284d729b2f3421d922f9c9e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.2563759128252665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200001_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200001_H_GLOBAL.out deleted file mode 100644 index 616aa074fe1c360f9f3b93766a4dc3a462fd93fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.061227790514628094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200001_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200001_M_GLOBAL.out deleted file mode 100644 index 0aa67e61950c7a39709fd566ac4e95aa2610dc7f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.056498201688130696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200002_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200002_D_GLOBAL.out deleted file mode 100644 index 9fc3ebfaaa90348bcfb297478f67aa86d44e74a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.08191508452097575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200002_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200002_H_GLOBAL.out deleted file mode 100644 index 6d019dc385160630fe6ad70b5b377ae0fcca6552..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.08576891422271729 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200002_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200002_M_GLOBAL.out deleted file mode 100644 index 3ea9fae53790f453958c9cba96637bd774c0a62c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.0930489977200826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200003_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200003_D_GLOBAL.out deleted file mode 100644 index d54c6f443de1a4d23be2ba16bb9756f0b721b44e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.054428104559580484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200003_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200003_H_GLOBAL.out deleted file mode 100644 index 7778548a19119a468cae2d95007b1977469c37ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.0546804944674174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200003_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200003_M_GLOBAL.out deleted file mode 100644 index 4ea40eeaa2598994180e06d12fb7e291d4d2a765..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.26568575700124103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200004_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200004_D_GLOBAL.out deleted file mode 100644 index 71ae5cf3eff9c5fb41f1b2a6bc0c0d636536c416..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.05331796407699585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200004_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200004_H_GLOBAL.out deleted file mode 100644 index a6d1be6a048a6a1659703adac0801b6dae1479eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.06647179524103801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200004_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200004_M_GLOBAL.out deleted file mode 100644 index bb13c92320fa047433ef681343a99a591204fee7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.07352931896845499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200005_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200005_D_GLOBAL.out deleted file mode 100644 index c4629bbd987934517160fa2fa7c312604a9e9027..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.07904449701309205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200005_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200005_H_GLOBAL.out deleted file mode 100644 index 7553a749c66e330d55edb55682841730a1a426d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.04479035933812459 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200005_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200005_M_GLOBAL.out deleted file mode 100644 index d302ab86b144d948baf1bf6c5d127f5d13ec564f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.07379822333653768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200006_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200006_D_GLOBAL.out deleted file mode 100644 index 8127dea97ac88fa216d1c6287769deb7fa8d2562..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.05878471533457438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200006_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200006_H_GLOBAL.out deleted file mode 100644 index 5cce827c0375db103554c4c6e70a9dd42114b672..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.23986275593439738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200006_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200006_M_GLOBAL.out deleted file mode 100644 index 33d19102e9c07f19d4df5ce73a54cd95e9982b6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.2471226215362549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200007_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200007_D_GLOBAL.out deleted file mode 100644 index bee80cda4080a725800b8291ac93abb0abc866c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.08482441504796347 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200007_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200007_H_GLOBAL.out deleted file mode 100644 index d849437d2de978dc0f9645bf3a67ae9eb0b75117..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.24897945721944173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200007_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200007_M_GLOBAL.out deleted file mode 100644 index a71fedfa806309806fbd7d89031cfe7120afd5c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.22336881558100383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200008_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200008_D_GLOBAL.out deleted file mode 100644 index 01eaacdf3f783e847d72c8b8a9656308ac34aeee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.07407413721084595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200008_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200008_H_GLOBAL.out deleted file mode 100644 index cc1f6ffc7aecf0342a6c30102928e5145fbcbaa4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.25002218087514244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200008_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200008_M_GLOBAL.out deleted file mode 100644 index 8a47e9c3406aac50bbcb71a60e4272f32e909293..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.2505953590075175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200009_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200009_D_GLOBAL.out deleted file mode 100644 index ccc041acf95c2ecb4f93db5f37edc49e0beaebaf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.08521714210510253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200009_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200009_H_GLOBAL.out deleted file mode 100644 index 7adee97f7ff9845cc0401e9cbad32faaf4cfa217..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.252219279607137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200009_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200009_M_GLOBAL.out deleted file mode 100644 index b0288e2ac84d731f82f937cb19c7e7f244372621..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.2690610925356547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200010_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200010_D_GLOBAL.out deleted file mode 100644 index 6252431ae00f39f976e2938773ed2b228d7f41fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.22333187262217205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200010_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200010_H_GLOBAL.out deleted file mode 100644 index dbaf6635356bffa176aa0bfd9922337fb3338bd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.08738648494084676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200010_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200010_M_GLOBAL.out deleted file mode 100644 index 4c94defe9686d7c1f4de22eac4f24238648c4db4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.29327953259150186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200011_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200011_D_GLOBAL.out deleted file mode 100644 index 571c0c2102d9cffd2d3eed6fa8da81ce03aa3351..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.07736663420995077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200011_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200011_H_GLOBAL.out deleted file mode 100644 index 6265634b03b42bfd86751e9c42b45061e1d68067..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.057818774382273355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200011_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200011_M_GLOBAL.out deleted file mode 100644 index 913690bd0493cf0f3bc268a5a20fbde5511e6984..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.09496198495229086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200012_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200012_D_GLOBAL.out deleted file mode 100644 index df5e25a2b1438c0bb22f27c2894d53fe85dc3a82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.0465660572052002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200012_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200012_H_GLOBAL.out deleted file mode 100644 index af94592ecbcad84e85f1478f58a0b6f54c908533..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.05825934012730916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200012_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200012_M_GLOBAL.out deleted file mode 100644 index d6cff265d5b4618bb1d4dcb80881680bf935160c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.2787477771441142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200101_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200101_D_GLOBAL.out deleted file mode 100644 index 9156e25f5e9e22c19b65c9435c6940f2f6bf9c23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.04912194013595581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200101_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200101_H_GLOBAL.out deleted file mode 100644 index 1812acca5c549bd60b37e3237b25cf0c96b8785d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.06532566150029501 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200101_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200101_M_GLOBAL.out deleted file mode 100644 index 15e1c7c15a7be44d6e4a74d17f82b81d891589c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.05929760138193766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200102_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200102_D_GLOBAL.out deleted file mode 100644 index 95f8eeb1c6c16d8fc171d66d98a8029a00f354c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.06776372194290162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200102_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200102_H_GLOBAL.out deleted file mode 100644 index f664b94d4d3824f25534af44ae416de51bbca50d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.04864841302235921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200102_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200102_M_GLOBAL.out deleted file mode 100644 index d3fc15538229e53c997535e9c6842702c8fcbdc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.2901137073834737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200103_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200103_D_GLOBAL.out deleted file mode 100644 index 162206f7ac6842815c56e0c23ff845e99bee8af2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.07882471084594726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200103_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200103_H_GLOBAL.out deleted file mode 100644 index 7ec1e79ecc74bfb615b63523263f8f60287fd840..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.2585504094759623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200103_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200103_M_GLOBAL.out deleted file mode 100644 index 1c93930a2f4d03823846b2f4b97cbd529a8eccd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.0655104120572408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200104_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200104_D_GLOBAL.out deleted file mode 100644 index cd114018c33f6751b7a3d1ec824088e6d416c420..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.0722453514734904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200104_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200104_H_GLOBAL.out deleted file mode 100644 index 5d5a56be800a8c701bc1622585baf74aadd4112b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.05504098335901896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200104_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200104_M_GLOBAL.out deleted file mode 100644 index 56bcaef99afda5b2bfabc0fc52d5fca745f30294..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.06826902230580648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200105_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200105_D_GLOBAL.out deleted file mode 100644 index 092140825d897d07ad64808a1c214a98fe47bddb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.2617873469988505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200105_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200105_H_GLOBAL.out deleted file mode 100644 index 99123070a3ff6a2b2c04a0a7ff68f13823170248..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.08886801401774089 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200105_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200105_M_GLOBAL.out deleted file mode 100644 index b597e154ed6ea6b021710c50252ccb5b6c838315..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.2673621733983358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200106_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200106_D_GLOBAL.out deleted file mode 100644 index 75bd92cfb8371b70deff38b2931e12d7624a9354..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.06926151911417643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200106_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200106_H_GLOBAL.out deleted file mode 100644 index d32717dd9b5c7f9caa685a1c7442a410c4bc7080..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.06574765046437582 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200106_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200106_M_GLOBAL.out deleted file mode 100644 index b41de67af32d386554431e46bb247ca9588f1521..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.07903181711832682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200107_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200107_D_GLOBAL.out deleted file mode 100644 index 874640f8b2a30eb24a704d3a345a72351e340443..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.06688159704208374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200107_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200107_H_GLOBAL.out deleted file mode 100644 index 805b455ee87dcb37b3884ffc28f092d8c5ec71c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.2451404611269633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200107_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200107_M_GLOBAL.out deleted file mode 100644 index 5a64d69d1e6ec6f1c89e3d92dc664b78eb9a136c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.09314999580383301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200108_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200108_D_GLOBAL.out deleted file mode 100644 index 2f58395777538fbee6401d415265ff8d4932c732..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.27023486693700155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200108_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200108_H_GLOBAL.out deleted file mode 100644 index b1deac4af3f67a23b1e804e73d1f95fd68e67191..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.0818634033203125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200108_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200108_M_GLOBAL.out deleted file mode 100644 index 1d5bcafdece0b4b3a5650fc7af52a97360a590f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.09321053028106689 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200109_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200109_D_GLOBAL.out deleted file mode 100644 index a5e1a182e65355fc45e51b55749eb4252ac6ad36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.1069438099861145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200109_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200109_H_GLOBAL.out deleted file mode 100644 index b46327f7b1401965e0071bdc7281ad10cb40485a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.07354141076405843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200109_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200109_M_GLOBAL.out deleted file mode 100644 index bce5352a2f3c440ed75d3a7b3e32bf59a2517676..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.07074786027272542 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200110_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200110_D_GLOBAL.out deleted file mode 100644 index 7339a4898631aaf28cf7cae8fcdd3dfaf69fef65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.08273540735244751 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200110_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200110_H_GLOBAL.out deleted file mode 100644 index 6a9ac0ca683d0da4e4d88e4383d5499c939a5903..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.0898282527923584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200110_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200110_M_GLOBAL.out deleted file mode 100644 index ab128407f78ff37053827d8d89c53756a9bacef1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.08871864875157674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200111_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200111_D_GLOBAL.out deleted file mode 100644 index 07bf47176718931490d69db9b0498b47d8082ce8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.09401807387669882 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200111_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200111_H_GLOBAL.out deleted file mode 100644 index ddd5efc399c1f98a3701b763e1ca340aa0e2d383..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.07113523483276367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200111_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200111_M_GLOBAL.out deleted file mode 100644 index 6e16226d09b564a5a30f6d3fa9f1d2f6b9c350b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.07252504428227742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200112_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200112_D_GLOBAL.out deleted file mode 100644 index 232a3fdb90fd066ec4af90bc40bac4d860100e6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.08952303330103556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200112_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200112_H_GLOBAL.out deleted file mode 100644 index f7c644283c5faf2be8ac3abdcbeb8a48fa99bc0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.05857211351394653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200112_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200112_M_GLOBAL.out deleted file mode 100644 index 884b6dc009cd2015f6c4f96315e2d8446b423a92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.06776939233144125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200201_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200201_D_GLOBAL.out deleted file mode 100644 index 35a6ce6d34ee787f1661a809dc8f38404f9a74f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.09606776237487794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200201_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200201_H_GLOBAL.out deleted file mode 100644 index cc89c6b0379fedeec1a11dfa9d70973e6c587277..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.25333808263142904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200201_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200201_M_GLOBAL.out deleted file mode 100644 index a70ff764bc58d3e36b838b11459cf369cc3933b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.09301098982493082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200202_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200202_D_GLOBAL.out deleted file mode 100644 index b277ee614f3c941dc9509de56f0ab8f4e4f6b328..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.13526630004247028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200202_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200202_H_GLOBAL.out deleted file mode 100644 index 59dcc5dcaaa0af89f62008f1242099db5808da6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.23619131644566854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200202_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200202_M_GLOBAL.out deleted file mode 100644 index e1e44d96aa3473266bea3bb87319662cccf52557..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.06672167778015137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200203_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200203_D_GLOBAL.out deleted file mode 100644 index c9c3481a27836c261922834d8107019a76261249..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.10299524068832397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200203_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200203_H_GLOBAL.out deleted file mode 100644 index 6b35c34fd6bca151cb5beec3747995b6710eee97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.2337667425473531 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200203_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200203_M_GLOBAL.out deleted file mode 100644 index 46e3af3e49e0c763bdf4b2fb1cb31d9513594899..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.10124872128168742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200204_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200204_D_GLOBAL.out deleted file mode 100644 index 247b60f680156787726a65be8542347bdb996fe0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.07662660280863444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200204_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200204_H_GLOBAL.out deleted file mode 100644 index 0e0f2a02f3b4c18ce6d9149e60064578970b79d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.13622028430302938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200204_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200204_M_GLOBAL.out deleted file mode 100644 index 542b092619ddd4b484ee449c5ca9257ee26b2053..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.2584816614786784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200205_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200205_D_GLOBAL.out deleted file mode 100644 index fac16b4f0037c77f889abcdf425a84d9e678bce2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.11316666205724081 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200205_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200205_H_GLOBAL.out deleted file mode 100644 index 2144e59146ea5c9f69d6262c108636d81d169cf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.23364543517430622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200205_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200205_M_GLOBAL.out deleted file mode 100644 index 421d1e90772b6d43f366c5c426528531a55a5df1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.09496310551961264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200206_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200206_D_GLOBAL.out deleted file mode 100644 index 0c0589449e11aa656c36ef9707db817931203870..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.07091843287150065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200206_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200206_H_GLOBAL.out deleted file mode 100644 index 91ba8de0a00c296aa3b590190300f567ee01a751..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.0908960501352946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200206_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200206_M_GLOBAL.out deleted file mode 100644 index a298206e61d6163608f70cb1e5045a074b7553f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.10011633237202962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200207_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200207_D_GLOBAL.out deleted file mode 100644 index 3d0f05401d693e8e5c1469ec3072b5b42cedbf66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.08844367265701295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200207_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200207_H_GLOBAL.out deleted file mode 100644 index cf32b922f6264b79a6cd9e930eb0286896ce330e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.2634925127029419 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200207_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200207_M_GLOBAL.out deleted file mode 100644 index 0b778a21d16a353a5871f1bc811bb15c58bac7f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.25171491702397664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200208_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200208_D_GLOBAL.out deleted file mode 100644 index bbbb16e7ce05fcada028378ca671b8d3db934dc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.07775318622589111 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200208_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200208_H_GLOBAL.out deleted file mode 100644 index 611db8f84f6ca0d0d08cbdf4fc708809caada79f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.08890246550242106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200208_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200208_M_GLOBAL.out deleted file mode 100644 index 81c1e67a2270025e1b9c322d031f80de6b34f766..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.07895056406656902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200209_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200209_D_GLOBAL.out deleted file mode 100644 index 525f34ef66010baf6e6bbf36fb7e1256f0ef164a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.06521392265955607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200209_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200209_H_GLOBAL.out deleted file mode 100644 index 8627fa9a4a4f40a77ceda925f71d0637ccdca035..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.05602575540542602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200209_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200209_M_GLOBAL.out deleted file mode 100644 index 54b880595f338bcf33d110475b168173a9e04175..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.22621211608250935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200210_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200210_D_GLOBAL.out deleted file mode 100644 index cccdd5c7736c7a9393ccb0f34ba578c0439ab1a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.0993471105893453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200210_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200210_H_GLOBAL.out deleted file mode 100644 index 4239753d1dca5e55bccbf812a1ccc718f6788fe3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.26619465748469034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200210_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200210_M_GLOBAL.out deleted file mode 100644 index dca72b5ccf876dc830ea20811ccb454c8e46776e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.06858190695444742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200211_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200211_D_GLOBAL.out deleted file mode 100644 index ff83c92356cd9cbb3e1ade20628044842bf90885..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.1494518796602885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200211_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200211_H_GLOBAL.out deleted file mode 100644 index 09dd0e282b163b908a570cab42616851778469d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.09884463946024577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200211_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200211_M_GLOBAL.out deleted file mode 100644 index d3df353c3a661922d77f378a282ed62c9c510030..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.2512721260388692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200212_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200212_D_GLOBAL.out deleted file mode 100644 index 25f3023efc645620d57b24181fa7fa08a107e9c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.28470638195673625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200212_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200212_H_GLOBAL.out deleted file mode 100644 index 4713a0ad08411419415efb37becc05c8173fae62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.09155494372049967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200212_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200212_M_GLOBAL.out deleted file mode 100644 index 91e7f8748beb15b96c157d8184e06d3e6f996eb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.17289574146270753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200301_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200301_D_GLOBAL.out deleted file mode 100644 index 2b5ad780783643619cbd885f99fa9287d13f6c52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.08263692061106363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200301_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200301_H_GLOBAL.out deleted file mode 100644 index 50a51babb18503564dcc00cd29f72f179c3f7e6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.06071698268254598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200301_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200301_M_GLOBAL.out deleted file mode 100644 index 4c3f06b14fc9c044c174ee51ba0b88617feae4f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.07327192227045695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200302_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200302_D_GLOBAL.out deleted file mode 100644 index 239001cd8c246db5f0a9d58313e81eae5de0a29d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.0722292939821879 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200302_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200302_H_GLOBAL.out deleted file mode 100644 index e6afc3eabc31d27e3faa0740873a0a2dd102059a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.06693466504414876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200302_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200302_M_GLOBAL.out deleted file mode 100644 index e2b87e0a16e6144c10002c54b02e0694c6ec830d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.2707681576410929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200303_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200303_D_GLOBAL.out deleted file mode 100644 index d1fc23d8122be2aca9810700e9dd69f41f55ce0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.12014272212982177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200303_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200303_H_GLOBAL.out deleted file mode 100644 index 767b8dce813b8e50a9a4726234f245c06ab75cec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.21021491686503094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200303_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200303_M_GLOBAL.out deleted file mode 100644 index d528bd17e088655f9e7e89bc01208af2898e47a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.3073394576708476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200304_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200304_D_GLOBAL.out deleted file mode 100644 index 2caa3d087e41acec0ed5bfe80f16c446a56d3503..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.08721804221471151 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200304_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200304_H_GLOBAL.out deleted file mode 100644 index 35bdaf66f90924056898121e951581e8538e5641..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.18977713584899902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200304_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200304_M_GLOBAL.out deleted file mode 100644 index 27f21da6a62caa8093108f8f56f2e4569421548d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.24703236818313598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200305_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200305_D_GLOBAL.out deleted file mode 100644 index 32fe5cde57aeab3bb1a686f5db5222e25d45a240..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.11302876075108846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200305_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200305_H_GLOBAL.out deleted file mode 100644 index 2b5ef94716adf835494b57b74233093852a56cbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.0980865995089213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200305_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200305_M_GLOBAL.out deleted file mode 100644 index 2fe7e43916e991bec3d8df238e74190d8ba853e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.1790870189666748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200306_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200306_D_GLOBAL.out deleted file mode 100644 index ae9cdfa7b9159f891e1b8f0dff779d7695b4231c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.22745379209518432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200306_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200306_H_GLOBAL.out deleted file mode 100644 index 3a25f25500365ed0f7866e66255e3ea365728b57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.06816612084706625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200306_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200306_M_GLOBAL.out deleted file mode 100644 index fb8cfda60d692d6b53d7aa6fdf5ceafa70f232b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.06967708269755045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200307_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200307_D_GLOBAL.out deleted file mode 100644 index 007cb78cc1749b08cdfd9a84214a06e302d2bd8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.2684851805369059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200307_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200307_H_GLOBAL.out deleted file mode 100644 index 3a626d2bdef9dd7c48a0b7f7b177a85264e17fe1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.22615936199824016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200307_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200307_M_GLOBAL.out deleted file mode 100644 index 24d1034fea36a1f834bf32a7ab07cf89b9738f60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.10156292120615641 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200308_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200308_D_GLOBAL.out deleted file mode 100644 index ae27e3f9cbc30130a4f53d1a2960b4b891c514eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.08531312147776286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200308_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200308_H_GLOBAL.out deleted file mode 100644 index 057f820c041cb94d4cf303372969a14b6461814c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.08743090232213338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200308_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200308_M_GLOBAL.out deleted file mode 100644 index 2c6294d01ea5041af015d6abd0d140befc49aeea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.09162772099177043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200309_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200309_D_GLOBAL.out deleted file mode 100644 index 3f4dd1053bee4bf61b0569b0e3df562a73eef210..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.0661487619082133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200309_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200309_H_GLOBAL.out deleted file mode 100644 index 1e2fe85522dbc86bd21be958616ef990824524e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.2502126296361287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200309_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200309_M_GLOBAL.out deleted file mode 100644 index 03bc58706724ac0eef1953992e6219f112b10a22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.30035754839579265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200310_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200310_D_GLOBAL.out deleted file mode 100644 index 18008bbb7eb8a9826d84a01993fa50ac9be62562..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.09295194943745931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200310_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200310_H_GLOBAL.out deleted file mode 100644 index 5bb6f1920e3760ff225ac651d2be5a0e46d7bddf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.07727567354838054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200310_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200310_M_GLOBAL.out deleted file mode 100644 index 97cca4742907104e7953b32a411751d2e3d58f35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.09231369098027548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200311_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200311_D_GLOBAL.out deleted file mode 100644 index 80b2daef618ac5d64c040ad2f2611f3bfca37217..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.0791098435719808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200311_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200311_H_GLOBAL.out deleted file mode 100644 index d20b6f5810504453e17cfc63660891b4d9b8933e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.16770504315694174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200311_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200311_M_GLOBAL.out deleted file mode 100644 index 64f4445465d9df5211f021fc1f2b9713ee25d1e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.10323597192764282 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200312_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200312_D_GLOBAL.out deleted file mode 100644 index ed369fbd27c0deb38a25854e04a4c1777b7bf553..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.10072912772496541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200312_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200312_H_GLOBAL.out deleted file mode 100644 index 1f221a2e4f251bee335a6656d903bf308eda5336..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.10967433452606201 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200312_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200312_M_GLOBAL.out deleted file mode 100644 index 5620f910b58d39c53bf99afa5c477ed42e50b7ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.09114123980204264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200401_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200401_D_GLOBAL.out deleted file mode 100644 index 785a17b9282671d86e59bfc25cfa5db52f6f8f31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.2571212450663249 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200401_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200401_H_GLOBAL.out deleted file mode 100644 index 1ed4d3566a63f23b3cf2d3b7c43a949f4c789944..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.24964442650477092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200401_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200401_M_GLOBAL.out deleted file mode 100644 index 5ce301abac89ba49634aedcde52c388aea04d251..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.07927855650583902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200402_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200402_D_GLOBAL.out deleted file mode 100644 index 0c0df5faf92fa1d6182fb449494a686d250d3f09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.12037322521209717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200402_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200402_H_GLOBAL.out deleted file mode 100644 index 6f0f24190c2ed091a19ae18c9d806def8b200bb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.07081851561864218 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200402_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200402_M_GLOBAL.out deleted file mode 100644 index a895dbe1115a760deda5b88de5283ecf7c40734c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.07728077173233032 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200403_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200403_D_GLOBAL.out deleted file mode 100644 index ecd7da4d9f853a638eef80ddd2984da1fc4fafb4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.2986811677614848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200403_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200403_H_GLOBAL.out deleted file mode 100644 index 5515c85db0567bfe921a32fada1943b7b2c6b529..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.26633085012435914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200403_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200403_M_GLOBAL.out deleted file mode 100644 index ee994b036f8d0d02d54a5b935238c0978cb7e352..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.06778227090835572 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200404_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200404_D_GLOBAL.out deleted file mode 100644 index cfd934f0e8fdf87e82f28984daf118ee6959d03b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.09781920909881592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200404_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200404_H_GLOBAL.out deleted file mode 100644 index 81037ebccecb86afaa15db3e3ad81a37753cd3cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.2013095498085022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200404_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200404_M_GLOBAL.out deleted file mode 100644 index 8c0b5a3535adde4faf96843b44089ff94e1dd195..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.22746330897013348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200405_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200405_D_GLOBAL.out deleted file mode 100644 index b8a3e36ebfa7a53929bd5cc5159a237879587d41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.07987234592437745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200405_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200405_H_GLOBAL.out deleted file mode 100644 index 227285efc1595a22c9b9889d934f220f62d774cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.18888212442398072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200405_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200405_M_GLOBAL.out deleted file mode 100644 index 0a1041f2db7cd86f7f902a5bb85544c5ccc17c3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.2512337644894918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200406_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200406_D_GLOBAL.out deleted file mode 100644 index d00e0dcd877916d086ab0e907a76c61d6e791cca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.082582159837087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200406_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200406_H_GLOBAL.out deleted file mode 100644 index 2237aef6fb176da50948a4f889d335b269b7fdc3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.06463237603505452 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200406_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200406_M_GLOBAL.out deleted file mode 100644 index f6af28fd621d27b104a3fa0e022c297971fcf4e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.0674352765083313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200407_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200407_D_GLOBAL.out deleted file mode 100644 index 67c8b46e9f5c9aaba4cf8045284236f09231ea0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.09926577011744181 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200407_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200407_H_GLOBAL.out deleted file mode 100644 index 71052ac2ab2a07365ac6f4efcbb6340b5fd2b4c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.26675715843836467 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200407_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200407_M_GLOBAL.out deleted file mode 100644 index ebd24a67cc940c44ac0472bd5ba1e8ffcdc458da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.0890024741490682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200408_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200408_D_GLOBAL.out deleted file mode 100644 index 761176865c0d042d9fda9d8a65f66a017dca0c66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.08588486115137736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200408_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200408_H_GLOBAL.out deleted file mode 100644 index e2b586502f4be2903ed1fa66719401af26b8c035..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.252844766775767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200408_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200408_M_GLOBAL.out deleted file mode 100644 index 00fa3886ccc48612c7803b7081456d03a00bbfd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.09899435838063558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200409_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200409_D_GLOBAL.out deleted file mode 100644 index d85b1592b7f9b9bc6ffaf010397fd1dd56fe4e5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.2579006751378377 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200409_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200409_H_GLOBAL.out deleted file mode 100644 index 9275f00b67d1469b5c05e3feae5be7c59ccb8289..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.07155900796254476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200409_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200409_M_GLOBAL.out deleted file mode 100644 index 7aa22ca8da44aa45033e187c4eb5db9005270784..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.08340583244959514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200410_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200410_D_GLOBAL.out deleted file mode 100644 index 6135780932720cb1c57f5147094c86d6b77eb080..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.06633591254552205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200410_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200410_H_GLOBAL.out deleted file mode 100644 index 2ccc3adef6de86065b9cb9dae460357ac7f5ec40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.07247709433237712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200410_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200410_M_GLOBAL.out deleted file mode 100644 index 664a92d941e32e6a08d3f05913d846c5a3814f6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.07711320718129476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200411_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200411_D_GLOBAL.out deleted file mode 100644 index 375646c58f07edea5063f1e4589e7d8b5f3b32af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.08981289068857828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200411_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200411_H_GLOBAL.out deleted file mode 100644 index 6267511a825b4b17ff6b6a5b42d820927bac359f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.15847733815511067 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200411_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200411_M_GLOBAL.out deleted file mode 100644 index c79913cb062cdf7099559d51d4058826db0513fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.06730645497639974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200412_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200412_D_GLOBAL.out deleted file mode 100644 index e69e9a828757216979f5f31fcb95b86e4b2d877a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.09006677071253459 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200412_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200412_H_GLOBAL.out deleted file mode 100644 index 0364e15b2b93b550f0eec3df2338786646d5dccb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.06934793392817179 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200412_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200412_M_GLOBAL.out deleted file mode 100644 index 0a82f752cca43a38442290d791b0ad9195d16cba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.08431066274642944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200501_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200501_D_GLOBAL.out deleted file mode 100644 index 905f16cc99096f9716c46ca51feab1a3b01c6222..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.09669824838638305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200501_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200501_H_GLOBAL.out deleted file mode 100644 index 069f8d936ce658fc868f7c8470cf339ed68e3bab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.22750017245610554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200501_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200501_M_GLOBAL.out deleted file mode 100644 index 6e47f32a39c97b4606c6f3fd51ece5b96960b112..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.06200391848882039 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200502_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200502_D_GLOBAL.out deleted file mode 100644 index 51210380d5f591c246ae6cd31a4d2e366016cedc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.06513175566991171 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200502_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200502_H_GLOBAL.out deleted file mode 100644 index 685dc5a9363ba751b251959d75d9c51564d00cd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.08266203800837199 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200502_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200502_M_GLOBAL.out deleted file mode 100644 index bd25071a84da4dc0dc49db10e95deaa6b73cafa1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.07582823435465495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200503_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200503_D_GLOBAL.out deleted file mode 100644 index d918bf5c156349f6aab584a02a82cabe3bb44a74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.261494513352712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200503_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200503_H_GLOBAL.out deleted file mode 100644 index 45cb4bf9c41ca2f5a6e51c08eaddfeceb0c3ea9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.1021376371383667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200503_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200503_M_GLOBAL.out deleted file mode 100644 index 4a3dc7a0e3e4bfcc933906e09dc5d171d9530e2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.06190832058588664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200504_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200504_D_GLOBAL.out deleted file mode 100644 index 0bed7032e697bcabab072a1565a8865f4c1f69a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.09050466219584147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200504_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200504_H_GLOBAL.out deleted file mode 100644 index f7e27935db8a25ca5282bf31b68226c0797c1258..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.16488266785939534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200504_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200504_M_GLOBAL.out deleted file mode 100644 index 50d203aca4cc43cdf3a5b38601130af660fd6501..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.08326132297515869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200505_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200505_D_GLOBAL.out deleted file mode 100644 index 2c07caad04660933cc56a1f8cc2cb59a04da721e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.22657736937204997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200505_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200505_H_GLOBAL.out deleted file mode 100644 index face75c5583491381908c6cb1092f570f5599e6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.09301741123199463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200505_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200505_M_GLOBAL.out deleted file mode 100644 index e4fe963ded081655ad56cdb6a98a7ae7be07e7c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.10417743921279907 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200506_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200506_D_GLOBAL.out deleted file mode 100644 index 95fcf98b3938423de0537d3f672b2a131e4783cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.2689579327901204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200506_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200506_H_GLOBAL.out deleted file mode 100644 index a99a06ff9dcecefed0b1d08d437c6efd00b182ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.061640993754069014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200506_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200506_M_GLOBAL.out deleted file mode 100644 index 7f05cb9c066c16af26c5f2f209a6cd5973448736..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.09156969785690308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200507_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200507_D_GLOBAL.out deleted file mode 100644 index cd920645bd65320a294ccb9b6489986b75bcd936..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.07700112660725912 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200507_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200507_H_GLOBAL.out deleted file mode 100644 index 620abf284abafa080c7dbca86bf1f7b744de3555..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.11326292753219605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200507_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200507_M_GLOBAL.out deleted file mode 100644 index 46ca9074ebd6a8985a67c0cb0f8707cf5f279274..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.061964484055836995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200508_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200508_D_GLOBAL.out deleted file mode 100644 index ff09dab021472f1800da71c22649c12fa5c09ebe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.08412580490112305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200508_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200508_H_GLOBAL.out deleted file mode 100644 index 9a3db6087b45be297973311d3a0c8d76ef358962..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.0691831628481547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200508_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200508_M_GLOBAL.out deleted file mode 100644 index 8abd643589fc7db1c586eba971a9fd0315fa4838..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.0911789337793986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200509_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200509_D_GLOBAL.out deleted file mode 100644 index 2bb87db1ffcabf22f1c51322bba23186daf285c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.18616348107655842 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200509_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200509_H_GLOBAL.out deleted file mode 100644 index 4e2f3117b24b20772ab386be38e30aff788fef38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.08534254630406697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200509_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200509_M_GLOBAL.out deleted file mode 100644 index 03d38d82963dba3549e761ebfb7a30bc939a8d16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.06357167561848959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200510_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200510_D_GLOBAL.out deleted file mode 100644 index c799f87656755d797e0caa5f1ff73f20c485c738..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.25103843212127686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200510_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200510_H_GLOBAL.out deleted file mode 100644 index f9b4cb3f7859cddf95934f965f58159925752263..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.09489280382792155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200510_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200510_M_GLOBAL.out deleted file mode 100644 index 86ea1a292605aed2877e3756e0213769bd337339..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.25000619888305664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200511_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200511_D_GLOBAL.out deleted file mode 100644 index 1d5a2e2c287e6ff5fc161df5253afcc404a12193..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.2670254151026408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200511_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200511_H_GLOBAL.out deleted file mode 100644 index 037383af989daab9b9cdd5507374ccc729e2f720..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.08315698305765788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200511_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200511_M_GLOBAL.out deleted file mode 100644 index f88ca78e527123906b5715ad714302422836e63b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.08003997008005778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200512_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200512_D_GLOBAL.out deleted file mode 100644 index b522e9e561698d8219b431bacc43b47241a301c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.0688654621442159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200512_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200512_H_GLOBAL.out deleted file mode 100644 index 6b6d6bb577081d9306ed875c846b57294708aa6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.24994389613469442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200512_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200512_M_GLOBAL.out deleted file mode 100644 index 31c2d6ede8de34fb03e9dd81162d287740d39b3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.10618618329366049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200601_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200601_D_GLOBAL.out deleted file mode 100644 index 291050a75cdcfb1f7a22d9b77fbc49ef42c7313b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.07139708995819091 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200601_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200601_H_GLOBAL.out deleted file mode 100644 index 4815c8f1f5595106d582a3c39f1bad58550c01de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.08203657070795695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200601_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200601_M_GLOBAL.out deleted file mode 100644 index 3dfed9dd3728ac61099ce3c246b7d4c81e94b8ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.06177535851796468 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200602_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200602_D_GLOBAL.out deleted file mode 100644 index 1b56f0ffc17359362617dc7159deb29ec6471914..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.08070042530695597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200602_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200602_H_GLOBAL.out deleted file mode 100644 index f2d8458ecc5a980797a47a0cb99d3f728ef349bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.08824129899342854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200602_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200602_M_GLOBAL.out deleted file mode 100644 index 64cd5cc3a612f9940ad1bb64e90abda7a8b963aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.09362442890803019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200603_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200603_D_GLOBAL.out deleted file mode 100644 index e3e314f8cfb06d946ae8c3cba3f21e023a30aaab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.3067282199859619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200603_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200603_H_GLOBAL.out deleted file mode 100644 index b4751660b39d65aaa7b5c174597d05f56dc6afe4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.07969227234522501 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200603_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200603_M_GLOBAL.out deleted file mode 100644 index 679dff528f225fd88bf25640c2c85b77f0823418..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.08828858534495036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200604_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200604_D_GLOBAL.out deleted file mode 100644 index d76802d9fe48e40ac7e21aee25a22dd6104c0420..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.10444245338439942 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200604_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200604_H_GLOBAL.out deleted file mode 100644 index 69783b07bce36a0b0a19004944290046a0ed1163..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.06330762306849162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200604_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200604_M_GLOBAL.out deleted file mode 100644 index b8396961ecf776ac395f577041482035aff7f011..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.16272578636805216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200605_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200605_D_GLOBAL.out deleted file mode 100644 index 0db6f5c44a9f9fd9d43bab4d00f53389562d78b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.06777929464975993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200605_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200605_H_GLOBAL.out deleted file mode 100644 index 1fc0ab6abb98f02576d9ea888b7e862646d7828a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.1151861588160197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200605_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200605_M_GLOBAL.out deleted file mode 100644 index acdfb38188fa7ebab7d7c0b0d7706b37bb174aa0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.2666948914527893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200606_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200606_D_GLOBAL.out deleted file mode 100644 index 109b6eaeef8dd4d44362720ec4b9f28419426523..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.09976144631703694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200606_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200606_H_GLOBAL.out deleted file mode 100644 index 16fcc128c12d0646bdcfc45af7f00c9ac1f6118b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.07375877698262533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200606_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200606_M_GLOBAL.out deleted file mode 100644 index 466582a80ca978cde83f3c5a4506ce462fcc284a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.22561477025349935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200607_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200607_D_GLOBAL.out deleted file mode 100644 index f238c2297774713a65e6a2da89fcd9dbaf48f162..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.0812008539835612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200607_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200607_H_GLOBAL.out deleted file mode 100644 index 77d12c486a8610a35118ec2d1c016b67cef7c3d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.1304972489674886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200607_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200607_M_GLOBAL.out deleted file mode 100644 index 6fe5364328a0987855b24014439cfaaf7984e9e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.08893077373504639 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200608_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200608_D_GLOBAL.out deleted file mode 100644 index 8db19f24a802510d15159e4eccac2068adda528f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.25080021619796755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200608_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200608_H_GLOBAL.out deleted file mode 100644 index e26ce6fbf9067162c6d61669a2a6dcacc54737fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.198283847173055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200608_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200608_M_GLOBAL.out deleted file mode 100644 index dad61f158b1337c9ec6866bc4ed16adc37eed4a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.06571024258931478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200609_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200609_D_GLOBAL.out deleted file mode 100644 index 52e712ec97c1a69a2ae720fd778f16f62c31356c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.13284871180852253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200609_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200609_H_GLOBAL.out deleted file mode 100644 index 9e9b77d1349e6911c22c825023da6f15c9ead4ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.08664333422978719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200609_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200609_M_GLOBAL.out deleted file mode 100644 index 195bba329fd1570e8b4403a099239a16e7e485d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.07745138804117839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200610_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200610_D_GLOBAL.out deleted file mode 100644 index 8bcacaaf06ef610779f0b7fc72dccffc7ad313e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.0712915023167928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200610_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200610_H_GLOBAL.out deleted file mode 100644 index 6c02f26b2137c20cce0a8fea4f6b21b3ff2d242a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.09945127964019776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200610_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200610_M_GLOBAL.out deleted file mode 100644 index 8a95b24525dbf87c50661b8d97895bed2034f632..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.08379398981730143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200611_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200611_D_GLOBAL.out deleted file mode 100644 index 5d496490dc6afda04caac5428d13895ac43b6597..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.28232972621917723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200611_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200611_H_GLOBAL.out deleted file mode 100644 index 1077ffa5a8b5528335b290f686acc2128e6d3658..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.1325874408086141 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200611_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200611_M_GLOBAL.out deleted file mode 100644 index ad0cce1ae9209de4e9c6933863681b75849c024e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.11488118966420492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200612_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200612_D_GLOBAL.out deleted file mode 100644 index cdff1a67a1d41c858cdfa169dc829897ea3588d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.09034483830134074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200612_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200612_H_GLOBAL.out deleted file mode 100644 index 3c22d0db1bb4ba3c75829690fb464efd0a613bfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.2500540812810262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200612_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200612_M_GLOBAL.out deleted file mode 100644 index b2b3712a827165bc33194890084be5dba518a53c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.27296471198399863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200701_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200701_D_GLOBAL.out deleted file mode 100644 index d3d2ba024456055e6d411c717d024874c4eac5ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.11941883563995362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200701_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200701_H_GLOBAL.out deleted file mode 100644 index 44eac4a6726dfde320b1cbee921b9e8f6a778ad2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.08560629288355509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200701_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200701_M_GLOBAL.out deleted file mode 100644 index 9cf101107a25eb2a4c4642743902fcd48f536ede..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.2694979429244995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200702_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200702_D_GLOBAL.out deleted file mode 100644 index d7244e052aae6375b26a3b6531ffca26ef42f198..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.22681481043497723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200702_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200702_H_GLOBAL.out deleted file mode 100644 index b7e13450c776745fe30c0fd8e8cd6acc4ec161dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.09415679772694906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200702_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200702_M_GLOBAL.out deleted file mode 100644 index 58130dffa4c678600915000864b649d783a6d68b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.08057695229848226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200703_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200703_D_GLOBAL.out deleted file mode 100644 index a62bed19a7df56fdf59667dea03f08934f35ca0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.06319630146026611 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200703_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200703_H_GLOBAL.out deleted file mode 100644 index 98bec441a8bcca63d8902bfdd194409060eaa49a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.06230268081029256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200703_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200703_M_GLOBAL.out deleted file mode 100644 index 0d81cdc7a340bcc072fac01f833907b0c031b50d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.0636660615603129 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200704_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200704_D_GLOBAL.out deleted file mode 100644 index fb3bc46d0baa62cae49dd40df3396dcca7404580..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.16352388858795167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200704_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200704_H_GLOBAL.out deleted file mode 100644 index 5d60f407aadc80d270327f5d5d8c4ddae5020452..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.06179330348968506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200704_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200704_M_GLOBAL.out deleted file mode 100644 index d3ed5273431382db14bb23379c08bfa28a8cbb55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.08205418984095256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200705_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200705_D_GLOBAL.out deleted file mode 100644 index b1a651e64aa45badb82fc793809a4963d3657233..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.08544953266779581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200705_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200705_H_GLOBAL.out deleted file mode 100644 index e18fb5de0ae23f5cb1a9dc7fc449b52127694fe4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.06776154041290283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200705_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200705_M_GLOBAL.out deleted file mode 100644 index e94ea2a3d4bbaa20a84a2b60f8adb171e6921404..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.16870442231496174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200706_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200706_D_GLOBAL.out deleted file mode 100644 index 77040b7f66580c2699941695c282158dfa7fb04c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.2675625244776408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200706_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200706_H_GLOBAL.out deleted file mode 100644 index 1e453616034efb8f6076396b1313efc4fc9d9a9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.07079146305720012 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200706_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200706_M_GLOBAL.out deleted file mode 100644 index 318a47fbca00a6e2045dd8d809fc2f5ec1d61236..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.06641380389531454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200707_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200707_D_GLOBAL.out deleted file mode 100644 index 1444c7ce336a3562da1a8f1a31beec6ae269711c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.06624436378479004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200707_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200707_H_GLOBAL.out deleted file mode 100644 index deae15672233710e47a943791c2804ef8d699bef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.06276084582010905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200707_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200707_M_GLOBAL.out deleted file mode 100644 index 6167713cbdf510f1d018ee2a0dd9b7141016826e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.0884119192759196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200708_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200708_D_GLOBAL.out deleted file mode 100644 index dff06d2b3c777fa9a6c1dc3333f55dc4a8af3811..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.18108809391657513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200708_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200708_H_GLOBAL.out deleted file mode 100644 index 4f3732a080cc3e5933be901069f13e22e2bd1ba6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.06622751553853352 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200708_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200708_M_GLOBAL.out deleted file mode 100644 index d2e0d96a7663a2d5f46924de9648e8a2650ca77a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.07899582386016846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200709_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200709_D_GLOBAL.out deleted file mode 100644 index 664052cd3acd85ebea817ff05ab5f14d000ed1f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.2823685963948568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200709_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200709_H_GLOBAL.out deleted file mode 100644 index 1090b42def888d02eece71e2793c53b1e3131469..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.06837475299835205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200709_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200709_M_GLOBAL.out deleted file mode 100644 index 8ea7026290d9620480bb2c674a4a309dcfc5d6a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.11458463271458943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200710_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200710_D_GLOBAL.out deleted file mode 100644 index 835853a827625d80a8f9ffc04a0f44d4e145ff8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.08850703636805217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200710_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200710_H_GLOBAL.out deleted file mode 100644 index 2173bcfc66b416724f3491ba00363324563946f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.21966173648834228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200710_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200710_M_GLOBAL.out deleted file mode 100644 index adf98a9f25d07a59a05a7c28574563b197e9a566..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.22436949809392293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200711_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200711_D_GLOBAL.out deleted file mode 100644 index 7154f056a5e07d55f94f1d2f25fac62a77026157..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.09007536172866822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200711_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200711_H_GLOBAL.out deleted file mode 100644 index 47d56e943d1076c13d07364ffd4ac33c4d396f7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.2526052951812744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200711_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200711_M_GLOBAL.out deleted file mode 100644 index 6123cc3dfb0973b4a0f9568a6a692819e2a6e509..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.2977895657221476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200712_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200712_D_GLOBAL.out deleted file mode 100644 index 30c20eef77f90af6465c93d2e0325c61b735fe2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.06662608385086059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200712_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200712_H_GLOBAL.out deleted file mode 100644 index d9b5fe31c4d8a6f12cd11abf7f2a130403296d89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.25169043938318886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200712_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200712_M_GLOBAL.out deleted file mode 100644 index 5dfb52b110448548b81bf03897400fd7e7274c21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.08848872979482016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200801_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200801_D_GLOBAL.out deleted file mode 100644 index ed543c18d09cb762a10c6f85a6fd062b81441652..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.2557923952738444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200801_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200801_H_GLOBAL.out deleted file mode 100644 index 145dac181ffa0a871de16e22db37945f83272cb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.06348135073979695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200801_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200801_M_GLOBAL.out deleted file mode 100644 index 5638e96793ad55b51401c660d11d7f380f2aadc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.08439130385716756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200802_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200802_D_GLOBAL.out deleted file mode 100644 index 6141a6b22b6888caf604794562b8086d45b7b810..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.09860467910766602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200802_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200802_H_GLOBAL.out deleted file mode 100644 index 19a545783be4aae218a6b53906b1f413b1d5cd21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.06303738355636597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200802_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200802_M_GLOBAL.out deleted file mode 100644 index b5dd255c55e7515e152715dc1a16a47822b94535..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.08423086007436116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200803_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200803_D_GLOBAL.out deleted file mode 100644 index aba5547069ce410734829b3f46c5f64219a3b38c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.2692083160082499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200803_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200803_H_GLOBAL.out deleted file mode 100644 index 5718a77941339c6f4492587a69f755acce1f68fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.07406742175420125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200803_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200803_M_GLOBAL.out deleted file mode 100644 index 59b0c2b2beb062cbfe6664ea2ca0e3ee2a5c4a9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.07107609510421753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200804_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200804_D_GLOBAL.out deleted file mode 100644 index 35b1c6f1fafe10710b11f9fa5b23198587dfab7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.06476862827936808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200804_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200804_H_GLOBAL.out deleted file mode 100644 index f141e267fbb527a8352fc8092e62888709b98214..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.09310473998387654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200804_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200804_M_GLOBAL.out deleted file mode 100644 index 2e656cae9464b3ae57d50f9d08ac428a249ad913..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.0673271616299947 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200805_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200805_D_GLOBAL.out deleted file mode 100644 index 311e2f3401f41007e19be944b115ed1cf685e740..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.06893104314804077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200805_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200805_H_GLOBAL.out deleted file mode 100644 index 8acdcc11a6a9a94258e88492d47e731389bc574a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.07707620859146118 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200805_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200805_M_GLOBAL.out deleted file mode 100644 index 4d26b5eaa7de5afca9a83e8b707e11e6e3346624..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.07413903872172038 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200806_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200806_D_GLOBAL.out deleted file mode 100644 index c745c9582649e1d5bed3fc894688dc5673a74ef0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.09430498282114665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200806_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200806_H_GLOBAL.out deleted file mode 100644 index a294aabc94d7916e66138906e350a208c84eae9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.07490997314453125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200806_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200806_M_GLOBAL.out deleted file mode 100644 index 0f8dfd8744060e9369ef08feaf8492a85ae5a4e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.062487220764160155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200807_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200807_D_GLOBAL.out deleted file mode 100644 index 895fdabdc5d3b8ff9f9b06c7f83695e58f1eb19b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.06327850818634033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200807_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200807_H_GLOBAL.out deleted file mode 100644 index e863e96ec7be83d8c32b9654689f99878e445a3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.05813064972559611 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200807_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200807_M_GLOBAL.out deleted file mode 100644 index d76679f67dde5f4421364488d87d8f1044025614..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.0624997615814209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200808_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200808_D_GLOBAL.out deleted file mode 100644 index 55773d3d4ac7cc82af64667a93b445d581257155..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.06652565797170003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200808_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200808_H_GLOBAL.out deleted file mode 100644 index 01f61d7c03ae7942e1558cc8e17e9e28b2b37484..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.24027281204859416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200808_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200808_M_GLOBAL.out deleted file mode 100644 index 206907324fe9ee9c17b29d3b879a0781344534a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.1788352370262146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200809_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200809_D_GLOBAL.out deleted file mode 100644 index 22f966eec95265bc2feacc71c4f1ea13f3eef813..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.10229977369308471 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200809_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200809_H_GLOBAL.out deleted file mode 100644 index 7a8755a0b2e4a5b3c09adb5ddde61238a59c540a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.09016746679941813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200809_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200809_M_GLOBAL.out deleted file mode 100644 index 4f59a9189120b018764f410e1424d8b39a0c0d11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.07053250074386597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200810_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200810_D_GLOBAL.out deleted file mode 100644 index 3b498913f3e02857d2bee6de0e1959dd57297ecd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.22730933825174968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200810_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200810_H_GLOBAL.out deleted file mode 100644 index e020a913e071c28677852d056d8525b80eee6c07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.06330724557240804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200810_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200810_M_GLOBAL.out deleted file mode 100644 index b03ca4e2c00656653b37e733cb1db7008fa07534..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.08902023235956828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200811_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200811_D_GLOBAL.out deleted file mode 100644 index 378d16ebed9a299bf08b51340e721f2a7da534bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.2507818420728048 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200811_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200811_H_GLOBAL.out deleted file mode 100644 index 04788c5f5037ebb3a6ba06e1fe5d3c08a66554c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.08456244866053263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200811_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200811_M_GLOBAL.out deleted file mode 100644 index 9f206f4e6a632ce120784f34020b0e29ded9902a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.08170232772827149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200812_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200812_D_GLOBAL.out deleted file mode 100644 index 6d0b106b081e5c2d764521efc687ba07a2f12d03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.08830537796020507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200812_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200812_H_GLOBAL.out deleted file mode 100644 index 7ad59a6774c785c299dc1f4552c63eb13bfa33b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.08747086127599081 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200812_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200812_M_GLOBAL.out deleted file mode 100644 index 3f39e6331943e783e59c62df18924f57c5c1c004..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.15699962377548218 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200901_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200901_D_GLOBAL.out deleted file mode 100644 index 792af057ca517785ea58647e2b8bfc4263bb31c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.08676853974660238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200901_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200901_H_GLOBAL.out deleted file mode 100644 index b68f46b17f83da240f1879d8fd964b9e42172ba8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.08930910428365071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200901_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200901_M_GLOBAL.out deleted file mode 100644 index 9f7ecc26ceec1ac93108ec114ee1dcaa14799783..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.07195552190144856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200902_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200902_D_GLOBAL.out deleted file mode 100644 index f16685b39a3d61b71ef99d07d532d770a6888606..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.08932872215906779 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200902_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200902_H_GLOBAL.out deleted file mode 100644 index c6e15279e405f99765c2bff12ac9e2ee27135457..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.07409882148106893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200902_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200902_M_GLOBAL.out deleted file mode 100644 index 659e640578880749bf501b4191d4d8dd8c4f29ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.08726632197697957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200903_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200903_D_GLOBAL.out deleted file mode 100644 index 2c6df18bc2e288874bde5702887f4706ca507873..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.08324281374613444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200903_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200903_H_GLOBAL.out deleted file mode 100644 index 75d3deef091bacfbdd3c2df677836e3215fd7c22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.26716545820236204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200903_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200903_M_GLOBAL.out deleted file mode 100644 index a621cfc33516d287f576e066b7ba2508d9f5ee59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.08790855407714844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200904_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200904_D_GLOBAL.out deleted file mode 100644 index c5db8662d8cac9a93b043b7a342cd410035dd189..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.2517267425855001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200904_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200904_H_GLOBAL.out deleted file mode 100644 index 7d6d6402235c7c8d5f4710058ce9b4ba12d384c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.1980794072151184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200904_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200904_M_GLOBAL.out deleted file mode 100644 index b3cae3c23ce4c8e80fdb4824635db0020d7f0c38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.226708193620046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200905_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200905_D_GLOBAL.out deleted file mode 100644 index 1e59b2a060725423d9e6106223bf441d90e02b56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.07416013876597087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200905_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200905_H_GLOBAL.out deleted file mode 100644 index 2c197575dc50c224bde5dc6e75f7290a667fb557..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.19932316939036052 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200905_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200905_M_GLOBAL.out deleted file mode 100644 index 33b9601b04ac20cb68c400d520d61854427f5067..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.2505591074625651 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200906_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200906_D_GLOBAL.out deleted file mode 100644 index b935510f97c8c7087617419ed7f910b0c5849ce2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.07809770107269287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200906_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200906_H_GLOBAL.out deleted file mode 100644 index 2f5fde616adea43732c1a69ca96385afc56bba40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.07839120626449585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200906_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200906_M_GLOBAL.out deleted file mode 100644 index 3af0457d2720b7d0625ca83694aff223d9eac593..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.0804222822189331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200907_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200907_D_GLOBAL.out deleted file mode 100644 index 240e8b832f640fd38fe93486580593da8ca3e9f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.28479593197504677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200907_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200907_H_GLOBAL.out deleted file mode 100644 index dc55b066c75f7db9586904c1670321ef2509f1d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.06708434820175171 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200907_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200907_M_GLOBAL.out deleted file mode 100644 index d034798184efdf879011020d91d74993753fb742..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.16774173974990844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200908_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200908_D_GLOBAL.out deleted file mode 100644 index 7977109392d6d29e23f3ac785bf2bb77ec54a05b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.0942811926205953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200908_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200908_H_GLOBAL.out deleted file mode 100644 index 733872b24710ea3040e08c89cbb762a728cd7be6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.06753262281417846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200908_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200908_M_GLOBAL.out deleted file mode 100644 index 97559ef14e44aaa41c6e2d28c88ec939dc8b5ff3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.08450048367182414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200909_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200909_D_GLOBAL.out deleted file mode 100644 index 4e51fc364037c70029e2a2ff835a65b95e03441a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.09928460915883382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200909_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200909_H_GLOBAL.out deleted file mode 100644 index 9bb277b99af74a3736575914566fcfaad7c7701a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.08886172374089558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200909_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200909_M_GLOBAL.out deleted file mode 100644 index 9d714eea3abe5c6bcea5d28fde48d6196e05a626..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.26548348665237426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200910_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200910_D_GLOBAL.out deleted file mode 100644 index e0d1ad6ec51134106d4aa0731f83af883fe38936..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.06845905383427937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200910_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200910_H_GLOBAL.out deleted file mode 100644 index adf714317e7259bd9919934c67c8242394ec620c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.2571234583854675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200910_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200910_M_GLOBAL.out deleted file mode 100644 index 4ca45d8ef10b80bcb93e7c4a64df23647c0c98e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.06565086444218954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200911_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200911_D_GLOBAL.out deleted file mode 100644 index b5f4e739a61ab93af2a9689535379766c14ede2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.09586338996887207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200911_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200911_H_GLOBAL.out deleted file mode 100644 index 7da3897930111e990a255adcaa0b2506c8a8c58e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.25941684246063235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200911_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200911_M_GLOBAL.out deleted file mode 100644 index d01d6f94a6022586b8a496b3f927104d52eac596..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.07385271390279134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200912_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200912_D_GLOBAL.out deleted file mode 100644 index 29f7707af73a3c441c6c9cf113054bda0cf61da5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.22823110818862916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200912_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200912_H_GLOBAL.out deleted file mode 100644 index 72822932f501d2c92bb0ce20fa66d0f7e0587974..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.08336140712102254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_200912_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_200912_M_GLOBAL.out deleted file mode 100644 index 7a18f2dfa256422eaee5ef0120bad77db69b5d31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_200912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.08667058149973551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201001_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201001_D_GLOBAL.out deleted file mode 100644 index d465e460fb11c71b43a7e99ce771f476e072d197..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.08614077965418497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201001_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201001_H_GLOBAL.out deleted file mode 100644 index c4ea7c67e408fbcc4f6d38c215d39e4020f6db13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.2408711036046346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201001_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201001_M_GLOBAL.out deleted file mode 100644 index 8e8ad1c537204aa5b4ad671b08af8a248fb5e9c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.08468101819356283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201002_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201002_D_GLOBAL.out deleted file mode 100644 index a704bf1608bf4ff1f06062be102738a03e7bdeef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.07491148312886556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201002_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201002_H_GLOBAL.out deleted file mode 100644 index 9552aab4bf6f1efac609774e22bf7bdcc90f7561..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.18277978499730427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201002_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201002_M_GLOBAL.out deleted file mode 100644 index e52834d874dbedc0e5fd9f0a94b878a86f82e863..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.27321226596832277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201003_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201003_D_GLOBAL.out deleted file mode 100644 index f3c1f7c80e6a1ba5dd4f6755987d5b48ac65ac88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.10057398875554403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201003_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201003_H_GLOBAL.out deleted file mode 100644 index c84248e1d7bdbc3703f91ddfcd6b19a02f2da29f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.08922056754430135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201003_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201003_M_GLOBAL.out deleted file mode 100644 index 22f101c8b2e7e313dc6fcedccbd75483a2e5db68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.0837997833887736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201004_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201004_D_GLOBAL.out deleted file mode 100644 index 7bc0049a7387d4033835edfb0f5ed30d220f8b29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.07687653303146362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201004_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201004_H_GLOBAL.out deleted file mode 100644 index cf1b84a1fb130ed736cce443ecebc24755fec7f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.22965954542160033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201004_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201004_M_GLOBAL.out deleted file mode 100644 index 112894250dbb3db4d10f8fed13db91c8eab639ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.08808744748433431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201005_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201005_D_GLOBAL.out deleted file mode 100644 index edb410e4ef5694f814b17b4ecf4e19ad8cde5743..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.26719930171966555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201005_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201005_H_GLOBAL.out deleted file mode 100644 index a6cc34db2b964b6e7652c9f81b419d406a01d809..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.09633078575134277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201005_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201005_M_GLOBAL.out deleted file mode 100644 index 80d0b0d10dc1bb93cf4582ff4dd785972b9de7c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.11129603783289592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201006_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201006_D_GLOBAL.out deleted file mode 100644 index b3e95b5b63c25b98c610334794312e383b9528f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.09454785585403443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201006_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201006_H_GLOBAL.out deleted file mode 100644 index bcc34de907bd1da7a5bb386eb4fe8350f2937088..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.18490143616994223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201006_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201006_M_GLOBAL.out deleted file mode 100644 index adf9c9502816096ed001203012bebeb06c2eedab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.24916681448618572 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201007_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201007_D_GLOBAL.out deleted file mode 100644 index 545ac43c79e9e40d6abaab0a822aef8c19fdf21d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.12404852708180746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201007_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201007_H_GLOBAL.out deleted file mode 100644 index 67ffea24a7187fd6bc31933f4d60e81646a0715f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.06992500225702922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201007_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201007_M_GLOBAL.out deleted file mode 100644 index fc2e2a96a352437ed9da6d5e020e4fe2d273755a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.08052070140838623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201008_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201008_D_GLOBAL.out deleted file mode 100644 index 6fc4c7e63ecc064f1dfd96750ab8a1ba1a08a8f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.15306947628657022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201008_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201008_H_GLOBAL.out deleted file mode 100644 index bffbee2fb279a9c9f17b508fe0b272d65971c0ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.09083714485168456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201008_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201008_M_GLOBAL.out deleted file mode 100644 index 8ae71d2aa5f5d98c91a74b059d0b03be9903220a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.22992820342381795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201009_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201009_D_GLOBAL.out deleted file mode 100644 index a46e28075b905126f07e4addeb970c3e5e26ee0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.26389154195785525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201009_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201009_H_GLOBAL.out deleted file mode 100644 index 54c407f458b117d75199cb1e75cd11866c7770cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.0752164642016093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201009_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201009_M_GLOBAL.out deleted file mode 100644 index dadf73a888be186d5c3731208ca3cf4ed68fb3bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.07932026386260986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201010_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201010_D_GLOBAL.out deleted file mode 100644 index f2b8453a6627a45994df08c3d2c204cc5088f44f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.09731898705164592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201010_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201010_H_GLOBAL.out deleted file mode 100644 index 29b865a5557b389b967c2cd6dc060f12a0a97979..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.07399977445602417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201010_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201010_M_GLOBAL.out deleted file mode 100644 index 427d42930e80b8278c44f1c6a67d9af9470f8c01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.08887807528177898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201011_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201011_D_GLOBAL.out deleted file mode 100644 index 2b6d8bfa268bf7dab447063d50243f5c7089950a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.09062687953313192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201011_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201011_H_GLOBAL.out deleted file mode 100644 index e62293dbaa01bfddfd43b146fd7ac51375b9590a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.086428169409434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201011_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201011_M_GLOBAL.out deleted file mode 100644 index bdf697fc3ee40d007c4978fadc4d0a0b9d4d7054..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.08433198134104411 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201012_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201012_D_GLOBAL.out deleted file mode 100644 index a577e6db91224b207d741c98a69c134f1b2dd458..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.08904562791188558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201012_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201012_H_GLOBAL.out deleted file mode 100644 index cb9b7b8e29062b8a3dda25b92f80999a62d870cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.15061422189076742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201012_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201012_M_GLOBAL.out deleted file mode 100644 index 8ded0f586a1419fa7c8943c1e15974784b843987..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.08995361725489298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201101_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201101_D_GLOBAL.out deleted file mode 100644 index 21cfa370e993e008478e8f29d0c59c2b82ba979a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.10209117730458578 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201101_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201101_H_GLOBAL.out deleted file mode 100644 index b2a011be8502a93cfe87aa1157d9e90a6d9c3b19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.2337340513865153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201101_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201101_M_GLOBAL.out deleted file mode 100644 index 2b07d27e2ad57846dcd7ec95e555494e87da4cba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.07906752824783325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201102_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201102_D_GLOBAL.out deleted file mode 100644 index a1d30f129fe579302ef5e3e5e3101875a8c751df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.10578715403874715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201102_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201102_H_GLOBAL.out deleted file mode 100644 index ebd189a3d01a3fff9a47756dcfde766e68ca525f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.09625387986501058 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201102_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201102_M_GLOBAL.out deleted file mode 100644 index e8a31b63b4c31fb31dbd325b3228c07b65b9e309..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.12185601393381755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201103_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201103_D_GLOBAL.out deleted file mode 100644 index c1871605bcaeb304914c7fbf27fcdc95cc321527..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.3068254550298055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201103_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201103_H_GLOBAL.out deleted file mode 100644 index 7589fefa33d64f3ec02f758a3ec5ccf3d56d9f79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.07683216730753581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201103_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201103_M_GLOBAL.out deleted file mode 100644 index 13a75ecaffb3b34bad270fb24f1a6fb56b832f7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.0813636302947998 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201104_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201104_D_GLOBAL.out deleted file mode 100644 index 451d49a781985081a36df249d2bd036940fa029f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.10101492404937744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201104_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201104_H_GLOBAL.out deleted file mode 100644 index 60bf091d8544090894eec9f3fcefdfb96c935c1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.10019229253133138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201104_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201104_M_GLOBAL.out deleted file mode 100644 index b0ceebee55f0860bd7cac7d6b4f4042a59305c15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.10157185792922974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201105_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201105_D_GLOBAL.out deleted file mode 100644 index c8ff19ddc081465647bb6bb608f5c1c8744d4306..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.09545966784159342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201105_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201105_H_GLOBAL.out deleted file mode 100644 index f6be5ef178cdec7b968fff71376d6d9c523f0fe3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.07598108053207397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201105_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201105_M_GLOBAL.out deleted file mode 100644 index bef8b492e8647e34b3911a2d9abc2dc8cb38cf8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.07913578748703003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201106_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201106_D_GLOBAL.out deleted file mode 100644 index dbcd976aaa2a75a70f0449eca79a56d263269d4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.09746771653493246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201106_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201106_H_GLOBAL.out deleted file mode 100644 index 27156877aa2cf7410692ed8839cd49e577563654..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.2543592095375061 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201106_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201106_M_GLOBAL.out deleted file mode 100644 index c31ae87d8b5be9d69431bf766b48f8c571043688..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.307544998327891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201107_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201107_D_GLOBAL.out deleted file mode 100644 index bb42f33aa0fc6a30900baa6060e94cff10b67b86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.2816148360570272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201107_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201107_H_GLOBAL.out deleted file mode 100644 index f5db664abff5f4d613a25df3ed66ddfb4080152f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.19423632224400839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201107_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201107_M_GLOBAL.out deleted file mode 100644 index 50521817b5044e7b920ab2220d2caad2be906a1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.0889868418375651 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201108_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201108_D_GLOBAL.out deleted file mode 100644 index ac2f4226789d4e982707e47d10439a3d45989aa9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.3036612033843994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201108_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201108_H_GLOBAL.out deleted file mode 100644 index c78aeca4582e7fe971ae6d0ef08c37f9a689f48b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.0817073106765747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201108_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201108_M_GLOBAL.out deleted file mode 100644 index 6cce6ca05b0960c1a530cf69e662908be8aaf560..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.0995422641436259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201109_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201109_D_GLOBAL.out deleted file mode 100644 index ea1e4ac9df4195d219f903d0d034f6da86bc3d51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.07722831964492798 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201109_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201109_H_GLOBAL.out deleted file mode 100644 index 03cfadc3a116cc6e1c0eb8afd9cae318575c6d13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.10727851390838623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201109_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201109_M_GLOBAL.out deleted file mode 100644 index 8d9f552d2e26e39575f104576a00fadd16f21b74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.24002453486124675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201110_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201110_D_GLOBAL.out deleted file mode 100644 index a1d640bb60b8633413b06d4f5c4321f8462a9a67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.10629608233769734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201110_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201110_H_GLOBAL.out deleted file mode 100644 index 3985f194a09823c8a8e1ee58124ff8458a56c60a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.09081213076909384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201110_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201110_M_GLOBAL.out deleted file mode 100644 index b1a2cbb9b0ee5217b9869df0266c70803718c80a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.07849889198939006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201111_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201111_D_GLOBAL.out deleted file mode 100644 index 96df00060740a8fce8db70cd694d2c9d04656dd7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.2617252985636393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201111_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201111_H_GLOBAL.out deleted file mode 100644 index 7e4c4aeeb82b391805d8c0c249282d84a7a4d27c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.07536247571309408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201111_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201111_M_GLOBAL.out deleted file mode 100644 index ba5b71b6e9358882cf83b5f753d0340177197f3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.06982860565185547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201112_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201112_D_GLOBAL.out deleted file mode 100644 index 5200d58a3c06318e949afb9307639c368d32fae8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.10005719661712646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201112_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201112_H_GLOBAL.out deleted file mode 100644 index be60d7823454b7293727a3c9ab044259f22e94b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.07591698567072551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201112_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201112_M_GLOBAL.out deleted file mode 100644 index ac0aef78a8f6bdebe0494daf95c0bcdebbac23d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.08442524671554566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201201_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201201_D_GLOBAL.out deleted file mode 100644 index 1467c16cd8580d507ebcf76d57fc8fa28476c4b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.09676980972290039 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201201_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201201_H_GLOBAL.out deleted file mode 100644 index e9cab205ac377cf5fa1895a766acf93148eb8252..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.24126332600911457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201201_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201201_M_GLOBAL.out deleted file mode 100644 index ecce80177781320347615592e8f26f2e261fa11b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.08023356596628825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201202_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201202_D_GLOBAL.out deleted file mode 100644 index 69fa1d692ed5c85ff0f2f0f9670406ce8bfe625f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.08024280071258545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201202_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201202_H_GLOBAL.out deleted file mode 100644 index 56d5571f04a566d45f58ac048f5fedec09fcb105..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.1989407181739807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201202_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201202_M_GLOBAL.out deleted file mode 100644 index 23b5fb838f21b6a98870801ecf9f43856224dc19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.09829004208246866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201203_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201203_D_GLOBAL.out deleted file mode 100644 index aceea61b07b8f0cfbf7a975438c1bf18648e1ef4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.30426867405573527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201203_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201203_H_GLOBAL.out deleted file mode 100644 index 587d245bf71981fa0fcd3f1c6450c34d17266b70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.1064026951789856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201203_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201203_M_GLOBAL.out deleted file mode 100644 index d75ddcbf49dd0530d05363762f6b0ab9ce8ff45c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.10008850495020548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201204_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201204_D_GLOBAL.out deleted file mode 100644 index 139dcc8161ab607e5c46badd3ab1e4fb12c96592..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.2566600958506266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201204_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201204_H_GLOBAL.out deleted file mode 100644 index 0fe7cbb44063a51e117f878a736ea2dd78b178b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.09788026014963785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201204_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201204_M_GLOBAL.out deleted file mode 100644 index 2ee35d4b3411209531b2768d63edd8fd49149e9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.2755670229593913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201205_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201205_D_GLOBAL.out deleted file mode 100644 index 204e2d77c58e20d081fd2117c2e5408f0528d34d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.08652575016021728 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201205_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201205_H_GLOBAL.out deleted file mode 100644 index f08e4a119a7ef3e99b859a1a0b797a861d1f58ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.06911935408910115 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201205_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201205_M_GLOBAL.out deleted file mode 100644 index 00434ee1b3bbefdfafbc78167055d3aa1db501da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.22738770246505738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201206_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201206_D_GLOBAL.out deleted file mode 100644 index 9c51e5cb3488aea43fe864b9a5c41f994801b85f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.1008625348409017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201206_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201206_H_GLOBAL.out deleted file mode 100644 index e60d1698c9930ae6f160735d5a46c9c6fe0d6c62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.09637736876805623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201206_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201206_M_GLOBAL.out deleted file mode 100644 index 04fa2e87c340a82479ad652e0a32c857b1e23e9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.0727736473083496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201207_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201207_D_GLOBAL.out deleted file mode 100644 index 4f9088547425b5364f89f86e41029f9ae4ae25be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.2808514952659607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201207_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201207_H_GLOBAL.out deleted file mode 100644 index 66356d4f229bbc3fa4e51bf6e4724586e041ced3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.07053972880045573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201207_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201207_M_GLOBAL.out deleted file mode 100644 index 4d300de81af9bcef469a4a31a18068a0fef15d4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.27221475839614867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201208_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201208_D_GLOBAL.out deleted file mode 100644 index 8a27df66a02865a2127778455f5f1f63c2d7d5fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.09521900812784831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201208_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201208_H_GLOBAL.out deleted file mode 100644 index 863b22a21ebd6c32e3128a9e7d8c42583aae22d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.26795772711435956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201208_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201208_M_GLOBAL.out deleted file mode 100644 index 75bb1c24f4942747ef7b5e80827399242bde9fd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.1770204226175944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201209_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201209_D_GLOBAL.out deleted file mode 100644 index 418b42c983a14e42fdd247e254a2c9a85039576b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.07364058494567871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201209_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201209_H_GLOBAL.out deleted file mode 100644 index 33abc55e37ff1fe965a25e015dbd2e37000aa7c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.07763068675994873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201209_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201209_M_GLOBAL.out deleted file mode 100644 index 0ef4b1ff1ebf8cb8f384acd37629392a9ddab227..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.09455231030782064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201210_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201210_D_GLOBAL.out deleted file mode 100644 index a02fbddaf8ee684eb5de2464537ff9bc7303bfa5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.24079500436782836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201210_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201210_H_GLOBAL.out deleted file mode 100644 index 1decb63e84a386b6a8e77db8fe5f169215100c9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.0857741355895996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201210_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201210_M_GLOBAL.out deleted file mode 100644 index b18a1304df9ba3f98c6938c765bf01500f5092a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.17334181865056356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201211_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201211_D_GLOBAL.out deleted file mode 100644 index cf688e5842849a2c9284440bd3eb934176b7b5d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.07478598356246949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201211_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201211_H_GLOBAL.out deleted file mode 100644 index ed753fc6f6cf6a1b677afb1a256d67d2d497d479..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.24339824120203654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201211_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201211_M_GLOBAL.out deleted file mode 100644 index 23ed1cff8a8bd473e0d6c4a0000c5e1d370a86c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.2326546311378479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201212_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201212_D_GLOBAL.out deleted file mode 100644 index d909d3977ebb34d0d4fd560f1ad903c496e49757..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.23249485492706298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201212_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201212_H_GLOBAL.out deleted file mode 100644 index d837c79c02631cf7bba680f24e0974cc5565e931..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.10783958037694295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201212_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201212_M_GLOBAL.out deleted file mode 100644 index 55d12a6f731821951bad992d458c1aba3338c0d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.2992752591768901 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201301_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201301_D_GLOBAL.out deleted file mode 100644 index 02c1fe671b2e26750e6f708519b4d2008ceeb764..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.10461177031199137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201301_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201301_H_GLOBAL.out deleted file mode 100644 index 0a8e2e5c0c823e39f22a524c866509429f457baa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.0778549591700236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201301_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201301_M_GLOBAL.out deleted file mode 100644 index c03b4c58aed916d37e8d6bfc45e14a14fc3c7db8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.22865992387135822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201302_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201302_D_GLOBAL.out deleted file mode 100644 index 662bc81fb25ba94dfac862ba9120888c098be6a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.08168497482935587 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201302_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201302_H_GLOBAL.out deleted file mode 100644 index 012cf23558522a52d514381968c510251716f238..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.24695911010106406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201302_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201302_M_GLOBAL.out deleted file mode 100644 index 3e21e2d936f933bb520fa152a04d96112e88a789..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.17445259888966877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201303_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201303_D_GLOBAL.out deleted file mode 100644 index 69d1b2941f61688bf4a1e6253620171358aa5bdc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.11627863645553589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201303_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201303_H_GLOBAL.out deleted file mode 100644 index 2044d278bc199f033a5a7b6a29a35a061d50a9c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.11427820920944214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201303_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201303_M_GLOBAL.out deleted file mode 100644 index 02e366ad55465d0c4762c9ab1a4e6f441fb63528..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.2776500622431437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201304_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201304_D_GLOBAL.out deleted file mode 100644 index 100e2312bc0703ee3697dc6a5f609912ea8c06af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.3084349989891052 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201304_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201304_H_GLOBAL.out deleted file mode 100644 index 819900dd8d5c25ed6eda5a9a8f5e9d7b768cb714..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.08730884790420532 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201304_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201304_M_GLOBAL.out deleted file mode 100644 index 103b55f97b0898beebefc8cefccc089455d32295..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.07759463787078857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201305_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201305_D_GLOBAL.out deleted file mode 100644 index c6ee26a4c10076546e4d99f4c3c111c4853944d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.15297327438990274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201305_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201305_H_GLOBAL.out deleted file mode 100644 index 01c5313d8a3ab4cfce07bc2ddcaf14bab3f65b9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.07559598286946614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201305_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201305_M_GLOBAL.out deleted file mode 100644 index f7ba47574c702ca6faa0731f2bf3807c3b212fed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.22695857286453247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201306_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201306_D_GLOBAL.out deleted file mode 100644 index 3c372b75216196684523d999ba7a10733691f6dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.09286312659581503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201306_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201306_H_GLOBAL.out deleted file mode 100644 index fdceb513100a4befc04bda45b6c105cc913de36d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.2745523929595947 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201306_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201306_M_GLOBAL.out deleted file mode 100644 index 3c6025c1e2cb55d187b63384f782dba1127f7a55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.09028184413909912 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201307_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201307_D_GLOBAL.out deleted file mode 100644 index a1fa10b99640fbcc54c43e86036248688180b755..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.07939541737238566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201307_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201307_H_GLOBAL.out deleted file mode 100644 index 90351a4d9331d242e3b62d60de94a159dbc4a505..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.07975240151087443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201307_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201307_M_GLOBAL.out deleted file mode 100644 index a53e58272d30e770368575ddff8ff9fe1cd24d81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.11301651000976562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201308_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201308_D_GLOBAL.out deleted file mode 100644 index e701fc0e30a01a7a453083ae1904b37b907bcaaf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.23302456935246785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201308_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201308_H_GLOBAL.out deleted file mode 100644 index 8534c2aed9fe27e85ce021b1a5520bb1a5597143..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.2008685072263082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201308_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201308_M_GLOBAL.out deleted file mode 100644 index 4f6cfca625c40b52f1172c65616415c9719d9855..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.13261592785517376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201309_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201309_D_GLOBAL.out deleted file mode 100644 index d165964b78c684d12a7cee95f4e0671fae50bdfd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.3083450476328532 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201309_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201309_H_GLOBAL.out deleted file mode 100644 index 8632efaffd1d239031043f729fb6ff7562486e88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.08015316724777222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201309_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201309_M_GLOBAL.out deleted file mode 100644 index 9cda325bdbf7eeae88dc2ae0dc97f1e2a08cc3e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.21579821507136027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201310_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201310_D_GLOBAL.out deleted file mode 100644 index be72c48890c672e4db0e776dcc48f72f6a90c540..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.08188730478286743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201310_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201310_H_GLOBAL.out deleted file mode 100644 index 094672e2437d5e45abf997715bb0448cd433ff61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.09576246738433838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201310_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201310_M_GLOBAL.out deleted file mode 100644 index b1fc2a524c243d59f9ac556922fab09a471d9843..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.28461398283640543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201311_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201311_D_GLOBAL.out deleted file mode 100644 index 1c2f9e77aa004df917c07e3eb2fdd1d3141d098a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.08162126541137696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201311_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201311_H_GLOBAL.out deleted file mode 100644 index 3798ad59f1e37f4f74b6ce6dbfa147ad1d172e34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.2501569668451945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201311_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201311_M_GLOBAL.out deleted file mode 100644 index 992b066fe171e6f21320a32aaa3e4b9a0ba52756..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.17345635493596395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201312_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201312_D_GLOBAL.out deleted file mode 100644 index 12c4d5cca536890033b3ea91ab38454a6d4969fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.08110283215840658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201312_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201312_H_GLOBAL.out deleted file mode 100644 index 09604d21cf33ceb9f3a765eb46a23513407c23af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.22978670199712117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201312_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201312_M_GLOBAL.out deleted file mode 100644 index 5edc67428857b4559ea5e5858da69ca2c7f80180..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.2271862785021464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201401_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201401_D_GLOBAL.out deleted file mode 100644 index 5279ca807b785c0c9ebc27198861bcf456a390c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.08496608734130859 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201401_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201401_H_GLOBAL.out deleted file mode 100644 index b113e5d52e0f31b14477a5a2ac4eacd0eb5f5b3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.0864379604657491 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201401_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201401_M_GLOBAL.out deleted file mode 100644 index 57b7d80be5b3bb5974bbdfea1e3d9b87896e68c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.09903053840001425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201402_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201402_D_GLOBAL.out deleted file mode 100644 index b712cb8debffa6a1ba0f2ebc2c469c2247a40886..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.07939452727635701 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201402_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201402_H_GLOBAL.out deleted file mode 100644 index fe1a57decad484d890c50958c1462c2999b2c002..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.09264870087305704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201402_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201402_M_GLOBAL.out deleted file mode 100644 index c984d25c0685e6578be5f56b4366072d46669b4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.08159015576044719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201403_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201403_D_GLOBAL.out deleted file mode 100644 index 9aa6455a3abd44208af1335bf573e603df5835f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.09625676472981771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201403_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201403_H_GLOBAL.out deleted file mode 100644 index 205ab995ce0d946e569ea4ea3af8bc9f6b45d576..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.09497030576070149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201403_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201403_M_GLOBAL.out deleted file mode 100644 index 6b1b7e6b800d0e1b1c9c55919e6f69f3a1fdeba1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.08395226796468098 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201404_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201404_D_GLOBAL.out deleted file mode 100644 index 3ccfbb1af410b399ef20bea907026ddc107e3df4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.07987334728240966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201404_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201404_H_GLOBAL.out deleted file mode 100644 index 8983338d8ccb42d21633d2e7e19641df7c471dcf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.2502303242683411 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201404_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201404_M_GLOBAL.out deleted file mode 100644 index 05f008d475bfb68f2e2a91f1f7aa208a38fc1610..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.08525264263153076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201405_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201405_D_GLOBAL.out deleted file mode 100644 index 80582aaa81b0231a0650b70451047362a19006ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.23568476835886637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201405_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201405_H_GLOBAL.out deleted file mode 100644 index 79a80d8ca7a5ac583f08ee6881ae943d1dd1027a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.2879660169283549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201405_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201405_M_GLOBAL.out deleted file mode 100644 index 6b16931962a8ded1f34325e9ef7c2731010ba652..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.1855567216873169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201406_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201406_D_GLOBAL.out deleted file mode 100644 index 6ed03b96a1580040691c820ef6df606ced672889..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.27922369639078776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201406_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201406_H_GLOBAL.out deleted file mode 100644 index dcce5156ca618d7ad446d82ea395d210e3755b18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.21044463713963826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201406_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201406_M_GLOBAL.out deleted file mode 100644 index d38d7e9617e027563c0ba5f4d4e06ab9625e6036..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.09742551644643148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201407_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201407_D_GLOBAL.out deleted file mode 100644 index c5769a24cb2b88babf7f4eb6a5c3332d9f97b2f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.2517807443936666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201407_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201407_H_GLOBAL.out deleted file mode 100644 index a3cb1d5122a2ae0325467c4d799b80818cdc6072..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.12015707890192667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201407_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201407_M_GLOBAL.out deleted file mode 100644 index 44805539f73762e436dccd3c47af0563710a54b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.23270442485809326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201408_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201408_D_GLOBAL.out deleted file mode 100644 index cdc929c8b8f5841de29bef0c44f15f9342575bd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.09237006107966104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201408_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201408_H_GLOBAL.out deleted file mode 100644 index 4a111adfde60c0c3b885231cea8f599f6b79fda4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.21218496163686115 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201408_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201408_M_GLOBAL.out deleted file mode 100644 index 09d95ca864619cb8be0c485d6721d1b59f306ac2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.0722241997718811 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201409_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201409_D_GLOBAL.out deleted file mode 100644 index 8b79094dfa4c2c2ea9ee2ac2c31a93f127d374fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.2864498575528463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201409_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201409_H_GLOBAL.out deleted file mode 100644 index 442d618159ae9faa09fc64533d99edf2c47e1d78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.0725431243578593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201409_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201409_M_GLOBAL.out deleted file mode 100644 index 145fd5ed7c6aaed062a84f712bc81611cb641d3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.10051011244455973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201410_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201410_D_GLOBAL.out deleted file mode 100644 index 5cf8642aec6917d7f4555faa29da8e31753542b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.12723567088445029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201410_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201410_H_GLOBAL.out deleted file mode 100644 index 15fd3ab3feadf08b3f8370a9e230b4e9dc9e1730..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.11066115697224935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201410_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201410_M_GLOBAL.out deleted file mode 100644 index a1d8af9e658f49726a866c0e85f7fd0dfb28dd94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.07874758640925089 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201411_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201411_D_GLOBAL.out deleted file mode 100644 index d1bc33a9a6182d61cbb9828f51125a269d4a2dd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.10406816800435384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201411_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201411_H_GLOBAL.out deleted file mode 100644 index 1d5c12545c7d96fd5c8d49f89d83110949dd732b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.10610584815343221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201411_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201411_M_GLOBAL.out deleted file mode 100644 index 17236d960fb96d6695aeee8ee17c84ced6647eab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.08313045501708985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201412_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201412_D_GLOBAL.out deleted file mode 100644 index c6f3dba938b1ea45f215d067ccaf0ba0a366a65a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.08800582885742188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201412_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201412_H_GLOBAL.out deleted file mode 100644 index b08338ec076dfd46a74fc519bbe974cb3ffc1ff8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.10542751948038737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201412_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201412_M_GLOBAL.out deleted file mode 100644 index 2f139b37cc52bcaa19cd0bd6e82130e269f0526b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.10691521962483724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201501_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201501_D_GLOBAL.out deleted file mode 100644 index 5221a1b9f5f63f82ba16b5e7adb4efc6e782ffa9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.12067296504974365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201501_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201501_H_GLOBAL.out deleted file mode 100644 index 47752122e60be3fc658504fb87181e3d6a830dfb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.0827793836593628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201501_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201501_M_GLOBAL.out deleted file mode 100644 index 48b9a67c811da536d898ba149d78b8b2bc9a7276..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.07570030291875203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201502_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201502_D_GLOBAL.out deleted file mode 100644 index c7fb611ac3908276b4d0a1244db9dca966fa7270..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.09886745611826579 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201502_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201502_H_GLOBAL.out deleted file mode 100644 index cbf40100dd89e2a1711ee3bf474300b9d6c48a50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.18320278326670328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201502_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201502_M_GLOBAL.out deleted file mode 100644 index dec4d31197cdbdb349fa518cae5e4bff7ab71318..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.2919810732205709 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201503_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201503_D_GLOBAL.out deleted file mode 100644 index a4e8ce1479133f884b1074da37401f1de743ed9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.11051648060480754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201503_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201503_H_GLOBAL.out deleted file mode 100644 index 6323b92f3a5aa2bc8b1fc8ef2952c87df2db86f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.08634571631749471 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201503_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201503_M_GLOBAL.out deleted file mode 100644 index 1a50a750c95b37872caa8b600c9bb2ed2d294ec1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.23998634815216063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201504_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201504_D_GLOBAL.out deleted file mode 100644 index f85590b1caf3b37080cd9ab39fbb5b94a8cc537f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.2916285157203674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201504_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201504_H_GLOBAL.out deleted file mode 100644 index 880c8c922b7f9624c7cf93b789d0958e60e6cd07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.24881365299224853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201504_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201504_M_GLOBAL.out deleted file mode 100644 index 6ad5345556292eb28754785d454aae2a4d03d763..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.0823729674021403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201505_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201505_D_GLOBAL.out deleted file mode 100644 index da6b7ccd05abf837c31412da416228b312097a35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.2841227094332377 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201505_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201505_H_GLOBAL.out deleted file mode 100644 index c7b3b487b13fb4bb585fb305c197dc97bad75f45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.101041575272878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201505_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201505_M_GLOBAL.out deleted file mode 100644 index 3fe4f5e3bb08b932d02533d0524f6e7587812a6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.0764059027036031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201506_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201506_D_GLOBAL.out deleted file mode 100644 index d9c2d2b025a7a089f871595b518419daff4fcab1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.2763856053352356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201506_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201506_H_GLOBAL.out deleted file mode 100644 index c039e726d7773b008c94950a94b852f73ab375ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.08954956928888956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201506_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201506_M_GLOBAL.out deleted file mode 100644 index ecc72e787d22c3f65b0f17d8286ce5427d2f54c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.09660592079162597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201507_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201507_D_GLOBAL.out deleted file mode 100644 index 68f450ae83843c742014e0cbe9027e2b5f602406..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.3101471980412801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201507_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201507_H_GLOBAL.out deleted file mode 100644 index fb19d951674aef7da046e0f318d33f948f38e151..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.08225252230962117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201507_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201507_M_GLOBAL.out deleted file mode 100644 index 108c8fcf24fae9c9768a1b3b9db9958a79d879e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.2483842968940735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201508_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201508_D_GLOBAL.out deleted file mode 100644 index 31a74080c07000aa1c973904c6fcc3ed29161f7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.1278207262357076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201508_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201508_H_GLOBAL.out deleted file mode 100644 index 80044b661f3b41c8f130610a6332dbce7e8c006e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.10733915170033773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201508_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201508_M_GLOBAL.out deleted file mode 100644 index 1ebcb67c589be401ccaadeb15a2eb31a34e5fe0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.08548185825347901 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201509_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201509_D_GLOBAL.out deleted file mode 100644 index 6be18daa9703d22af3ba9cd9a07b8780b576453b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.08909969329833985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201509_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201509_H_GLOBAL.out deleted file mode 100644 index 996680c90d31da877f5e88988a0558b484e609c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.07687004804611205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201509_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201509_M_GLOBAL.out deleted file mode 100644 index ebbc0932421ca7dcb2674dd0e87b481a508c51d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.24926793177922565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201510_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201510_D_GLOBAL.out deleted file mode 100644 index 415c6e30e15d63225595261df61185bc10793f70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.07643442153930664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201510_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201510_H_GLOBAL.out deleted file mode 100644 index 871822044e3c0c8b209a8edb3693149477fd6e07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.07183018525441488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201510_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201510_M_GLOBAL.out deleted file mode 100644 index fa831da44a3b1cce9e1b9caf0d721be676acf92b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.08330045143763225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201511_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201511_D_GLOBAL.out deleted file mode 100644 index a91f69412495bcb0c577728b35b709a677bc477f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.13595826228459676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201511_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201511_H_GLOBAL.out deleted file mode 100644 index 974767870a8beab37cc5651f3cc6b7084ddc4cfc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.08067339658737183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201511_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201511_M_GLOBAL.out deleted file mode 100644 index 261ad76c8a34fff02cfae87173ac4c14b34ae123..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.24802541335423786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201512_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201512_D_GLOBAL.out deleted file mode 100644 index 54985e86de7410c8ff2c80a7786e0febcde29815..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.10915089845657348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201512_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201512_H_GLOBAL.out deleted file mode 100644 index 79889445c7355d67ce140960291e509887e90157..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.07525901397069296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201512_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201512_M_GLOBAL.out deleted file mode 100644 index 24cbf082a35622b07931a96a6a2879bf5794c04e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.24166735808054607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index c5f46485942a1b7d8f80efeb3142b35f281d650b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.2767818093299866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index 4d134869a32dcc09b15a69d6b5c71bfd6bacd61b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.21129107475280762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index afd682e3151d47d7d30582dd08fbb50d354b39a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.09474691152572631 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index 1a873e360aa453edb2a9d980f1a7b8a83ae93d68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.09018982251485189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index 6d8f4e780eb72331a87bba5f2fd6e7fc82af55b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.1826545794804891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index 331b620ccd8c856269e2b37e70ae2574df218461..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.10139070351918539 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index a5e957e82f128b895c48471713da81ab3044482f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.23557878335316976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index aacb4ac35d9a8ef0b2890507129d63978ca27b3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.11499866247177123 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index 4719724a800d730dc1f6b0687807fdc3486d5bf0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.09147711992263793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index 5b81fd3a79f0537f8dee4522f06c0db3bafdcb23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.10544334650039673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index 1c2cb54fbd1d36f89ade968b5546c8fc61864d4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.21033196846644084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index 9f2c54ab636d6a45ab937fdaec7e7d74b29ef765..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.08616658846537271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index 8a76a23cdc7e611adcf9fb562cf4357f2ba88d9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.0936652143796285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index d268951e4e37f16bd3406da1b2fad096bf29d505..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.08330117066701254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index 9bf28aa098512460b849852cedf980830a0f8099..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.2499717632929484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index 252ba5ab264a2a8b0cfc411884d92f08a1dcc7b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.2858169992764791 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index 52e11a342cc38d2f65574e8889606ee8548c260e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.0997492790222168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index 721871b242e98fe14cc0761eae43819294f78b93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.27667067845662435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202006_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202006_D_GLOBAL.out deleted file mode 100644 index b3f46c8ba38d732a2ef5169380dfaee962f2ce6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.09047046502431234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202006_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202006_H_GLOBAL.out deleted file mode 100644 index 376d133b94463db58bab7cd9b7e226462f0210a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.24521283706029257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202006_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202006_M_GLOBAL.out deleted file mode 100644 index 052f10d9de88bd743aa7253e73d8871638888cd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.08859315713246664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202007_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202007_D_GLOBAL.out deleted file mode 100644 index 55c4f6a094d8765969abbcc3e3b828fc654dad77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.10160172780354818 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202007_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202007_H_GLOBAL.out deleted file mode 100644 index 64cf52ec2fc290e38f25e9c1e645f7b149d420ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.11819539864857992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202007_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202007_M_GLOBAL.out deleted file mode 100644 index f0a79f7814fe7e3fa2eca995954e9286bb2f3189..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.08829719622929891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202008_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202008_D_GLOBAL.out deleted file mode 100644 index e8b529a12d7d916fab32a9ad85dbf6e66ef269c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.09767414728800455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202008_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202008_H_GLOBAL.out deleted file mode 100644 index f81bc8fb34f9bf4ded2132857ebccfc975797e9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.07588198582331339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202008_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202008_M_GLOBAL.out deleted file mode 100644 index e4846d8037cc5f14236ceb257eca04ffc6a49a89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.1269530455271403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202009_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202009_D_GLOBAL.out deleted file mode 100644 index 4025f99074e04bfbd43a6c2f4ffc01741fa59034..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.10579952796300253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202009_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202009_H_GLOBAL.out deleted file mode 100644 index 6defa3a64da1ec63f3e57a9aa6620906f29cd772..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.12043840885162353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202009_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202009_M_GLOBAL.out deleted file mode 100644 index c7a3de3a1458f7240ec2a94a4a4741d821359a7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.08086604277292887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202010_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202010_D_GLOBAL.out deleted file mode 100644 index 19343cf1a8f8be640f708122ac5c812483b27cb1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.11747710307439169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202010_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202010_H_GLOBAL.out deleted file mode 100644 index f891d18e780c9a80a2fd4405bbc2471c27bacc43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.08951438268025716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202010_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202010_M_GLOBAL.out deleted file mode 100644 index 986961aca62da17b7efdbf19dfc0d87943fb04f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.10101963678995768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202011_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202011_D_GLOBAL.out deleted file mode 100644 index a900fc6be613d2093de8eee856744f6f70bb450f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.28881220022837323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202011_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202011_H_GLOBAL.out deleted file mode 100644 index 10ef210b553933e7c303f73110310cf25a08f952..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.28433887163798016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202011_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202011_M_GLOBAL.out deleted file mode 100644 index 4e30b7ab4c4844abc2615127841bd538a7644028..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.09042870203653972 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202012_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202012_D_GLOBAL.out deleted file mode 100644 index 8009a680e8156ff5878bdb5e1fae652a1eedd52e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.13342322111129762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202012_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202012_H_GLOBAL.out deleted file mode 100644 index 14bbbc81593d236d98eaacd2100de373a05664c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.15617850224177043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202012_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202012_M_GLOBAL.out deleted file mode 100644 index 271e6c15c3a6c15768a388701819fafaff421ce1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.0901412844657898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202101_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202101_D_GLOBAL.out deleted file mode 100644 index bbf78df254ab5556abe996ce753846cb491d7561..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.07966173887252807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202101_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202101_H_GLOBAL.out deleted file mode 100644 index de0e5aecb6348de05ce0ad8c88f1b1b3508c1842..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.03036197026570638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202101_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202101_M_GLOBAL.out deleted file mode 100644 index 8bd80fa62688dda00ed8402156a9bd1cbd3ecdb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.03825657367706299 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202102_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202102_D_GLOBAL.out deleted file mode 100644 index a1087464be2bd74058e0ab27d35b327984c7fa7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.07598288059234619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202102_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202102_H_GLOBAL.out deleted file mode 100644 index 999c29bf608df343f63657604341e91879ba2d3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.028919676939646404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202102_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202102_M_GLOBAL.out deleted file mode 100644 index bacbf82003f20378ba7c86283f21bb7b74e4bdad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.03165040413538615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202103_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202103_D_GLOBAL.out deleted file mode 100644 index bec876c111f1e1628034ff5d721aed1a8f4f9d80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.026742756366729736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202103_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202103_H_GLOBAL.out deleted file mode 100644 index 0be7d6fb8032e24b08dbf712720bc7f8f9eb6408..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.2142328937848409 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202103_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202103_M_GLOBAL.out deleted file mode 100644 index 34dc0bc953075531ab0306d0c034c6d692a50b77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.032294495900472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202104_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202104_D_GLOBAL.out deleted file mode 100644 index e052fce9f6ef15315b2c4e0743d8610d7826cea3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.029729580879211424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202104_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202104_H_GLOBAL.out deleted file mode 100644 index 7686d5b336f4672d4fcaa7362cf88cb2c6a6a2e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.043257856369018556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202104_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202104_M_GLOBAL.out deleted file mode 100644 index c02259f8c89f00ad079ed1d44e3a7b50d55ec536..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.052531345685323076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202105_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202105_D_GLOBAL.out deleted file mode 100644 index 5d44a347921ad1a89893a1bcd35cc526e27c5b28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.06867189804712931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202105_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202105_H_GLOBAL.out deleted file mode 100644 index fd04db2a36afec2db13b434a29b948efec51fb72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.028118975957234702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202105_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202105_M_GLOBAL.out deleted file mode 100644 index cf5f53a7ee58f969bf3a328ce2c38f87ce2b5443..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.027487532297770182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202106_D_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202106_D_GLOBAL.out deleted file mode 100644 index 734e234d58803c972fdde8b8fb7b38de1594df02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.03866262435913086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202106_H_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202106_H_GLOBAL.out deleted file mode 100644 index 593de38ba2566f6e024540327eaf83581dd7339c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.025990851720174155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_O3/T2/0_202106_M_GLOBAL.out b/run/stage_logs/NAPMD_O3/T2/0_202106_M_GLOBAL.out deleted file mode 100644 index c27108ad59e4ac417591f5f128a80cfd17eb85b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_O3/T2/0_202106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.23352037668228148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/S1/0_2019.out b/run/stage_logs/NAPMD_P-XYLENE/S1/0_2019.out deleted file mode 100644 index 679f2ddc43a8f592275a39517cee30cd6da86d37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/S1/0_2019.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/XYLENE_2019.csv -110 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.013722558816274008 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/S1/0_2020.out b/run/stage_logs/NAPMD_P-XYLENE/S1/0_2020.out deleted file mode 100644 index f424e37c47fa34efbcb7e3401b7c8c618e459867..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/S1/0_2020.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/XYLENE_2020.csv -110 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.012570520242055258 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/S2/0_110_UNK.out b/run/stage_logs/NAPMD_P-XYLENE/S2/0_110_UNK.out deleted file mode 100644 index 96ca34773ecfe456a27b409a875b50f7aebff17e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/S2/0_110_UNK.out +++ /dev/null @@ -1,4 +0,0 @@ -110_UNK -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006764396031697591 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/S2/0_96_UNK.out b/run/stage_logs/NAPMD_P-XYLENE/S2/0_96_UNK.out deleted file mode 100644 index cda93dedfd6419320e5a9c94b70199c3fda182bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/S2/0_96_UNK.out +++ /dev/null @@ -1,4 +0,0 @@ -96_UNK -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004043551286061605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/S3/0_110_UNK.out b/run/stage_logs/NAPMD_P-XYLENE/S3/0_110_UNK.out deleted file mode 100644 index 229fcb73b5f8614d13c0f14d06c918cdb4e0a327..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/S3/0_110_UNK.out +++ /dev/null @@ -1,23 +0,0 @@ -110_UNK -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4136629541714987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/S3/0_96_UNK.out b/run/stage_logs/NAPMD_P-XYLENE/S3/0_96_UNK.out deleted file mode 100644 index 804852ae501fd832741ef3d0065e5cf80b2b9c8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/S3/0_96_UNK.out +++ /dev/null @@ -1,23 +0,0 @@ -96_UNK -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2939990441004434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T1/0_110_UNK_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T1/0_110_UNK_D_GLOBAL.out deleted file mode 100644 index 246f5bfece886e9721bdb320a932d0a4ed62d5ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T1/0_110_UNK_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.313334596157074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T1/0_110_UNK_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T1/0_110_UNK_H_GLOBAL.out deleted file mode 100644 index 8b8aad929ab100554ef8327ccb664220e9c202fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T1/0_110_UNK_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23848408063252766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T1/0_110_UNK_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T1/0_110_UNK_M_GLOBAL.out deleted file mode 100644 index 740e162922575248156dbe4b4b37df7f5d50d7c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T1/0_110_UNK_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04832489887873332 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T1/0_96_UNK_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T1/0_96_UNK_D_GLOBAL.out deleted file mode 100644 index 397f54d2ab8549319d2401220f8719f18661cb73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T1/0_96_UNK_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31780740022659304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T1/0_96_UNK_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T1/0_96_UNK_H_GLOBAL.out deleted file mode 100644 index 033ef2c5a9e834e8ee10bcfecb871e448f07cea6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T1/0_96_UNK_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23434810638427733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T1/0_96_UNK_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T1/0_96_UNK_M_GLOBAL.out deleted file mode 100644 index 41cca53c5e8bd969394a3c81dec698f4ea12bfc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T1/0_96_UNK_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.040687843163808184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201812_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201812_D_GLOBAL.out deleted file mode 100644 index aa5a12344548f150c60b61ad03702ba072447ba7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.06530713637669881 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201812_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201812_H_GLOBAL.out deleted file mode 100644 index 76b8fc5bfdd0a17a8b57cebc3f5264f272e80dd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.04339509010314942 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201812_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201812_M_GLOBAL.out deleted file mode 100644 index e62fe8d99e3ffeaceffdfd3eda5d05d717887d0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.0338035782178243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201901_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201901_D_GLOBAL.out deleted file mode 100644 index d1e7e13e0baac776294199013f8592899a58a28b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.06135476032892863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201901_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201901_H_GLOBAL.out deleted file mode 100644 index 99164c396312a7fc65fb170b27c9dd05ffc28dc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.07284749348958333 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201901_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201901_M_GLOBAL.out deleted file mode 100644 index d8b774c5f79771e025b6452c2daa4c1b1421304f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.028862937291463216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201902_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201902_D_GLOBAL.out deleted file mode 100644 index 51f76a1d1f755d9b1892c83e6c693335b31088fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.03149181604385376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201902_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201902_H_GLOBAL.out deleted file mode 100644 index b0b9f951612433c4255c5ba2c04fb096ee5d1c18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.0736709197362264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201902_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201902_M_GLOBAL.out deleted file mode 100644 index 2f716ffd243d89499b11c54972cee9a547421345..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.07222121556599935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201903_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201903_D_GLOBAL.out deleted file mode 100644 index b26c3d63b4df791684d1052ccbfb78ea33418ef6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.07146901289621989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201903_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201903_H_GLOBAL.out deleted file mode 100644 index 68c7f30097f134b2c4805e7fb1caaac879a36be7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.075984255472819 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201903_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201903_M_GLOBAL.out deleted file mode 100644 index 6852c8ce811d82acd5e80e34a35c43a6e2ccd0d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.07380600372950236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201904_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201904_D_GLOBAL.out deleted file mode 100644 index c96b95f25308631f6f554917ad0f9e52b2b45034..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.060391966501871744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201904_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201904_H_GLOBAL.out deleted file mode 100644 index 3e287816e876f4ef6ed9f6870a6567e6f5d8ccee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.05368857781092326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201904_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201904_M_GLOBAL.out deleted file mode 100644 index 2b96e787147431dac0fc4307d7b1a9f64063b63b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.07310171524683634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201905_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201905_D_GLOBAL.out deleted file mode 100644 index 7e3e3597271efdd02b752c142cd13162731b12fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.06926081577936809 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201905_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201905_H_GLOBAL.out deleted file mode 100644 index 7fbcf01664e3e563692f21c86416c81703e55e3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.06979315678278605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201905_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201905_M_GLOBAL.out deleted file mode 100644 index 4b3df765fbdc0ead541bd21a98dba5cd152b8803..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.07327383359273275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201906_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201906_D_GLOBAL.out deleted file mode 100644 index 315d902854aa741c734ef1cd454147cfd6bc3d8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.04226236740748088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201906_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201906_H_GLOBAL.out deleted file mode 100644 index f265486776b58f9682585dc0e780ed9abba814a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.059198208649953205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201906_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201906_M_GLOBAL.out deleted file mode 100644 index c12fd24f66f0d9cd22564f4d00b1a642d81c098a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.037518858909606934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201907_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201907_D_GLOBAL.out deleted file mode 100644 index 50693c7a5a0660d976e1fc437c9842cf5d7aa911..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.034163379669189455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201907_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201907_H_GLOBAL.out deleted file mode 100644 index 8922f042600e57b59002bf9abf73aa4372f4ffac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.06943510373433431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201907_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201907_M_GLOBAL.out deleted file mode 100644 index 6e5fff3d6c7451b50f795a7cd5b89c0b1fa1bd08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.06701320807139079 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201908_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201908_D_GLOBAL.out deleted file mode 100644 index 4762a4f52f56fc724a94c240c14846f7ce16b504..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.07557797431945801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201908_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201908_H_GLOBAL.out deleted file mode 100644 index e4b4a5194517f59ea4b4f3c8b04f9095897dcf8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.07377740939458212 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201908_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201908_M_GLOBAL.out deleted file mode 100644 index b576916493c8419b7fb2545fd6e5b0db0ae74a48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.07435920635859171 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201909_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201909_D_GLOBAL.out deleted file mode 100644 index 7177d7c99570ae815448c541f01efc44282ab31d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.03821537494659424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201909_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201909_H_GLOBAL.out deleted file mode 100644 index 0878232e5b654ef9c5c19bd80fa205b34ccb42b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.07190846204757691 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201909_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201909_M_GLOBAL.out deleted file mode 100644 index d80f29b566fb8febb4cc83fa16c3024573bb7a04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.06992407242457072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201910_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201910_D_GLOBAL.out deleted file mode 100644 index a653651f5776c8e650e79ca4766cea70d07b8833..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.07322022120157877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201910_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201910_H_GLOBAL.out deleted file mode 100644 index 3104d696c0575e1616722a9f13c7d6fc61bc6be2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.07113557656606039 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201910_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201910_M_GLOBAL.out deleted file mode 100644 index 2cea70d3473db3b33d4b298cbeeb00e3df1c754a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.07203598817189534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201911_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201911_D_GLOBAL.out deleted file mode 100644 index af7bc5e84dc77078106faa479a8907947e9ce949..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.07127265135447185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201911_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201911_H_GLOBAL.out deleted file mode 100644 index ef07c4806fbdaa246fc3f4c8394f6346ebf7053d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.05783909956614176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201911_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201911_M_GLOBAL.out deleted file mode 100644 index 43d6058a85adfabda7fdd30d95cd4c2c67838a0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.06853011846542359 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index 44e588c2a70d669b05960f3706fd6993c05323d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.06215427716573079 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index 19c8f8af0ebc1e4b4010bd8bbeb53d4c088f61e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.07185892264048259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index 9c35e1c48f34a643a8b1ae0d8b0b628a5d90ea33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.06736881335576375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index 7b92c189594291306597e2ecda416160e11e13f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.0676511843999227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index f71d09eb43cb275838f815a424bcaba445f3d291..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.06472452084223429 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index ec158b495554150030768acf9b02eba657063dbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.07486474911371867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index d359100f933a03755b1655448fd915f7cde12f9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.060213069121042885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index d8583c0c1ae59c0cf74669be685be66d0e861831..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.03485386371612549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index 20e2b4ddd025722f29d0d7bab9ac6e6f11630773..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.031246642271677654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index e29fac975f0473d23d0189712e117079e795e80c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.07605736255645752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index 9d6a87a7f3c8ee60fa6b641bbf92ead918f8d8d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.0744444489479065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index 6a09b64d63c4b9b5c737cd18b05d295910332463..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.07271179755528769 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index 002c050ce7d0e0628a43547852165fcb7b597000..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.07210740645726522 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index 3ab3b96cd25a473122d44f9321bd9274dc7ae17d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.07407854398091634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index 9ad521bdd50991231e249d1a615a4d946bcf3fa5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.06833709875742594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index db591303e371ded3b72a52c7ff5f44255c6f014a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.07117716868718466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index 0e87530024032335cd32cb6c45d9b5d8e970397d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.07306335767110189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_P-XYLENE/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index 4a90edfe31176f284cc17a6c9b6f7dd9a746a8f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_P-XYLENE/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.028318528334299722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_1994.out b/run/stage_logs/NAPMD_PM10/S1/0_1994.out deleted file mode 100644 index bf5bf5a483773730e88bb5440bc83b3b77b5f21a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_1994.out +++ /dev/null @@ -1,19 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1994/PM10_1994.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -325 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -51 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.08895866870880127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_1995.out b/run/stage_logs/NAPMD_PM10/S1/0_1995.out deleted file mode 100644 index bf1dba31f9250ae4fa9bc6eec4aa9b78dbe1b89f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_1995.out +++ /dev/null @@ -1,19 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1995/PM10_1995.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -325 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -51 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.17850402990976968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_1996.out b/run/stage_logs/NAPMD_PM10/S1/0_1996.out deleted file mode 100644 index 1542361a535b2c7cd754c161e130e5e1e1181ece..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_1996.out +++ /dev/null @@ -1,20 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1996/PM10_1996.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -354 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.16896571715672812 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_1997.out b/run/stage_logs/NAPMD_PM10/S1/0_1997.out deleted file mode 100644 index 07988f4d86183b7cf9d256f337d92a533d98503e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_1997.out +++ /dev/null @@ -1,21 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1997/PM10_1997.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -354 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.19045512676239013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_1998.out b/run/stage_logs/NAPMD_PM10/S1/0_1998.out deleted file mode 100644 index c5ea44eed03df9e7bd4cead3a42280fb677dd839..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_1998.out +++ /dev/null @@ -1,22 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1998/PM10_1998.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -354 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -60 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.22185248533884686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_1999.out b/run/stage_logs/NAPMD_PM10/S1/0_1999.out deleted file mode 100644 index 1c061825390604bb80fc1ca589e676f8bb62bead..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_1999.out +++ /dev/null @@ -1,23 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1999/PM10_1999.csv -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -354 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -51 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -60 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.2460684617360433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2000.out b/run/stage_logs/NAPMD_PM10/S1/0_2000.out deleted file mode 100644 index f68f07670698d8dcd23baf8456744988fa3d9441..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2000.out +++ /dev/null @@ -1,25 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2000/PM10_2000.csv -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.27208263079325357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2001.out b/run/stage_logs/NAPMD_PM10/S1/0_2001.out deleted file mode 100644 index 8e1f97dbc93159f560e0c1345fd03aab1323c85a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2001.out +++ /dev/null @@ -1,27 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2001/PM10_2001.csv -10 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -55 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.2845220724741618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2002.out b/run/stage_logs/NAPMD_PM10/S1/0_2002.out deleted file mode 100644 index aefd12b877df549bc787f5f9aff0f6a615f94f4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2002.out +++ /dev/null @@ -1,38 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2002/PM10_2002.csv -10 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -343 -- PARSING RAW DATA -350 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -55 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.369566277662913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2003.out b/run/stage_logs/NAPMD_PM10/S1/0_2003.out deleted file mode 100644 index 0b137c4577fc52809eb7290a39b06baffcb4b8db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2003.out +++ /dev/null @@ -1,38 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2003/PM10_2003.csv -10 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -344 -- PARSING RAW DATA -350 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -55 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.3788059751192729 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2004.out b/run/stage_logs/NAPMD_PM10/S1/0_2004.out deleted file mode 100644 index 6a212f323a51da2c7185e42fc7cf45c2c59f3a90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2004.out +++ /dev/null @@ -1,43 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2004/PM10_2004.csv -10 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -19 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -55 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.3905107259750366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2005.out b/run/stage_logs/NAPMD_PM10/S1/0_2005.out deleted file mode 100644 index e6e6afd1642d55e23580553b0e489c87295062bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2005.out +++ /dev/null @@ -1,39 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2005/PM10_2005.csv -10 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -55 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.3735988815625509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2006.out b/run/stage_logs/NAPMD_PM10/S1/0_2006.out deleted file mode 100644 index 1d5b513028ffb1f844f482d26067ae79f6fae268..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2006.out +++ /dev/null @@ -1,41 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2006/PM10_2006.csv -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2006/PM10_2006.csv -10 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -344 -- PARSING RAW DATA -349 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -55 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.3945470054944356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2007.out b/run/stage_logs/NAPMD_PM10/S1/0_2007.out deleted file mode 100644 index d54b1f394d61176161326dfbc655c3afcf4624be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2007.out +++ /dev/null @@ -1,42 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2007/PM10_2007.csv -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2007/PM10_2007.csv -10 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -344 -- PARSING RAW DATA -349 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -462 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -55 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.40500153303146363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2008.out b/run/stage_logs/NAPMD_PM10/S1/0_2008.out deleted file mode 100644 index 8e3a28c9d167283f6123689dd38f0faefd65571d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2008.out +++ /dev/null @@ -1,41 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2008/PM10_2008.csv -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2008/PM10_2008.csv -10 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -349 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -55 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.40110412836074827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2009.out b/run/stage_logs/NAPMD_PM10/S1/0_2009.out deleted file mode 100644 index e2ceb56a281a0bdf2001b0dbbe75870f5c39bc83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2009.out +++ /dev/null @@ -1,44 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2009/PM10_2009.csv -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2009/PM10_2009.csv -10 -- PARSING RAW DATA -11 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -345 -- PARSING RAW DATA -349 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -360 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -55 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.4025167981783549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2010.out b/run/stage_logs/NAPMD_PM10/S1/0_2010.out deleted file mode 100644 index 1a72986d47a9cebba60ff6d84f4bcb7d0e44caf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2010.out +++ /dev/null @@ -1,69 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2010/PM10_2010.csv -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2010/PM10_2010.csv -10 -- PARSING RAW DATA -100 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -116 -- PARSING RAW DATA -117 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -328 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -345 -- PARSING RAW DATA -346 -- PARSING RAW DATA -349 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -462 -- PARSING RAW DATA -48 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -55 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -68 -- PARSING RAW DATA -76 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -81 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.5026365756988526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2011.out b/run/stage_logs/NAPMD_PM10/S1/0_2011.out deleted file mode 100644 index 8b69ed4bf8dea6a3c16d0c7e889aeb414b5a596c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2011.out +++ /dev/null @@ -1,83 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2011/PM10_2011.csv -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2011/PM10_2011.csv -10 -- PARSING RAW DATA -100 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -116 -- PARSING RAW DATA -117 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -16 -- PARSING RAW DATA -17 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -25 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -328 -- PARSING RAW DATA -33 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -346 -- PARSING RAW DATA -349 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -36 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -38 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -47 -- PARSING RAW DATA -48 -- PARSING RAW DATA -49 -- PARSING RAW DATA -50 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -55 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -58 -- PARSING RAW DATA -62 -- PARSING RAW DATA -7 -- PARSING RAW DATA -76 -- PARSING RAW DATA -77 -- PARSING RAW DATA -78 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -81 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -94 -- PARSING RAW DATA -99 -- PARSING RAW DATA -0.5249300758043925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2012.out b/run/stage_logs/NAPMD_PM10/S1/0_2012.out deleted file mode 100644 index 8807068178714c865751596987390bb5d491ad37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2012.out +++ /dev/null @@ -1,89 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2012/PM10_2012.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -100 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -115 -- PARSING RAW DATA -117 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -16 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -25 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -328 -- PARSING RAW DATA -33 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -336 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -349 -- PARSING RAW DATA -35 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -36 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -38 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -47 -- PARSING RAW DATA -48 -- PARSING RAW DATA -49 -- PARSING RAW DATA -5 -- PARSING RAW DATA -50 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -58 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -7 -- PARSING RAW DATA -76 -- PARSING RAW DATA -77 -- PARSING RAW DATA -78 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -81 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -94 -- PARSING RAW DATA -99 -- PARSING RAW DATA -0.5811895330746969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2013.out b/run/stage_logs/NAPMD_PM10/S1/0_2013.out deleted file mode 100644 index c3c9dbee5c167a02010029c7f8969d097fb293e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2013.out +++ /dev/null @@ -1,85 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2013/PM10_2013.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -100 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -115 -- PARSING RAW DATA -117 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -16 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -20 -- PARSING RAW DATA -218 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -25 -- PARSING RAW DATA -26 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -328 -- PARSING RAW DATA -33 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -336 -- PARSING RAW DATA -339 -- PARSING RAW DATA -340 -- PARSING RAW DATA -349 -- PARSING RAW DATA -35 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -36 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -38 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -47 -- PARSING RAW DATA -48 -- PARSING RAW DATA -49 -- PARSING RAW DATA -5 -- PARSING RAW DATA -50 -- PARSING RAW DATA -51 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -58 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -7 -- PARSING RAW DATA -77 -- PARSING RAW DATA -78 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -99 -- PARSING RAW DATA -0.5551148692766825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2014.out b/run/stage_logs/NAPMD_PM10/S1/0_2014.out deleted file mode 100644 index e32d90047aebd5b88d5bbddb18c3972b54f1b8b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2014.out +++ /dev/null @@ -1,93 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2014/PM10_2014.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -100 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -115 -- PARSING RAW DATA -117 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -16 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -218 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -25 -- PARSING RAW DATA -26 -- PARSING RAW DATA -286 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -328 -- PARSING RAW DATA -33 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -349 -- PARSING RAW DATA -35 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -36 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -38 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -47 -- PARSING RAW DATA -48 -- PARSING RAW DATA -49 -- PARSING RAW DATA -5 -- PARSING RAW DATA -50 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -58 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -7 -- PARSING RAW DATA -77 -- PARSING RAW DATA -78 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -90 -- PARSING RAW DATA -95 -- PARSING RAW DATA -99 -- PARSING RAW DATA -0.6037322878837585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2015.out b/run/stage_logs/NAPMD_PM10/S1/0_2015.out deleted file mode 100644 index 2496d9cf8c376f082e72c18a9f4d46ffab9b413a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2015.out +++ /dev/null @@ -1,106 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2015/PM10_2015.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -100 -- PARSING RAW DATA -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -115 -- PARSING RAW DATA -117 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -16 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -218 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -25 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -273 -- PARSING RAW DATA -274 -- PARSING RAW DATA -276 -- PARSING RAW DATA -277 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -281 -- PARSING RAW DATA -286 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -31 -- PARSING RAW DATA -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -328 -- PARSING RAW DATA -33 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -349 -- PARSING RAW DATA -35 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -36 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -38 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -47 -- PARSING RAW DATA -48 -- PARSING RAW DATA -49 -- PARSING RAW DATA -5 -- PARSING RAW DATA -50 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -58 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -7 -- PARSING RAW DATA -77 -- PARSING RAW DATA -78 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -90 -- PARSING RAW DATA -93 -- PARSING RAW DATA -95 -- PARSING RAW DATA -98 -- PARSING RAW DATA -99 -- PARSING RAW DATA -0.6571796417236329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2016.out b/run/stage_logs/NAPMD_PM10/S1/0_2016.out deleted file mode 100644 index 067eae1527b5c767322855084cd101dba9eecdb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2016.out +++ /dev/null @@ -1,106 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2016/PM10_2016.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -100 -- PARSING RAW DATA -104 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -115 -- PARSING RAW DATA -117 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -16 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -218 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -25 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -273 -- PARSING RAW DATA -274 -- PARSING RAW DATA -276 -- PARSING RAW DATA -277 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -281 -- PARSING RAW DATA -285 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -325 -- PARSING RAW DATA -328 -- PARSING RAW DATA -33 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -349 -- PARSING RAW DATA -35 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -36 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -38 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -462 -- PARSING RAW DATA -47 -- PARSING RAW DATA -48 -- PARSING RAW DATA -49 -- PARSING RAW DATA -5 -- PARSING RAW DATA -50 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -53 -- PARSING RAW DATA -54 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -58 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -69 -- PARSING RAW DATA -7 -- PARSING RAW DATA -77 -- PARSING RAW DATA -78 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -85 -- PARSING RAW DATA -87 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -90 -- PARSING RAW DATA -93 -- PARSING RAW DATA -95 -- PARSING RAW DATA -98 -- PARSING RAW DATA -99 -- PARSING RAW DATA -0.638893989721934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2017.out b/run/stage_logs/NAPMD_PM10/S1/0_2017.out deleted file mode 100644 index e43742566e56ec41a2024773bf44ea6fa13d1386..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2017.out +++ /dev/null @@ -1,136 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2017/PM10_2017.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -100 -- PARSING RAW DATA -103 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -115 -- PARSING RAW DATA -117 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -16 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -218 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -24 -- PARSING RAW DATA -25 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -273 -- PARSING RAW DATA -274 -- PARSING RAW DATA -276 -- PARSING RAW DATA -277 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -281 -- PARSING RAW DATA -285 -- PARSING RAW DATA -288 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -328 -- PARSING RAW DATA -33 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -349 -- PARSING RAW DATA -35 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -36 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -38 -- PARSING RAW DATA -39 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -454 -- PARSING RAW DATA -455 -- PARSING RAW DATA -456 -- PARSING RAW DATA -457 -- PARSING RAW DATA -458 -- PARSING RAW DATA -459 -- PARSING RAW DATA -46 -- PARSING RAW DATA -460 -- PARSING RAW DATA -461 -- PARSING RAW DATA -462 -- PARSING RAW DATA -463 -- PARSING RAW DATA -465 -- PARSING RAW DATA -466 -- PARSING RAW DATA -467 -- PARSING RAW DATA -468 -- PARSING RAW DATA -469 -- PARSING RAW DATA -47 -- PARSING RAW DATA -471 -- PARSING RAW DATA -472 -- PARSING RAW DATA -473 -- PARSING RAW DATA -474 -- PARSING RAW DATA -475 -- PARSING RAW DATA -476 -- PARSING RAW DATA -477 -- PARSING RAW DATA -478 -- PARSING RAW DATA -479 -- PARSING RAW DATA -48 -- PARSING RAW DATA -480 -- PARSING RAW DATA -481 -- PARSING RAW DATA -482 -- PARSING RAW DATA -483 -- PARSING RAW DATA -484 -- PARSING RAW DATA -49 -- PARSING RAW DATA -5 -- PARSING RAW DATA -50 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -529 -- PARSING RAW DATA -53 -- PARSING RAW DATA -531 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -58 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -7 -- PARSING RAW DATA -77 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -85 -- PARSING RAW DATA -87 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -98 -- PARSING RAW DATA -99 -- PARSING RAW DATA -0.6802513599395752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2018.out b/run/stage_logs/NAPMD_PM10/S1/0_2018.out deleted file mode 100644 index be38c45f88d9fc71e8cda1cd7f072f6b9be82736..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2018.out +++ /dev/null @@ -1,115 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2018/PM10_2018.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -100 -- PARSING RAW DATA -103 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -115 -- PARSING RAW DATA -117 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -16 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -218 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -24 -- PARSING RAW DATA -25 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -273 -- PARSING RAW DATA -274 -- PARSING RAW DATA -276 -- PARSING RAW DATA -277 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -281 -- PARSING RAW DATA -288 -- PARSING RAW DATA -29 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -328 -- PARSING RAW DATA -33 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -349 -- PARSING RAW DATA -35 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -356 -- PARSING RAW DATA -36 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -370 -- PARSING RAW DATA -371 -- PARSING RAW DATA -375 -- PARSING RAW DATA -38 -- PARSING RAW DATA -39 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -457 -- PARSING RAW DATA -46 -- PARSING RAW DATA -462 -- PARSING RAW DATA -463 -- PARSING RAW DATA -465 -- PARSING RAW DATA -47 -- PARSING RAW DATA -48 -- PARSING RAW DATA -49 -- PARSING RAW DATA -5 -- PARSING RAW DATA -50 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -529 -- PARSING RAW DATA -53 -- PARSING RAW DATA -531 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -58 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -7 -- PARSING RAW DATA -72 -- PARSING RAW DATA -73 -- PARSING RAW DATA -77 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -98 -- PARSING RAW DATA -99 -- PARSING RAW DATA -0.6683472553888957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2019.out b/run/stage_logs/NAPMD_PM10/S1/0_2019.out deleted file mode 100644 index 033e1e47e2cfa6937fb22618fcb85c0e3b71587b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2019.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/PM10_2019.csv -0.32476628621419273 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2020.out b/run/stage_logs/NAPMD_PM10/S1/0_2020.out deleted file mode 100644 index 7ccc0dbaf59e6f6c33498c6f03f3fcc01a99b7db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2020.out +++ /dev/null @@ -1,166 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/PM10_2020.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -100 -- PARSING RAW DATA -103 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -115 -- PARSING RAW DATA -117 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -16 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -24 -- PARSING RAW DATA -25 -- PARSING RAW DATA -26 -- PARSING RAW DATA -270 -- PARSING RAW DATA -271 -- PARSING RAW DATA -272 -- PARSING RAW DATA -273 -- PARSING RAW DATA -274 -- PARSING RAW DATA -276 -- PARSING RAW DATA -277 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -28 -- PARSING RAW DATA -281 -- PARSING RAW DATA -288 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -328 -- PARSING RAW DATA -33 -- PARSING RAW DATA -330 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -335 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -349 -- PARSING RAW DATA -35 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -356 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -36 -- PARSING RAW DATA -360 -- PARSING RAW DATA -363 -- PARSING RAW DATA -364 -- PARSING RAW DATA -365 -- PARSING RAW DATA -366 -- PARSING RAW DATA -368 -- PARSING RAW DATA -369 -- PARSING RAW DATA -37 -- PARSING RAW DATA -370 -- PARSING RAW DATA -371 -- PARSING RAW DATA -372 -- PARSING RAW DATA -373 -- PARSING RAW DATA -374 -- PARSING RAW DATA -375 -- PARSING RAW DATA -38 -- PARSING RAW DATA -39 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -453 -- PARSING RAW DATA -454 -- PARSING RAW DATA -455 -- PARSING RAW DATA -456 -- PARSING RAW DATA -457 -- PARSING RAW DATA -458 -- PARSING RAW DATA -459 -- PARSING RAW DATA -46 -- PARSING RAW DATA -460 -- PARSING RAW DATA -461 -- PARSING RAW DATA -462 -- PARSING RAW DATA -463 -- PARSING RAW DATA -464 -- PARSING RAW DATA -465 -- PARSING RAW DATA -466 -- PARSING RAW DATA -467 -- PARSING RAW DATA -468 -- PARSING RAW DATA -469 -- PARSING RAW DATA -47 -- PARSING RAW DATA -471 -- PARSING RAW DATA -473 -- PARSING RAW DATA -474 -- PARSING RAW DATA -475 -- PARSING RAW DATA -476 -- PARSING RAW DATA -477 -- PARSING RAW DATA -478 -- PARSING RAW DATA -479 -- PARSING RAW DATA -48 -- PARSING RAW DATA -480 -- PARSING RAW DATA -481 -- PARSING RAW DATA -482 -- PARSING RAW DATA -483 -- PARSING RAW DATA -485 -- PARSING RAW DATA -486 -- PARSING RAW DATA -487 -- PARSING RAW DATA -488 -- PARSING RAW DATA -489 -- PARSING RAW DATA -49 -- PARSING RAW DATA -490 -- PARSING RAW DATA -5 -- PARSING RAW DATA -50 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -53 -- PARSING RAW DATA -530 -- PARSING RAW DATA -531 -- PARSING RAW DATA -534 -- PARSING RAW DATA -540 -- PARSING RAW DATA -543 -- PARSING RAW DATA -544 -- PARSING RAW DATA -546 -- PARSING RAW DATA -547 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -58 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -7 -- PARSING RAW DATA -70 -- PARSING RAW DATA -71 -- PARSING RAW DATA -72 -- PARSING RAW DATA -73 -- PARSING RAW DATA -77 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -81 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -98 -- PARSING RAW DATA -99 -- PARSING RAW DATA -0.7734340111414592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S1/0_2021.out b/run/stage_logs/NAPMD_PM10/S1/0_2021.out deleted file mode 100644 index d3201ef2c5cf9d27ea36c3d3d51987945da5e2d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S1/0_2021.out +++ /dev/null @@ -1,12 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2021/PM10_2021.csv -349 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -353 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -356 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -0.04599935213724772 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_100_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_100_TEOM-GR.out deleted file mode 100644 index be4d77131410e0d6583e91870186bc041336d5b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_100_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -100_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.024236087004343668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_103_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_103_TEOM-GR.out deleted file mode 100644 index 12e5c45774ca8371a6973507ee999098b3387c90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_103_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -103_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0037194569905598957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_104_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_104_TEOM-GR.out deleted file mode 100644 index 800fa6cd34d351d928907aa1aadf4ee8c9bfebfe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_104_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -104_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01159451405207316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_105_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_105_TEOM-GR.out deleted file mode 100644 index 9e6507644ed7c382110346e99f35b41312c0e6d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_105_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -105_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00985935131708781 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_107_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_107_TEOM-GR.out deleted file mode 100644 index f40189e28d20e95cd019cb785c9b67f1638e8b88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_107_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -107_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.017784082889556886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_108_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_108_TEOM-GR.out deleted file mode 100644 index 7f54adafff7669dfef70501b07bc3e940586b9c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_108_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -108_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.030174946784973143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_109_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_109_TEOM-GR.out deleted file mode 100644 index 3a310e0506fa6967e866a744aa9d4a9354bf1439..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_109_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -109_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02254250446955363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_10_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_10_TEOM-GR.out deleted file mode 100644 index 43dca13c1af80e1fbbcf453598f60c9cd2fa5736..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_10_TEOM-GR.out +++ /dev/null @@ -1,27 +0,0 @@ -10_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2001-09-06 05:00:00 2001-12-31 12:00:00 1052255820 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1052255820_1052423280.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1052423280_1052948880.npz'] -2002-12-31 13:00:00 2003-11-09 12:00:00 1052948940 1053399600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1052948940_1053399600.npz'] -2004-02-10 01:00:00 2004-12-31 12:00:00 1053532860 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1053532860_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/10_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16790415048599244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_110_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_110_TEOM-GR.out deleted file mode 100644 index 785c073f1acdfed9ad38994a270a106548cd55a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_110_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -110_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02498399019241333 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_113_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_113_TEOM-GR.out deleted file mode 100644 index 920e26b54f15793e11687c3c3e953066a355eee8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_113_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -113_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0206600824991862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_114_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_114_TEOM-GR.out deleted file mode 100644 index 6441c48591e3f5f83709da40671363f47f34aa6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_114_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -114_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.023772009213765464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_115_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_115_TEOM-GR.out deleted file mode 100644 index 0934c982facc3869f1e0dcf2209fb502f16d2356..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_115_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -115_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012858776251475017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_116_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_116_TEOM-GR.out deleted file mode 100644 index 2f67685f50745ecb5ad9cf5b9b79442db47d3406..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_116_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -116_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009564832846323649 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_117_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_117_TEOM-GR.out deleted file mode 100644 index ee2c6c71e1e205a421218a194cf158aa47c4c03c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_117_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -117_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01861406962076823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_118_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_118_TEOM-GR.out deleted file mode 100644 index 94b489eff578e414251b3bca2b5d69d2fef3f9b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_118_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -118_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.015279547373453776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_119_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_119_TEOM-GR.out deleted file mode 100644 index 3992761fde04fed024b69dfc27fef9e069a3d2d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_119_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -119_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02259060541788737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_11_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_11_TEOM-GR.out deleted file mode 100644 index b6a177b4a7ba0f7277138c03c51f6bdca4d18a25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_11_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -11_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02491150697072347 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_120_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_120_TEOM-GR.out deleted file mode 100644 index 20025f25701de389bf70426db42fba8798cf166d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_120_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -120_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01269609530766805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_12_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_12_TEOM-GR.out deleted file mode 100644 index e2e826946d47adabc111aac792a23108969bbc02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_12_TEOM-GR.out +++ /dev/null @@ -1,28 +0,0 @@ -12_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2000-07-10 12:00:00 2000-12-31 12:00:00 1051647120 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1051647120_1051897680.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-27 13:00:00 1052423280 1052943180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1052423280_1052943180.npz'] -2003-01-16 00:00:00 2003-12-31 12:00:00 1052971200 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1052971200_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/12_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.163530965646108 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_13_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_13_TEOM-GR.out deleted file mode 100644 index 0f9e9fff337072ef03e9b31c2636ac0a1a725919..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_13_TEOM-GR.out +++ /dev/null @@ -1,34 +0,0 @@ -13_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-09-11 10:00:00 1994-12-31 12:00:00 1048581240 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1048581240_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1049793840_1050319440.npz'] -1997-12-31 13:00:00 1998-12-31 12:00:00 1050319500 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1050319500_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-24 13:00:00 1052423280 1052938860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1052423280_1052938860.npz'] -2003-01-28 12:00:00 2003-12-31 12:00:00 1052989200 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1052989200_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 11:00:00 1056105360 1056630900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1056105360_1056630900.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/13_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.20142383575439454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_14_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_14_TEOM-GR.out deleted file mode 100644 index eb775340a325048de7eadc8dbf6b8594c283d983..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_14_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -14_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02411993344624837 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_15_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_15_TEOM-GR.out deleted file mode 100644 index fc55d3993fef20a9394d47e295c9577815aef8f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_15_TEOM-GR.out +++ /dev/null @@ -1,34 +0,0 @@ -15_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1048741200_1049266800.npz'] -1995-12-31 13:00:00 1996-12-31 12:00:00 1049266860 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1049266860_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1052948880_1053474480.npz'] -2003-12-31 14:00:00 2004-12-31 12:00:00 1053474600 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1053474600_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/15_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.20546348889668783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_16_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_16_TEOM-GR.out deleted file mode 100644 index e580652fd7b92edb0544dd47d10182997739737e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_16_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -16_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.022076308727264404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_17_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_17_TEOM-GR.out deleted file mode 100644 index 5db6bcf24d0c56bd4dd60a9be9963fade3ba490d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_17_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -17_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.023826984564463298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_18_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_18_TEOM-GR.out deleted file mode 100644 index 7bda7df05c252b2e5373e4f0f0a20d6bf0659349..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_18_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -18_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.019642114639282227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_19_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_19_TEOM-GR.out deleted file mode 100644 index a97214e5648e6ba9254be9c19c8176d1349d9b88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_19_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -19_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.025819702943166097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_1_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_1_TEOM-GR.out deleted file mode 100644 index 0c3fd73aff2ae598a801bef5267ebfc42c38264b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_1_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -1_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.017444594701131185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_20_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_20_TEOM-GR.out deleted file mode 100644 index ebfc74f3d0fd0d50a387c78e70dd0cd109df5fd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_20_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -20_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016204353173573813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_218_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_218_TEOM-GR.out deleted file mode 100644 index fb4fc63e1be0ffc6c2d65a3d6a58850c22e23679..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_218_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -218_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020069825649261474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_21_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_21_TEOM-GR.out deleted file mode 100644 index 3a49076b4dcbad18d9d0d14996a4166293b18f1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_21_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -21_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.015884069601694743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_22_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_22_TEOM-GR.out deleted file mode 100644 index 6707d0418106c388e02096640b332486acd36ccc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_22_TEOM-GR.out +++ /dev/null @@ -1,25 +0,0 @@ -22_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2003-01-17 05:00:00 2003-12-31 12:00:00 1052972940 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1052972940_1053474480.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/22_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1768871029218038 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_23_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_23_TEOM-GR.out deleted file mode 100644 index 291a53ae7df1062ab23e26da9272a2aa1b22d1c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_23_TEOM-GR.out +++ /dev/null @@ -1,34 +0,0 @@ -23_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-12-23 13:00:00 1994-12-31 12:00:00 1048729740 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1048729740_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-10-16 02:00:00 1048741200 1049156760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1048741200_1049156760.npz'] -1996-08-19 13:00:00 1996-12-31 12:00:00 1049600940 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1049600940_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/23_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.19599918921788534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_24_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_24_TEOM-GR.out deleted file mode 100644 index eb64cf3dc1c57633b911adc45057a1b113a3df12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_24_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -24_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01188663641611735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_25_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_25_TEOM-GR.out deleted file mode 100644 index dadafe8f8d8524e3ef1717c83844117d74af9ff6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_25_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -25_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02073479493459066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_26_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_26_TEOM-GR.out deleted file mode 100644 index 03d2102ed269a9e70fee8af53061c98e40550aa5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_26_TEOM-GR.out +++ /dev/null @@ -1,24 +0,0 @@ -26_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2004-05-30 12:00:00 2004-12-31 12:00:00 1053691920 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1053691920_1054001520.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/26_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.17479076385498046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_270_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_270_TEOM-GR.out deleted file mode 100644 index 9efb9982cb0560eb895a9f7d3105d8ec57b42151..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_270_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -270_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.014185814062754314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_271_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_271_TEOM-GR.out deleted file mode 100644 index 6b0eff3b47b91bfe7c0dbe2e7c89f389d9d71bdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_271_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -271_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011103018124898275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_272_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_272_TEOM-GR.out deleted file mode 100644 index 262fe5b01542a192a4dc50c6b555802de84e3082..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_272_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -272_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013575208187103272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_273_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_273_TEOM-GR.out deleted file mode 100644 index d216d18ab7f5065d2c22f48f7a0d114341a5dde3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_273_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -273_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.015787939230600994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_274_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_274_TEOM-GR.out deleted file mode 100644 index ce6d47db8dce3b5248f1a2460b85aca16a528a6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_274_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -274_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01659946044286092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_276_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_276_TEOM-GR.out deleted file mode 100644 index 1ebd3773874373b3ff906c14be42bd994f5282d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_276_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -276_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009936062494913737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_277_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_277_TEOM-GR.out deleted file mode 100644 index 0011f7f53e8712ea2ed819679a9d7e02898669d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_277_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -277_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012503127257029215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_278_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_278_TEOM-GR.out deleted file mode 100644 index 785df06a517b6a4cb81787edf93c4df78768b476..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_278_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -278_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.015279682477315266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_279_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_279_TEOM-GR.out deleted file mode 100644 index 05c74a15920e2a7747eb32ee0f520dfe79566153..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_279_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -279_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012737596035003662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_281_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_281_TEOM-GR.out deleted file mode 100644 index 19d7904ec59e7cc59b649733c9c3cbc7cab280b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_281_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -281_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013764468828837077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_285_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_285_TEOM-GR.out deleted file mode 100644 index aee8106412cbd034b9e7a7a4ef20f6f1b9d6dd5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_285_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -285_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0022159934043884276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_286_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_286_TEOM-GR.out deleted file mode 100644 index df50f22213c16d73ce9a8324840c2b9a63040da1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_286_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -286_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009390485286712647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_288_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_288_TEOM-GR.out deleted file mode 100644 index 1af2f19bfb20db1c2c0ff0e7c6def25ed1a4c43b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_288_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -288_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00826250712076823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_28_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_28_TEOM-GR.out deleted file mode 100644 index 3aec1451ea4a557fcd776354371fe2262c5f24c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_28_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -28_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.021042970816294353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_29_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_29_TEOM-GR.out deleted file mode 100644 index 6a21aa5f6dff40436f7fd63c66a1ef7975111cb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_29_TEOM-GR.out +++ /dev/null @@ -1,32 +0,0 @@ -29_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-05-23 03:00:00 1994-12-31 12:00:00 1048420980 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1048420980_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 11:00:00 1049266800 1049793780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1049266800_1049793780.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-08-24 05:00:00 1050319440 1050658860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1050319440_1050658860.npz'] -1999-05-31 07:00:00 1999-12-31 12:00:00 1051062180 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1051062180_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-30 22:00:00 1051897680 1052422440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1051897680_1052422440.npz'] -2002-01-02 04:00:00 2002-12-31 12:00:00 1052425680 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1052425680_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-02-09 12:00:00 1054001520 1054059120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1054001520_1054059120.npz'] -2007-05-31 13:00:00 2007-12-31 11:00:00 1055270220 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1055270220_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1055270220_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/29_TEOM-GR_1060838700_1061364300.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.11690270105997722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_2_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_2_TEOM-GR.out deleted file mode 100644 index 071340b64dd0c7196a1be237eec47115a1568009..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_2_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -2_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020197951793670656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_30_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_30_TEOM-GR.out deleted file mode 100644 index 75f84828197b9fe45023d04f2911348d041389c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_30_TEOM-GR.out +++ /dev/null @@ -1,34 +0,0 @@ -30_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-29 11:00:00 1048741200 1049263860 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1048741200_1049263860.npz'] -1996-01-03 06:00:00 1996-12-31 12:00:00 1049270760 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1049270760_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-28 19:00:00 1058734860 1059256500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1058734860_1059256500.npz'] -2015-01-06 04:00:00 2015-12-31 12:00:00 1059268560 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1059268560_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1060838700_1061364300.npz'] -2020-01-02 00:00:00 2020-12-31 13:00:00 1061892000 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/30_TEOM-GR_1061892000_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1841143568356832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_31_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_31_TEOM-GR.out deleted file mode 100644 index 1815ac58932bd77e72eb2d9d8db83c1a1742b292..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_31_TEOM-GR.out +++ /dev/null @@ -1,18 +0,0 @@ -31_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2004-10-30 12:00:00 2004-12-31 12:00:00 1053912240 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1053912240_1054001520.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-07-23 23:00:00 1057682160 1057978020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1057682160_1057978020.npz'] -2015-08-19 01:00:00 2015-08-19 19:00:00 1059592380 1059593460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/31_TEOM-GR_1059592380_1059593460.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.15521776676177979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_324_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_324_TEOM-GR.out deleted file mode 100644 index 12134db07ef663c95ccc871b0f93e3a60279b8ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_324_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -324_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.029925541083017985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_325_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_325_TEOM-GR.out deleted file mode 100644 index 65881cedf76c683a35c8d5a71c203a913d9757bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_325_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -325_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.047809259096781416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_327_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_327_TEOM-GR.out deleted file mode 100644 index 43c329cf503710baa67ab36379ec51a3f8afe658..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_327_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -327_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.029646074771881102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_328_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_328_TEOM-GR.out deleted file mode 100644 index f2f549f1753c2d938ecde7902ce927dcd6028be2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_328_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -328_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.030865693092346193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_32_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_32_TEOM-GR.out deleted file mode 100644 index a761107b8cb2a8f36bcc36a9339d3fc0c5c13cd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_32_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -32_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011649584770202637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_330_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_330_TEOM-GR.out deleted file mode 100644 index 97ed07f6f8d96d15f554ed934c41abb4362e7479..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_330_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -330_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.040367499987284346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_331_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_331_TEOM-GR.out deleted file mode 100644 index 5df081036637f2ea85b72ad030786d4eed160024..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_331_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -331_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03989353577295939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_332_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_332_TEOM-GR.out deleted file mode 100644 index 28b04a0b619be42c00c0e95a64dca7174765984d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_332_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -332_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04251533349355062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_335_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_335_TEOM-GR.out deleted file mode 100644 index 8af55b5824518639d9a12af97f15f65fe4fcd548..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_335_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -335_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04551568826039632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_336_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_336_TEOM-GR.out deleted file mode 100644 index 1ad50b410e2e3238845d8e5f17c85e8501e58e5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_336_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -336_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004462583859761556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_339_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_339_TEOM-GR.out deleted file mode 100644 index 0245875dd7a30fa5e72e78d491ac73ecc4d0a48f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_339_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -339_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.035001055399576826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_33_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_33_TEOM-GR.out deleted file mode 100644 index 7f98d6e75a3a019f07d4bcf3574542853a7c1bee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_33_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -33_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.021655356884002684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_340_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_340_TEOM-GR.out deleted file mode 100644 index 08cedde7d9d76c62638842fd73d2ed69127a975f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_340_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -340_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04854129950205485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_342_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_342_TEOM-GR.out deleted file mode 100644 index b4b9ca1f24dd7cd254f6c806cb8b2b85a76f2420..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_342_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -342_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008637738227844239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_343_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_343_TEOM-GR.out deleted file mode 100644 index cd6a8b7ae190e7c661fad71e1841ed34009d9c00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_343_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -343_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006461350123087565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_344_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_344_TEOM-GR.out deleted file mode 100644 index ab7681ea2e76c9bb772ffac4d5b4716e66f6a865..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_344_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -344_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0032990097999572752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_345_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_345_TEOM-GR.out deleted file mode 100644 index a059c971697ce150fff2b88765ac68f57b227a46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_345_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -345_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0032501379648844403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_346_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_346_TEOM-GR.out deleted file mode 100644 index fd1f8f3938299618d85e1f8cf8db1d94bd9a84ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_346_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -346_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0037995139757792157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_349_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_349_TEOM-GR.out deleted file mode 100644 index 54543246a1e2364a3c783d3fdf04201233de617d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_349_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -349_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03395941257476807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_34_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_34_TEOM-GR.out deleted file mode 100644 index 635dc1ac32123f80634fb882f6194ccb347a48e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_34_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -34_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.014597527186075846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_350_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_350_TEOM-GR.out deleted file mode 100644 index e9ea93228d9f5d1b5b573207549c7b65a011159e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_350_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -350_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05569880803426107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_351_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_351_TEOM-GR.out deleted file mode 100644 index af5fd8bfc4e061d45df3d04644cb3877dc6edd0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_351_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -351_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0021959145863850913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_352_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_352_TEOM-GR.out deleted file mode 100644 index f801ce1c0ed1ced224d97407b5b428aa03c4f93e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_352_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -352_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04846559365590413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_353_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_353_TEOM-GR.out deleted file mode 100644 index efea22d37125a2129b37a7eb4fb9e5ee52f921cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_353_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -353_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.030098275343577067 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_354_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_354_TEOM-GR.out deleted file mode 100644 index 789d221d35ec699d1c597ff971e2477fb78d16c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_354_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -354_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05788363615671794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_355_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_355_TEOM-GR.out deleted file mode 100644 index 7a1f319fcfcece25a8bb8b00b51d5558c21ae4a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_355_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -355_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03092625141143799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_356_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_356_TEOM-GR.out deleted file mode 100644 index abc267432672ccbc32fe9a051879d752e5c0ab7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_356_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -356_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012009302775065104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_357_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_357_TEOM-GR.out deleted file mode 100644 index db6c7cc8fa1ca07ef967bf360291698a4d6c029c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_357_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -357_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005888823668162028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_358_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_358_TEOM-GR.out deleted file mode 100644 index d3ba11f417d3409d7506de13f01368969da4d2d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_358_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -358_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00628280242284139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_35_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_35_TEOM-GR.out deleted file mode 100644 index ab59a3d4d7e7a21571b902daf23c8a2c7341ee23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_35_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -35_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01984861691792806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_360_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_360_TEOM-GR.out deleted file mode 100644 index ec98e3f67280521ee317ce2b6c881d774293407c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_360_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -360_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0496768593788147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_363_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_363_TEOM-GR.out deleted file mode 100644 index 5a420e897d538a807bb3085e749a8574a7a6636b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_363_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -363_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0026415268580118815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_364_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_364_TEOM-GR.out deleted file mode 100644 index 167361783b6ae8872197e6e417bfc318fd106cb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_364_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -364_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0010443607966105144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_365_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_365_TEOM-GR.out deleted file mode 100644 index 00b63ed79e030c55465c9d06fd5de954be7cc172..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_365_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -365_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00272673765818278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_366_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_366_TEOM-GR.out deleted file mode 100644 index 75a0c1a7ebf78d0f20215932d5684e16bff3ea53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_366_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -366_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002742473284403483 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_368_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_368_TEOM-GR.out deleted file mode 100644 index 9f6993cd217e7e2aa37975fd0c3dd11a2c5296e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_368_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -368_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.001651918888092041 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_369_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_369_TEOM-GR.out deleted file mode 100644 index 72a28f096855c657138d15871ebe20a8a3768ae1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_369_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -369_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0015034635861714682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_36_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_36_TEOM-GR.out deleted file mode 100644 index aa30ab8d70e4b3aaef1c3d182af28538b8755c98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_36_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -36_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.022243924935658774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_370_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_370_TEOM-GR.out deleted file mode 100644 index 023a1aee81ac1f7a003bc492896a11b9329fe031..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_370_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -370_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003814538319905599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_371_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_371_TEOM-GR.out deleted file mode 100644 index 219fc55fa116ece925c4848b4af508d5a5977e70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_371_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -371_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004334922631581624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_372_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_372_TEOM-GR.out deleted file mode 100644 index 8a65ecaaa41e38d8df928c02de746033b405f48e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_372_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -372_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0025461554527282716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_373_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_373_TEOM-GR.out deleted file mode 100644 index 0a7aba91082d779bc5834e6866c18dabf261d2d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_373_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -373_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00834062099456787 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_374_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_374_TEOM-GR.out deleted file mode 100644 index b6d5c60debc6a6cb999775443d476d52cbee7a25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_374_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -374_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002351991335550944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_375_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_375_TEOM-GR.out deleted file mode 100644 index e1af89adedb6908303dabff3cbdb147ffb937caa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_375_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -375_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010883831977844238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_37_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_37_TEOM-GR.out deleted file mode 100644 index 404d1bcb99c5929d37173b46618090c65f6b1030..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_37_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -37_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02302209138870239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_38_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_38_TEOM-GR.out deleted file mode 100644 index e495939f85a0dd58e5720c31ff1754fd1898ae1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_38_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -38_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02118705908457438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_39_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_39_TEOM-GR.out deleted file mode 100644 index 346ca40358e92cbc569088b9c08a37197d284e32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_39_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -39_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005668854713439942 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_3_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_3_TEOM-GR.out deleted file mode 100644 index c75968a2c58c46af8d37b2eb907ba4a6a2f724bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_3_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -3_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020674912134806316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_40_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_40_TEOM-GR.out deleted file mode 100644 index 31722b4061c215e774955474a885246ca886a324..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_40_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -40_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.036617493629455565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_41_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_41_TEOM-GR.out deleted file mode 100644 index 01c4e62a0861030eef5e04fea06e3b0a85495a6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_41_TEOM-GR.out +++ /dev/null @@ -1,24 +0,0 @@ -41_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2004-05-14 05:00:00 2004-12-31 12:00:00 1053668460 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1053668460_1054001520.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/41_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.17017521858215331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_42_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_42_TEOM-GR.out deleted file mode 100644 index 669e81f268f69f2541c0608d5a5ec01255d4f4dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_42_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -42_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012280535697937012 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_43_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_43_TEOM-GR.out deleted file mode 100644 index 3433d1187d63c202f6bd4d031bb27cea372f6085..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_43_TEOM-GR.out +++ /dev/null @@ -1,21 +0,0 @@ -43_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2007-02-26 06:00:00 2007-12-31 11:00:00 1055134440 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1055134440_1055578320.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1055134440_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-12 20:00:00 1057156560 1057655280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1057156560_1057655280.npz'] -2012-01-09 01:00:00 2012-12-31 12:00:00 1057694460 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1057694460_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/43_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.13375966548919677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_44_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_44_TEOM-GR.out deleted file mode 100644 index bd7bbb5bf339553bdd83a8d85214bda24775d509..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_44_TEOM-GR.out +++ /dev/null @@ -1,34 +0,0 @@ -44_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-09-12 05:00:00 1994-10-31 12:00:00 1048582380 1048653360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1048582380_1048653360.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1995-01-24 13:00:00 1995-12-18 21:00:00 1048775820 1049248620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1048775820_1049248620.npz'] -1995-12-31 12:00:00 1996-12-31 11:00:00 1049266800 1049793780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1049266800_1049793780.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-20 18:00:00 1051897680 1052407800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1051897680_1052407800.npz'] -2002-01-03 04:00:00 2002-12-31 12:00:00 1052427120 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1052427120_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/44_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.20959546168645224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_453_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_453_TEOM-GR.out deleted file mode 100644 index 86ac2e51c936847fc8db1e9d59de0200e11f8bbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_453_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -453_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002784427007039388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_454_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_454_TEOM-GR.out deleted file mode 100644 index 4f987681ba8526478551176014098fb1faab894c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_454_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -454_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003070231278737386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_455_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_455_TEOM-GR.out deleted file mode 100644 index dc6602e6a7e92efd6ed3eeaf25bdc833610b2ffa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_455_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -455_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004882299900054931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_456_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_456_TEOM-GR.out deleted file mode 100644 index 6bca2a9b8912398ee2da737d64accd8fae67adce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_456_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -456_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00438159704208374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_457_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_457_TEOM-GR.out deleted file mode 100644 index bb50dcd346a4c86250f1a8d89f3c4d54f10abb82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_457_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -457_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010515129566192627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_458_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_458_TEOM-GR.out deleted file mode 100644 index 730a0bd400e5ee23b6fe5070738023244bbb8cc5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_458_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -458_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009603774547576905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_459_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_459_TEOM-GR.out deleted file mode 100644 index fc4057f51761fe2c55508dd10fa39cc39da9625a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_459_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -459_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.001804967721303304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_45_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_45_TEOM-GR.out deleted file mode 100644 index 2f42ca5bbb1ff7c1929589baacb8e2f305918e77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_45_TEOM-GR.out +++ /dev/null @@ -1,34 +0,0 @@ -45_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-12-31 12:00:00 1048215660 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1048215660_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-29 04:00:00 1050319440 1050841680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1050319440_1050841680.npz'] -1999-01-04 03:00:00 1999-12-31 12:00:00 1050850260 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1050850260_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-29 22:00:00 1051897680 1052421000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1051897680_1052421000.npz'] -2002-01-02 22:00:00 2002-12-29 21:00:00 1052426760 1052946540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1052426760_1052946540.npz'] -2003-01-07 05:00:00 2003-12-31 12:00:00 1052958540 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1052958540_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 08:00:00 1054001520 1054526880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1054001520_1054526880.npz'] -2005-12-31 12:00:00 2006-12-29 03:00:00 1054527120 1055049300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1054527120_1055049300.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 11:00:00 1057156560 1057682100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1057156560_1057682100.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/45_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1984983762105306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_460_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_460_TEOM-GR.out deleted file mode 100644 index 9e07475ecf8a880091955427b5139af87f727dda..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_460_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -460_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.001750171184539795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_461_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_461_TEOM-GR.out deleted file mode 100644 index 0103a4008692a3320c8dfd29cab5fa5dff064a29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_461_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -461_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002336891492207845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_462_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_462_TEOM-GR.out deleted file mode 100644 index 160ec083f567db8d31640ee0ced4a16e2a4ac92d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_462_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -462_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012285256385803222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_463_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_463_TEOM-GR.out deleted file mode 100644 index eaf0050b559ec7068fbfcc32800fa6d75ff95324..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_463_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -463_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010895208517710368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_464_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_464_TEOM-GR.out deleted file mode 100644 index abfa1f3200c83b0f2d0f82ce6646b7d398d1d9c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_464_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -464_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0022740761439005532 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_465_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_465_TEOM-GR.out deleted file mode 100644 index 80531c2e8a45640921ae07b6a897f960ae351ab4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_465_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -465_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005370044708251953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_466_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_466_TEOM-GR.out deleted file mode 100644 index b5447e80293e779f37b373747b8f10ceb0619f30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_466_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -466_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008450678984324137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_467_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_467_TEOM-GR.out deleted file mode 100644 index d4c0482969c81a5d6c58b14d754ee54687b88933..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_467_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -467_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003537710507710775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_468_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_468_TEOM-GR.out deleted file mode 100644 index 5e81653b87f28a3f1b27e6d0b0bdee3e909f9bbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_468_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -468_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0015354792277018229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_469_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_469_TEOM-GR.out deleted file mode 100644 index 06ada560216a8ee7d24123a9cfca926eb41d0cea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_469_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -469_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0036849061648050944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_46_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_46_TEOM-GR.out deleted file mode 100644 index 6637ce61ac41a0383b2cdbc36940aa998533eeea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_46_TEOM-GR.out +++ /dev/null @@ -1,25 +0,0 @@ -46_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2003-11-20 00:00:00 2003-12-31 12:00:00 1053414720 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1053414720_1053474480.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 03:00:00 1059786000 1060312500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1059786000_1060312500.npz'] -2017-01-03 01:00:00 2017-12-31 12:00:00 1060316700 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1060316700_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/46_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.15636630058288575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_471_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_471_TEOM-GR.out deleted file mode 100644 index 189263cadaeac134522104e12bfb88ba7ec2d1d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_471_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -471_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0020450472831726072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_473_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_473_TEOM-GR.out deleted file mode 100644 index baf13c72ba44c7341ca0901c84de9b14a19b106d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_473_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -473_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002011684576670329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_474_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_474_TEOM-GR.out deleted file mode 100644 index ff9e66db070dfdda8c9a00c30e6627ade0663c76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_474_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -474_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004900582631429036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_475_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_475_TEOM-GR.out deleted file mode 100644 index 6be37430fdc413212e2795e41f26558c5b7d771c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_475_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -475_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0023052295049031577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_476_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_476_TEOM-GR.out deleted file mode 100644 index f97af2c6fa0c1890153b98eaf123cc7c5f530039..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_476_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -476_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008416624863942464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_477_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_477_TEOM-GR.out deleted file mode 100644 index 8c771cd4d76ff26c78d5c4feb44c31912da69cef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_477_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -477_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002017652988433838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_478_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_478_TEOM-GR.out deleted file mode 100644 index 7f36829d25695555f28ba4660ef2889719ed6049..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_478_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -478_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0033458590507507322 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_479_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_479_TEOM-GR.out deleted file mode 100644 index ddd97a9f2189f67852092dffd4bc340011821f78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_479_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -479_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009876962502797444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_47_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_47_TEOM-GR.out deleted file mode 100644 index d13001bc5d2975ef939435dbce1b23dce88fd0ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_47_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -47_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020866501331329345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_480_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_480_TEOM-GR.out deleted file mode 100644 index afe1f3e485ca164cbcb4707cb0e7a1d19b734025..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_480_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -480_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007853456338246663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_481_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_481_TEOM-GR.out deleted file mode 100644 index c2475f7a43096cbaa75589dd1a691ff32d63b141..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_481_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -481_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007707424958546956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_482_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_482_TEOM-GR.out deleted file mode 100644 index 72fe872087c6d4e9235d168e374d0ebe23073eb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_482_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -482_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0034638683001200357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_483_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_483_TEOM-GR.out deleted file mode 100644 index bc4fbd848a30468116e1f08bd17b72aa5598679f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_483_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -483_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003968751430511475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_485_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_485_TEOM-GR.out deleted file mode 100644 index 2ec6688044667aef0ba357474332bdd0e6af8858..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_485_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -485_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0038491566975911457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_486_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_486_TEOM-GR.out deleted file mode 100644 index a8ab8cfb1f36b149863d31f735e27b18dc6ef098..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_486_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -486_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003733364741007487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_487_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_487_TEOM-GR.out deleted file mode 100644 index 712ff472e1152f17a3ad3dcb8718b599aeb9b029..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_487_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -487_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002805646260579427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_488_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_488_TEOM-GR.out deleted file mode 100644 index 8d056783a01ed4b6dc1449f414485dccd5b730fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_488_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -488_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006608132521311442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_489_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_489_TEOM-GR.out deleted file mode 100644 index 8ba1765d9bbcd1fc4b16d7946afa58a2202d697f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_489_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -489_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003888404369354248 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_48_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_48_TEOM-GR.out deleted file mode 100644 index 03fceeceaf7e9827fa41afca2ead44d9e1fa14a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_48_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -48_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.021104780832926433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_490_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_490_TEOM-GR.out deleted file mode 100644 index 720377d9e60561cc5bfe8994d77f94397bd9a758..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_490_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -490_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007797674338022868 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_49_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_49_TEOM-GR.out deleted file mode 100644 index ffb0e733418deecfd2c6acea8283b3694ac74537..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_49_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -49_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.027495773633321126 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_4_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_4_TEOM-GR.out deleted file mode 100644 index 31b59e819e5a5122838aac4e791eb383c64f33a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_4_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -4_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.017989957332611085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_50_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_50_TEOM-GR.out deleted file mode 100644 index 209151f12b1cac155caddc04b1d2d006cd778617..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_50_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -50_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020473321278889973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_51_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_51_TEOM-GR.out deleted file mode 100644 index 0b71e5913a0d7109c8fe1868823347f40a55b367..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_51_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -51_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.07113380829493204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_529_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_529_TEOM-GR.out deleted file mode 100644 index 2208d78d49c4df4d0cb91d409c1c4230e4aa2c57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_529_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -529_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005092426141103109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_52_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_52_TEOM-GR.out deleted file mode 100644 index 4f1bab38b23d0686fd7341c78d6fdc617ef147a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_52_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -52_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.014929195245107016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_530_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_530_TEOM-GR.out deleted file mode 100644 index 237019f6a83c6e6857a17a71934dc2c50a856278..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_530_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -530_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0012695789337158203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_531_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_531_TEOM-GR.out deleted file mode 100644 index 002db22c7b430fe29767cd1d5149a1b104e4b1ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_531_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -531_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006792048613230388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_534_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_534_TEOM-GR.out deleted file mode 100644 index c812ab874e03cbf50ebb12f1dc05db15959d2289..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_534_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -534_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0018441557884216308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_53_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_53_TEOM-GR.out deleted file mode 100644 index 82127cad7be2be8eaa5a42d1e54388cd5c21c6eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_53_TEOM-GR.out +++ /dev/null @@ -1,28 +0,0 @@ -53_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2000-10-12 12:00:00 2000-12-31 12:00:00 1051782480 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1051782480_1051897680.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-20 03:00:00 1053474540 1053985140 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1053474540_1053985140.npz'] -2005-01-12 07:00:00 2005-12-08 02:00:00 1054018500 1054493400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1054018500_1054493400.npz'] -2006-02-07 21:00:00 2006-12-31 12:00:00 1054582380 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1054582380_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/53_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.13146040042241414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_540_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_540_TEOM-GR.out deleted file mode 100644 index 8b62ee283d4fdee3e81896301ca9aa6509baa46c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_540_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -540_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0009103695551554362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_543_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_543_TEOM-GR.out deleted file mode 100644 index 1d7016096975d7c8d11af0c5dca0b61ae6c21fbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_543_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -543_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0009840846061706543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_546_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_546_TEOM-GR.out deleted file mode 100644 index 4187f22b2a62bc82e23a7de5a73011d1bb704c3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_546_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -546_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0013516664505004883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_54_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_54_TEOM-GR.out deleted file mode 100644 index 34755c9e44e47eabdaabbc071da913eab12e4c19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_54_TEOM-GR.out +++ /dev/null @@ -1,29 +0,0 @@ -54_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-05-07 22:00:00 1996-12-31 12:00:00 1049451720 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1049451720_1049793840.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-28 23:00:00 1051897680 1052419620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1051897680_1052419620.npz'] -2002-01-02 05:00:00 2002-12-31 12:00:00 1052425740 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1052425740_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-22 23:00:00 1058209200 1058722500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1058209200_1058722500.npz'] -2014-01-06 02:00:00 2014-12-31 12:00:00 1058742840 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1058742840_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-11-16 21:00:00 1059786000 1060248780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/54_TEOM-GR_1059786000_1060248780.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.18143864075342814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_55_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_55_TEOM-GR.out deleted file mode 100644 index 405c2dc0897219b3478bb33ac1a5e3ec6224ba6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_55_TEOM-GR.out +++ /dev/null @@ -1,19 +0,0 @@ -55_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2001-09-05 08:00:00 2001-12-31 12:00:00 1052254560 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1052254560_1052423280.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1052423280_1052948880.npz'] -2002-12-31 13:00:00 2003-12-31 12:00:00 1052948940 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1052948940_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-10-04 23:00:00 1057156560 1057556100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/55_TEOM-GR_1057156560_1057556100.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1459685762723287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_56_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_56_TEOM-GR.out deleted file mode 100644 index 7ba8df2622cc10041ba73579fd06739ddb44351c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_56_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -56_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.025919771194458006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_57_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_57_TEOM-GR.out deleted file mode 100644 index 18cd1de162c311179fdadac80944bdf5f3c88163..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_57_TEOM-GR.out +++ /dev/null @@ -1,34 +0,0 @@ -57_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-02-01 02:00:00 1994-12-31 12:00:00 1048261080 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1048261080_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1048741200_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/57_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.22969531218210856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_58_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_58_TEOM-GR.out deleted file mode 100644 index 7f8eca8e4119bfc51efc0f373bfc86f5a4515fec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_58_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -58_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.019221349557240804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_59_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_59_TEOM-GR.out deleted file mode 100644 index d013de133ca948c19778c72c9cdf070ab4de26ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_59_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -59_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.029963350296020506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_5_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_5_TEOM-GR.out deleted file mode 100644 index 36b16db6a899a2a2a5a19b9eda55d1fc9774c8b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_5_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -5_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.017392488320668538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_60_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_60_TEOM-GR.out deleted file mode 100644 index 05ad49919757e70f84ebbdeef10846aabb20405a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_60_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -60_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0019064784049987794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_61_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_61_TEOM-GR.out deleted file mode 100644 index 48483ed260ac3513da9b6a0fda50485aa0aa83f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_61_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -61_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02381972074508667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_62_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_62_TEOM-GR.out deleted file mode 100644 index 39b38ccc8f24db407ca956e05f5458ef33f32a85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_62_TEOM-GR.out +++ /dev/null @@ -1,34 +0,0 @@ -62_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-02-14 03:00:00 1994-12-31 12:00:00 1048279860 1048741200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1048279860_1048741200.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 12:00:00 1995-12-31 12:00:00 1048741200 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1048741200_1049266800.npz'] -1996-01-02 04:00:00 1996-12-31 12:00:00 1049269200 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1049269200_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 03:00:00 1059786000 1060312500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1059786000_1060312500.npz'] -2017-01-03 01:00:00 2017-12-31 12:00:00 1060316700 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1060316700_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/62_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.18712375164031983 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_63_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_63_TEOM-GR.out deleted file mode 100644 index 398a69acb48f4356725f17c2597b5fc7fed44f18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_63_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -63_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02451190153757731 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_64_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_64_TEOM-GR.out deleted file mode 100644 index e8b1e9c1672d2933e937585c5c5e7450159bb0ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_64_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -64_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01801526149113973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_65_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_65_TEOM-GR.out deleted file mode 100644 index abf2fd0e0f4748fec19ece0db68add4a8f957082..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_65_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -65_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012562298774719238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_68_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_68_TEOM-GR.out deleted file mode 100644 index b917e5a7a73a8853009c05f6a7a6c71f7b43d46c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_68_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -68_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0029780069986979165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_69_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_69_TEOM-GR.out deleted file mode 100644 index c8f39df63db98e1254808a213537687136c9ff42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_69_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -69_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0015087127685546875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_6_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_6_TEOM-GR.out deleted file mode 100644 index 3b3e74472f67efe16502ba65b281b70a05967bca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_6_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -6_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00629119873046875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_70_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_70_TEOM-GR.out deleted file mode 100644 index 4e28f0acfe18b180cb151b8e297ddd618dc66bb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_70_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -70_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0023985942204793292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_71_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_71_TEOM-GR.out deleted file mode 100644 index 587e7c6137057c44f76f599d13e1fb17f2bffa36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_71_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -71_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0019263585408528646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_72_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_72_TEOM-GR.out deleted file mode 100644 index 7e8158d122138b12be60a5e6084d1f260dce18e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_72_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -72_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002227636178334554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_73_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_73_TEOM-GR.out deleted file mode 100644 index e9c720f406a8bbf937b70f63c332629678149548..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_73_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -73_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006352337201436361 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_76_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_76_TEOM-GR.out deleted file mode 100644 index d95c2ecba7f7e838c33fe31f41332fb04c933881..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_76_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -76_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003418262799580892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_77_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_77_TEOM-GR.out deleted file mode 100644 index c5c4a9db9d322780eb9aa147e8c1f5ea11b84b20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_77_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -77_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020530450344085693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_78_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_78_TEOM-GR.out deleted file mode 100644 index ce61b4568b501239563f80681736d105f9c38a12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_78_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -78_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013204030195871989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_79_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_79_TEOM-GR.out deleted file mode 100644 index b6ea07a0fd675b89751b70d6e9b1281ced661697..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_79_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -79_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.021699448426564533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_7_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_7_TEOM-GR.out deleted file mode 100644 index d5c780cc630ea7e65334801885c1c8ff05df7ab8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_7_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -7_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02760848601659139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_80_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_80_TEOM-GR.out deleted file mode 100644 index 0920bc331d7a95d7cb7cf5e7371d11741a6e35c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_80_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -80_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02197253704071045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_81_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_81_TEOM-GR.out deleted file mode 100644 index 292af1bd926e60d3ae9fa265429f79b61050ae28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_81_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -81_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01291203498840332 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_83_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_83_TEOM-GR.out deleted file mode 100644 index bd9f2fa75bf34051fe84c645489c5379f146e76c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_83_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -83_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.015642786026000978 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_84_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_84_TEOM-GR.out deleted file mode 100644 index 375fe64d25a03008051eb8a79d11edeffc9033f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_84_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -84_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02362852096557617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_85_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_85_TEOM-GR.out deleted file mode 100644 index a0af6772b1e6e211bb6bd971bdf109aa526abf45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_85_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -85_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0034382025400797526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_87_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_87_TEOM-GR.out deleted file mode 100644 index 55eb71488f693bebc3d744d312b0f6d1b61ec47e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_87_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -87_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.025659986337025962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_8_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_8_TEOM-GR.out deleted file mode 100644 index 240cfec4a00978b2a8763477ccd5726f8049b62a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_8_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -8_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.017837194601694743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_90_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_90_TEOM-GR.out deleted file mode 100644 index e071dbd66912ef4377ace98f914b661b6b2cfc4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_90_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -90_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007320813337961833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_93_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_93_TEOM-GR.out deleted file mode 100644 index b618775fef87b5d42f033312dd0ecae3603f62b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_93_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -93_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009911286830902099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_94_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_94_TEOM-GR.out deleted file mode 100644 index d5000d40e91a7f0b8bbba2e8d61d8e52b8e93187..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_94_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -94_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0030384381612141927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_95_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_95_TEOM-GR.out deleted file mode 100644 index da2424e8e68daf66556739222cfd950cd70eda98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_95_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -95_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01603567600250244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_99_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_99_TEOM-GR.out deleted file mode 100644 index 346cab44263abc680fe43b51c4eec811cd9d88b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_99_TEOM-GR.out +++ /dev/null @@ -1,4 +0,0 @@ -99_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.024462246894836427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/0_9_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/0_9_TEOM-GR.out deleted file mode 100644 index bc0ea788f2d317e6ad02553566524d9fcc19c5b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/0_9_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -9_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2005-12-21 00:00:00 2005-12-21 23:00:00 1054512000 1054513380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1054512000_1054513380.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2006-01-19 01:00:00 2006-12-31 12:00:00 1054553820 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1054553820_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm10/temporary_S1/9_TEOM-GR_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.15290122826894123 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/1_472_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/1_472_TEOM-GR.out deleted file mode 100644 index ea9d8cc40c096516b83112587a8127b17c317550..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/1_472_TEOM-GR.out +++ /dev/null @@ -1,5 +0,0 @@ -472_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -NO VALID DATA TO WRITE OUT AFTER REMOVING UNIQUE STATION DATA WITH EXTENT < 31 DAYS. -STATION WILL NOT CONTINUE IN PIPELINE. \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/1_484_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/1_484_TEOM-GR.out deleted file mode 100644 index 80b0bae4d68913f2605c6acdebcdf9252b759806..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/1_484_TEOM-GR.out +++ /dev/null @@ -1,5 +0,0 @@ -484_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -NO VALID DATA TO WRITE OUT AFTER REMOVING UNIQUE STATION DATA WITH EXTENT < 31 DAYS. -STATION WILL NOT CONTINUE IN PIPELINE. \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/1_544_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/1_544_TEOM-GR.out deleted file mode 100644 index 7349e35550889a4c9616a3bec6937c9d8de81b9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/1_544_TEOM-GR.out +++ /dev/null @@ -1,3 +0,0 @@ -544_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/1_547_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/1_547_TEOM-GR.out deleted file mode 100644 index 876303a23f7177753c72347300ed345e06fa8b30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/1_547_TEOM-GR.out +++ /dev/null @@ -1,3 +0,0 @@ -547_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/1_89_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/1_89_TEOM-GR.out deleted file mode 100644 index b226420b2a2ffcb275b3d2ff81dcbb0f2f9173b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/1_89_TEOM-GR.out +++ /dev/null @@ -1,3 +0,0 @@ -89_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S2/1_98_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S2/1_98_TEOM-GR.out deleted file mode 100644 index a7d55858956ed3fb45cbf6ab119463fc1e0d1a47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S2/1_98_TEOM-GR.out +++ /dev/null @@ -1,3 +0,0 @@ -98_TEOM-GR -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_100_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_100_TEOM-GR.out deleted file mode 100644 index e2c486ba6919dae3ed791ed9620c8fe6733a18a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_100_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -100_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2314080993334453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_103_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_103_TEOM-GR.out deleted file mode 100644 index d1063fcaddbf969b252e7e7e75db0ed7f9540152..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_103_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -103_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9638240416844686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_104_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_104_TEOM-GR.out deleted file mode 100644 index cdb6c8776c9b5afe65b5b0ce364a297807806c4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_104_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -104_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2400797645250956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_105_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_105_TEOM-GR.out deleted file mode 100644 index 85d93dd6bf04df84b7cc698ca2a114313dbd996f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_105_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -105_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1702461957931518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_107_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_107_TEOM-GR.out deleted file mode 100644 index bcff379753924dd5200d2c49a09119a4a43f3dab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_107_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -107_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1121820290883382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_108_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_108_TEOM-GR.out deleted file mode 100644 index 793f41e70685764baff2739908fe571592a25d3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_108_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -108_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4070599675178528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_109_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_109_TEOM-GR.out deleted file mode 100644 index 0b4f7c6b5ef8183fc60683c8cc0d637a55077c4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_109_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -109_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1731877446174621 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_10_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_10_TEOM-GR.out deleted file mode 100644 index 1ec376258fb791c4f6006e90733f4e3798f58d64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_10_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -10_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8592150330543518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_110_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_110_TEOM-GR.out deleted file mode 100644 index a397a3c0caa48bdaeb4c24404a72996139b14ed0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_110_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -110_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3007386883099874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_113_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_113_TEOM-GR.out deleted file mode 100644 index babfcebf5e9fbfccb53b38ad9c21ec2dfb461851..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_113_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -113_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3257145563761392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_114_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_114_TEOM-GR.out deleted file mode 100644 index 40704ba934bdd748bd23b87d9de8a25414be1bd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_114_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -114_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2198851267496744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_115_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_115_TEOM-GR.out deleted file mode 100644 index 995c086a9cc80f8eaf8ab53bab1c5b398a67904e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_115_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -115_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8441986481348673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_116_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_116_TEOM-GR.out deleted file mode 100644 index cdcfdadbefb2f11fb2c1456b1fd75628fcd30cd7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_116_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -116_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.582304581006368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_117_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_117_TEOM-GR.out deleted file mode 100644 index 2ab728b4f3cf01089a1cd304922f5ef8cfc7ca93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_117_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -117_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3908181508382162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_118_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_118_TEOM-GR.out deleted file mode 100644 index b3b1068e52a84fec12a14aff1c9ca732664bb4c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_118_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -118_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9164169708887736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_119_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_119_TEOM-GR.out deleted file mode 100644 index 3685e04f1207981c262d859bc50957593f9aa60d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_119_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -119_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1969629486401876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_11_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_11_TEOM-GR.out deleted file mode 100644 index f570f14c2768b7ff17556e04706e3686a44ec669..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_11_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -11_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2711414774258931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_120_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_120_TEOM-GR.out deleted file mode 100644 index a6f1c7bf5f7ef855603347cc1444a51635f0f8e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_120_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -120_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8974525888760885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_12_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_12_TEOM-GR.out deleted file mode 100644 index f08604f2cc72fe815b2d072f6d0c6a6d23d96f37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_12_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -12_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9238200386365254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_13_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_13_TEOM-GR.out deleted file mode 100644 index 0ffc12104e4370e989699a063e5a24a99551c9b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_13_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -13_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.3200238704681397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_14_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_14_TEOM-GR.out deleted file mode 100644 index 50d2c4998f3c0a93b932497d83890eebfdec586e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_14_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -14_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4481935063997904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_15_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_15_TEOM-GR.out deleted file mode 100644 index 48f9023898e1023e00b72eaabb7e85eb791f6b32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_15_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -15_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.303646083672841 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_16_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_16_TEOM-GR.out deleted file mode 100644 index 4f34709dcee6b8374bace48dbbfeeb3fde5545f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_16_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -16_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3423575123151144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_17_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_17_TEOM-GR.out deleted file mode 100644 index 61d662e11306fff77e0043055d8b6d67573e54d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_17_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -17_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1789766709009806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_18_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_18_TEOM-GR.out deleted file mode 100644 index 396e6521363c46d2252d238dea42eb32bd2f4800..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_18_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -18_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1195109327634176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_19_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_19_TEOM-GR.out deleted file mode 100644 index 3bfc13921ecaf814c577a416d0eb03a581ee640f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_19_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -19_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6163609902064004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_1_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_1_TEOM-GR.out deleted file mode 100644 index 6101b52ef892fe583eceace4412ebd11046ad3f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_1_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -1_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2784434715906778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_20_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_20_TEOM-GR.out deleted file mode 100644 index c140a5165edd303fb3f4083b0fbdfb0d9febb7c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_20_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -20_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1198797663052877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_218_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_218_TEOM-GR.out deleted file mode 100644 index 64c63d4521ab32d100719e8b7961479929e66d49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_218_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -218_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0411146402359008 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_21_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_21_TEOM-GR.out deleted file mode 100644 index 846d90762f3c2b745d752ba9084f6dced95f5908..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_21_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -21_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.86006654103597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_22_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_22_TEOM-GR.out deleted file mode 100644 index eaa48f4e2e7ffc7d6f036b056371780d2358fd37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_22_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -22_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8856451233228049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_23_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_23_TEOM-GR.out deleted file mode 100644 index 38ddb7d129a2c2e9658a56e01ba05f431a456a0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_23_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -23_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1999068737030028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_24_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_24_TEOM-GR.out deleted file mode 100644 index b7a6a0634209030b481b9ce1fb34183d479712b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_24_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -24_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.800705087184906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_25_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_25_TEOM-GR.out deleted file mode 100644 index 4d64ab43809fe04ecf7917be87e88708267ae69e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_25_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -25_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3322951038678488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_26_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_26_TEOM-GR.out deleted file mode 100644 index de084f7d2d6e9e9cac04508abb566f97c406c8bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_26_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -26_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5936507781346638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_270_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_270_TEOM-GR.out deleted file mode 100644 index 02a37108bc9372db8f76ca1630bacbd67e1271f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_270_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -270_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8798685630162557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_271_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_271_TEOM-GR.out deleted file mode 100644 index 86051ec4a1e1a37c70d89f1e010c020db2db1e75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_271_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -271_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8770844419797261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_272_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_272_TEOM-GR.out deleted file mode 100644 index fa6579f9a9dfe069e17028a340b88ef3d459d385..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_272_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -272_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7817134857177734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_273_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_273_TEOM-GR.out deleted file mode 100644 index d0dcd685256c7d36c615ce9337e533bb43187c7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_273_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -273_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9141337196032207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_274_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_274_TEOM-GR.out deleted file mode 100644 index ec668480325ad2e1d5a2d12f07569a2feb235d31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_274_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -274_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1900976657867433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_276_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_276_TEOM-GR.out deleted file mode 100644 index 005c472bd8fce1ecc2344333343ecff0410d5010..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_276_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -276_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9856041312217713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_277_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_277_TEOM-GR.out deleted file mode 100644 index 5670d2050266e4a0b280eaf7509c408b8239f996..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_277_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -277_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.101289117336273 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_278_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_278_TEOM-GR.out deleted file mode 100644 index 1cc8711c5dc44ca6d6e8ee5c783877a5ca959943..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_278_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -278_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1575411836306253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_279_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_279_TEOM-GR.out deleted file mode 100644 index 5521a5485581c46ae051f09aa47f5a20282c7628..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_279_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -279_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9628368099530538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_281_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_281_TEOM-GR.out deleted file mode 100644 index cff21b6c242248d081523b305c7d4daec4081985..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_281_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -281_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.972174060344696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_285_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_285_TEOM-GR.out deleted file mode 100644 index ee9c846b1072ed41d3713fd04756f85449ddd6f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_285_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -285_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7943337003389994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_286_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_286_TEOM-GR.out deleted file mode 100644 index d22bb9b514c7442b9edb65fa4394aa81b13c74e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_286_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -286_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6347094257672627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_288_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_288_TEOM-GR.out deleted file mode 100644 index 5221ca22eb1f2aff50f75df5f119e8a16e150ff0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_288_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -288_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.710374903678894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_28_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_28_TEOM-GR.out deleted file mode 100644 index 9195da504fddc4afca90894887c04dddfa9e48ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_28_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -28_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3808427850405376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_29_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_29_TEOM-GR.out deleted file mode 100644 index 332d6ef6db3e8fa548646565e0324b5e29aa42a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_29_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -29_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.072953462600708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_2_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_2_TEOM-GR.out deleted file mode 100644 index 451d65033298aba2522a57a2f77f8a4456c16d70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_2_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -2_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8108055273691813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_30_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_30_TEOM-GR.out deleted file mode 100644 index 505853a39b42754874a5f687605c4d093368fce0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_30_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -30_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.2967653036117555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_31_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_31_TEOM-GR.out deleted file mode 100644 index 3ef2c8cb24eddd9e5e5f4bd7158da7287578ad6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_31_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -31_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.236502997080485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_324_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_324_TEOM-GR.out deleted file mode 100644 index 37fcb378ab7094608281e54279eb5118a7222e4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_324_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -324_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.532853329181671 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_325_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_325_TEOM-GR.out deleted file mode 100644 index cb7171883cc6f50834e6dc606292cd328febc3e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_325_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -325_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9259170532226562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_327_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_327_TEOM-GR.out deleted file mode 100644 index 47a36c3245a957e4d9b09bd8a335651eebe15dbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_327_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -327_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6275760332743328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_328_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_328_TEOM-GR.out deleted file mode 100644 index e88ba0c68aa884bc2f1cfdd42b7a1a9e415a2e19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_328_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -328_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2111879150072733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_32_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_32_TEOM-GR.out deleted file mode 100644 index da8bb75f52790be203b9e569e6fa21838336c3f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_32_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -32_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8268123229344686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_330_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_330_TEOM-GR.out deleted file mode 100644 index 25b3096bbb1d9f2529188fbdcd5a0dcc514661f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_330_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -330_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7264979839324952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_331_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_331_TEOM-GR.out deleted file mode 100644 index 9bbecce9274ebd7aa9dbe20a013d7863dc109a1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_331_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -331_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.779723827044169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_332_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_332_TEOM-GR.out deleted file mode 100644 index 4b5f5cf67c5cc538b2c81b88a82d222a0d6ab24b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_332_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -332_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7425883213678997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_335_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_335_TEOM-GR.out deleted file mode 100644 index 490fc10c99158cf9dda33fe1d3283eb90393afe0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_335_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -335_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7420144081115723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_336_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_336_TEOM-GR.out deleted file mode 100644 index 527a646213e8a43a9649b9dafdcaa8f2db01f0fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_336_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -336_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9850769321123759 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_339_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_339_TEOM-GR.out deleted file mode 100644 index 3b1c4c07f7b1f3a0872d5b7a77d90e06ae095703..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_339_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -339_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9731105804443358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_33_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_33_TEOM-GR.out deleted file mode 100644 index ac7cdcbe74f9cd0618049ed478efdc640202a8ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_33_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -33_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1198171655337015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_340_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_340_TEOM-GR.out deleted file mode 100644 index b3de6aa233564b6fd7261f7c4aa73ef49a3aaba2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_340_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -340_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8377792278925578 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_342_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_342_TEOM-GR.out deleted file mode 100644 index f717be9463bc549ee4018389bdc87acb665f2141..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_342_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -342_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9535886367162069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_343_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_343_TEOM-GR.out deleted file mode 100644 index 999c0414923b7228b1f4d16456fdd79e110e839a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_343_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -343_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6408968408902486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_344_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_344_TEOM-GR.out deleted file mode 100644 index 70e5e3c5c93ff5299e9e13b39da017eacd7a855b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_344_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -344_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7692719658215841 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_345_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_345_TEOM-GR.out deleted file mode 100644 index 804a468cf0da8bc637e285a2ace2b8814b3e51f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_345_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -345_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5210125843683878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_346_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_346_TEOM-GR.out deleted file mode 100644 index f00de488b34b77b9cb042e4006fb9b08971f40e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_346_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -346_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5239810665448507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_349_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_349_TEOM-GR.out deleted file mode 100644 index 3e8de5df70e754140d04a158059806ab1b068000..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_349_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -349_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.530944581826528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_34_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_34_TEOM-GR.out deleted file mode 100644 index 90da74589bb161a697b1b99e8285ea7542f726bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_34_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -34_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1663987477620443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_350_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_350_TEOM-GR.out deleted file mode 100644 index 1fd6ec0ecbd863933d435c475eb7765eee72fddb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_350_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -350_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9194472829500835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_351_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_351_TEOM-GR.out deleted file mode 100644 index 9610dd9681ef737a0daa79ac71d9d033192e2f09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_351_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -351_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6245378375053405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_352_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_352_TEOM-GR.out deleted file mode 100644 index 22e04a9000a344b55c46ee4b334506b5d706de3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_352_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -352_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8052411754926045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_353_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_353_TEOM-GR.out deleted file mode 100644 index d772bf2ccf3e5822cd1258059baed342338af3ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_353_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -353_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.302993357181549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_354_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_354_TEOM-GR.out deleted file mode 100644 index a0672776bc16a22e4c666cac9ab5e2501053b445..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_354_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -354_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1877330700556437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_355_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_355_TEOM-GR.out deleted file mode 100644 index 9d6d7139abcae6ffd425a449c653d297372b6b21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_355_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -355_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5313633362452188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_356_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_356_TEOM-GR.out deleted file mode 100644 index 92fbbf81667b7212cb85b7d7f747e8675a62a262..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_356_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -356_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8465355555216472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_357_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_357_TEOM-GR.out deleted file mode 100644 index 80291973f700f47f51c2770cc1781e3010a91d89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_357_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -357_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8174625476201375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_358_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_358_TEOM-GR.out deleted file mode 100644 index 233f28f556e4769a176fd10b2815f863b1014fbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_358_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -358_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7081403056780498 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_35_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_35_TEOM-GR.out deleted file mode 100644 index 8ddc729e1a7a5312c95092d3132a30249a26f1b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_35_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -35_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0542037765185037 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_360_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_360_TEOM-GR.out deleted file mode 100644 index ed518953d57758967d0b4dd7be4aaf2f6c7f5974..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_360_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -360_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9435006380081177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_363_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_363_TEOM-GR.out deleted file mode 100644 index ca4f37fe59d0a0258406fea86be6e2060c000861..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_363_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -363_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.751879624525706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_364_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_364_TEOM-GR.out deleted file mode 100644 index 918bfe8914bd16f7377fd90fb1b201fe2e365367..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_364_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -364_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7112014691034952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_365_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_365_TEOM-GR.out deleted file mode 100644 index 377f43e680c8aaea88ee3db3c91a7bf895d9bfa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_365_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -365_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6113875428835551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_366_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_366_TEOM-GR.out deleted file mode 100644 index 41ab760a8c91e3728a83dd20aed2050aea767e64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_366_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -366_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6057815790176392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_368_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_368_TEOM-GR.out deleted file mode 100644 index 0eb4fe5127b6817af1316238767d0a385e6c5d2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_368_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -368_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5141347845395406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_369_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_369_TEOM-GR.out deleted file mode 100644 index edb274b0d3d7d19ba4ad7a13481186ff5f7103c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_369_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -369_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6290450255076091 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_36_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_36_TEOM-GR.out deleted file mode 100644 index ab7f3e61dbfc9e2622951a3dd4d70cb3229f35f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_36_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -36_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3638874212900798 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_370_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_370_TEOM-GR.out deleted file mode 100644 index f4dc3fdbb94480799c5d456583ddce19822f15ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_370_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -370_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6028075536092122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_371_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_371_TEOM-GR.out deleted file mode 100644 index ede60e919259dd5005c195a8393d98b6b4c569f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_371_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -371_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7046409408251445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_372_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_372_TEOM-GR.out deleted file mode 100644 index 6f5ad68d12f8ac38a2c756c6fa56931885c3c5e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_372_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -372_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8631960034370423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_373_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_373_TEOM-GR.out deleted file mode 100644 index a78c8ab070f88913c354ea227fb9a7a0d66060ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_373_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -373_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7864622950553894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_374_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_374_TEOM-GR.out deleted file mode 100644 index 65ba649d734c72edf0335dd1c7ba207b983860ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_374_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -374_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7642656445503235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_375_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_375_TEOM-GR.out deleted file mode 100644 index e6487b81869076a880dc16bd06854c43e6a499c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_375_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -375_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6088483373324076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_37_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_37_TEOM-GR.out deleted file mode 100644 index faaac701848e550ffc85749afe870fd012513d7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_37_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -37_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2183053811391196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_38_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_38_TEOM-GR.out deleted file mode 100644 index 2cdd5a4ff7e6996566f5af68ae8a6e9d5c429f54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_38_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -38_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.000961422920227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_39_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_39_TEOM-GR.out deleted file mode 100644 index 8c63faac8c83ed3b469458e7cd2a67d9702fd960..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_39_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -39_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7722375233968098 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_3_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_3_TEOM-GR.out deleted file mode 100644 index bdfd9ac71de4fcf3bbb57584281f462c325e955a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_3_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -3_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3202921470006308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_40_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_40_TEOM-GR.out deleted file mode 100644 index d8c77cffe8ce39484aaf40962a3676c6c03339cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_40_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -40_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.733098578453064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_41_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_41_TEOM-GR.out deleted file mode 100644 index 946c546564e314abbed67982b28cdf50a2d61194..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_41_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -41_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.673567028840383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_42_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_42_TEOM-GR.out deleted file mode 100644 index 4634a6f98db4d2ca065a79ea69401103ed00f805..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_42_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -42_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5656664212544759 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_43_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_43_TEOM-GR.out deleted file mode 100644 index 531d8f53f883749a23dcc16128bd1ccdc165f965..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_43_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -43_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.619306782881419 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_44_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_44_TEOM-GR.out deleted file mode 100644 index 8c79abacd697f4079bcbc3723fc3d2a18994469e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_44_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -44_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.2812029043833415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_453_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_453_TEOM-GR.out deleted file mode 100644 index 6bd01185cc6e91e788cf1b4d765988cf5fb25f5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_453_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -453_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7326081434885661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_454_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_454_TEOM-GR.out deleted file mode 100644 index be040f96e45c3124a4ed2b6620221bfc54e8eea9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_454_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -454_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8767616629600525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_455_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_455_TEOM-GR.out deleted file mode 100644 index 35a798ceadc3481d74cafb542ad88aafe26f9303..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_455_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -455_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5891160130500793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_456_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_456_TEOM-GR.out deleted file mode 100644 index 2b9f8ea341eb570425ef600b360ff4425e652da1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_456_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -456_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5697081208229064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_457_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_457_TEOM-GR.out deleted file mode 100644 index 58d78186070a853d367c8c3c4ff719957346104b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_457_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -457_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0076940417289735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_458_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_458_TEOM-GR.out deleted file mode 100644 index 3ca47e237eda8d411c3749eda5a669cb5faf3077..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_458_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -458_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8871165037155151 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_459_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_459_TEOM-GR.out deleted file mode 100644 index 27d507c622b6bba2af9259c32555b3ea96dc6e7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_459_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -459_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5805649201075236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_45_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_45_TEOM-GR.out deleted file mode 100644 index d528faadc6c2eea6d9b85807633cb2ccf8588143..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_45_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -45_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.2792367060979206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_460_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_460_TEOM-GR.out deleted file mode 100644 index 52d6ed4787ed76f4efbb4c0f5b39f045589ebbbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_460_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -460_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9412478685379029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_461_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_461_TEOM-GR.out deleted file mode 100644 index 1aa0801ae41a6636de45700a6357325a5e466159..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_461_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -461_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7232250809669495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_462_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_462_TEOM-GR.out deleted file mode 100644 index 03ffb33b19966157ecbe51dfb9a19130b05e882e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_462_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -462_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7481170614560445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_463_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_463_TEOM-GR.out deleted file mode 100644 index ae872d496a79b5581982aaa2709e775b1bda93a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_463_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -463_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7841551303863525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_464_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_464_TEOM-GR.out deleted file mode 100644 index f2611aef71c910619b80b06dff2528837faefa19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_464_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -464_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7393755396207173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_465_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_465_TEOM-GR.out deleted file mode 100644 index 8435dc6c97771725ea6d9ba8237e216a5e642ce7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_465_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -465_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6139017144838969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_466_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_466_TEOM-GR.out deleted file mode 100644 index dfb439e9a0a31964238354cca0b84f61ddbf010c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_466_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -466_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.754791812102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_467_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_467_TEOM-GR.out deleted file mode 100644 index 76e308aae8b7d4346623b4865222d69712624daf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_467_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -467_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.516332471370697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_468_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_468_TEOM-GR.out deleted file mode 100644 index ceb2e231c175622595babef1895c18f9a992219d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_468_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -468_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8308276851971944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_469_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_469_TEOM-GR.out deleted file mode 100644 index 2007e167afe726336eae60aca2d33bf1a46a88ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_469_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -469_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7489072481791178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_46_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_46_TEOM-GR.out deleted file mode 100644 index b6f8ea11979f7af65811813e429903be5d75b437..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_46_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -46_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6152634739875793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_471_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_471_TEOM-GR.out deleted file mode 100644 index 271b05791ba57b9835652ec5cd4b2594edc5e2c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_471_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -471_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6088767965634664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_473_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_473_TEOM-GR.out deleted file mode 100644 index 718825eac74547c75512976a4964e44175d0da8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_473_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -473_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9245765606562296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_474_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_474_TEOM-GR.out deleted file mode 100644 index 78ad67f7661180d2133ab6846783b90798997122..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_474_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -474_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0078705350557964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_475_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_475_TEOM-GR.out deleted file mode 100644 index 816fc61ad75983eb2e2179a85bb2507f92fa82d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_475_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -475_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5287563482920329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_476_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_476_TEOM-GR.out deleted file mode 100644 index fa5ca7ed14f71c88dbebdb87c46bcf9c47327a7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_476_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -476_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.646321427822113 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_477_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_477_TEOM-GR.out deleted file mode 100644 index c4256b5b5431769eec507b0a9a4fd1562fae2833..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_477_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -477_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9861989537874858 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_478_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_478_TEOM-GR.out deleted file mode 100644 index 133e9967104ec9719a737214cac0c77489c2008d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_478_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -478_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8725257515907288 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_479_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_479_TEOM-GR.out deleted file mode 100644 index 001f9b3c7b1c8f6b3bedb11efe6cfedeb5929cbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_479_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -479_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6819005688031514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_47_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_47_TEOM-GR.out deleted file mode 100644 index 8cb24c50ec37148bb914b7566b7abe5de2489737..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_47_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -47_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3529274463653564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_480_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_480_TEOM-GR.out deleted file mode 100644 index 0898e1f7c16b04f81107886687875300991d490a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_480_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -480_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.791774837176005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_481_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_481_TEOM-GR.out deleted file mode 100644 index cabaa6ac4b56c941e9cacf93e16ae813d4c8923f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_481_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -481_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.965538235505422 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_482_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_482_TEOM-GR.out deleted file mode 100644 index 75de717ba2b38afdc5d7ea9dee5829e7b2ab1520..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_482_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -482_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.781027623017629 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_483_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_483_TEOM-GR.out deleted file mode 100644 index 1f482d989ae05c9053e947ed8d68a044c3698cf8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_483_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -483_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7153669158617656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_485_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_485_TEOM-GR.out deleted file mode 100644 index c763a730a441e5aa9b1656ecb005e06302eef6cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_485_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -485_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8326665878295898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_486_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_486_TEOM-GR.out deleted file mode 100644 index 39b7cfacf493157e2e8487865456a4fce63fe49f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_486_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -486_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7476926962534587 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_487_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_487_TEOM-GR.out deleted file mode 100644 index 8f3f30e3798e54dff01f65f2e55a3ffae937ac4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_487_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -487_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5642538825670879 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_488_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_488_TEOM-GR.out deleted file mode 100644 index 99fc66421a54602c6bbc91a2aad5f2d974960202..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_488_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -488_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9236731966336568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_489_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_489_TEOM-GR.out deleted file mode 100644 index c65bfe711d3591fd4924a97b52b4e3ee2b01f011..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_489_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -489_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7324146072069804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_48_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_48_TEOM-GR.out deleted file mode 100644 index 5072dbac3d4319bd47ae02a69dca324606cd3ce2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_48_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -48_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3955111384391785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_490_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_490_TEOM-GR.out deleted file mode 100644 index d1c83f869e197095c4fc0a97c89d9bcf3da3c5e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_490_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -490_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6568366368611653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_49_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_49_TEOM-GR.out deleted file mode 100644 index c197fa0caf9eac9e7e713bcb3ed709ab365836a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_49_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -49_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3300885041554769 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_4_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_4_TEOM-GR.out deleted file mode 100644 index 023b071879f1815b78543533f863515e2e2b1d84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_4_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -4_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5182111064592998 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_50_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_50_TEOM-GR.out deleted file mode 100644 index 348556ec8b9d290027415ec36f37699ff1721b1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_50_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -50_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5889493902524312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_51_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_51_TEOM-GR.out deleted file mode 100644 index bdee26207a168776bb18eb6c3b672d5a5290f9b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_51_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -51_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.2754061142603557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_529_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_529_TEOM-GR.out deleted file mode 100644 index 70d4e6fd713ec39969efd016a6ea2724ba4a96ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_529_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -529_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9863747835159302 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_52_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_52_TEOM-GR.out deleted file mode 100644 index 2fe5f2cb18573106c1b4ca09cf53ab7195cdc269..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_52_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -52_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9451995134353638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_530_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_530_TEOM-GR.out deleted file mode 100644 index 3ce798c3799071ff55d21f8c85ddfb63ee391184..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_530_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -530_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7536220868428548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_531_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_531_TEOM-GR.out deleted file mode 100644 index bd3fe61ee8641e6b22f82e70781aa587260f5e23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_531_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -531_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0350715517997742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_534_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_534_TEOM-GR.out deleted file mode 100644 index 807b5a57a133bca012cd22f4f76e9217170770d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_534_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -534_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7772659659385681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_53_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_53_TEOM-GR.out deleted file mode 100644 index a846ba0aa277295d3977bca2fc92b08bcc8ce9ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_53_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -53_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9044569730758667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_540_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_540_TEOM-GR.out deleted file mode 100644 index 983c94627a973f63a23b9c2d2cd122dff1014619..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_540_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -540_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.45977754990259806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_543_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_543_TEOM-GR.out deleted file mode 100644 index b6e1116a8ae696a66457e268c53404d6ade661ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_543_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -543_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7311363697052002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_546_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_546_TEOM-GR.out deleted file mode 100644 index 58f66bf3a0696270d7e647e0e3e6afeb5259f66c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_546_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -546_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9437740564346313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_54_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_54_TEOM-GR.out deleted file mode 100644 index 2b9bac364308eb9cee0c013fbf22dbf178267f7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_54_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -54_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.0121495962142943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_55_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_55_TEOM-GR.out deleted file mode 100644 index b1522498b584a68fba10bfa78ae63e8d19c19fbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_55_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -55_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.366310437520345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_56_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_56_TEOM-GR.out deleted file mode 100644 index 6695b9d466aaa934f7f720d0137506591d3ae82c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_56_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -56_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7592313051223756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_57_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_57_TEOM-GR.out deleted file mode 100644 index 25af3822483d87644cdb35497db46daf927f4b85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_57_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -57_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -3.5944872736930846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_58_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_58_TEOM-GR.out deleted file mode 100644 index e18d937dc2185298c7a6e6e938cbe2d818fbe3eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_58_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -58_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0178402344385782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_59_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_59_TEOM-GR.out deleted file mode 100644 index e2070f998e72addb2d012a8702d41a9638c51ad5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_59_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -59_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4868518829345703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_5_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_5_TEOM-GR.out deleted file mode 100644 index 27822b90b4bafa3fe89c130d744468c3582e9e0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_5_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -5_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.050947646299998 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_60_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_60_TEOM-GR.out deleted file mode 100644 index 57487725c16944dbd78e9c07934e8821b00bde59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_60_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -60_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.916613491376241 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_61_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_61_TEOM-GR.out deleted file mode 100644 index 15a039d405e4ca7b767a842f46c992dbeb81179d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_61_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -61_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4373637437820435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_62_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_62_TEOM-GR.out deleted file mode 100644 index 450d95ebac9e87fdaae66979b2d96d1d1fa99c98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_62_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -62_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.3168026924133303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_63_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_63_TEOM-GR.out deleted file mode 100644 index 70b014b85fe4c0dee8bad5d528e57520c645f19e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_63_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -63_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3715591152509055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_64_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_64_TEOM-GR.out deleted file mode 100644 index ca5fe494eeb0cd466f6cc1ae4c7f802a3b4ac9fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_64_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -64_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1497770388921102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_65_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_65_TEOM-GR.out deleted file mode 100644 index faae12cb9cb9dd8fb9a62e985f4b6c1b40385ada..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_65_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -65_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.068143606185913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_68_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_68_TEOM-GR.out deleted file mode 100644 index a881dc54ca7511526acc71559b5f01fb88f6d776..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_68_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -68_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8567258675893148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_69_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_69_TEOM-GR.out deleted file mode 100644 index a968b3ea32844d7c9dfde7aa08db19da37d9c3f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_69_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -69_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8657852609952291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_6_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_6_TEOM-GR.out deleted file mode 100644 index 28dc741ddaf09c49f4fa6b5bf468efa4ccc56632..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_6_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -6_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7965842962265015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_70_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_70_TEOM-GR.out deleted file mode 100644 index e09646a69bcf63f9ddae05041e9e7496acaf8a80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_70_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -70_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9373424132664998 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_71_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_71_TEOM-GR.out deleted file mode 100644 index 9fd38d671ba617c9d7d86b19e5a24934431e61d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_71_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -71_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9388671517372131 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_72_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_72_TEOM-GR.out deleted file mode 100644 index 1205d194b4ea6ec26c43e428ae03b36124606040..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_72_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -72_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7548586448033651 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_73_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_73_TEOM-GR.out deleted file mode 100644 index 7b07a0e52525e366260cd214167ccadc59b7bd1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_73_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -73_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8030153155326843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_76_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_76_TEOM-GR.out deleted file mode 100644 index 4566a96e2c32410fdb6b60c3c26a7c9add0862cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_76_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -76_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0252722382545472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_77_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_77_TEOM-GR.out deleted file mode 100644 index e4bf848e0dadf035972bfa8155ee616cbaf3ab1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_77_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -77_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0597282290458678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_78_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_78_TEOM-GR.out deleted file mode 100644 index bd22ef0dd6406dcd3e3b9b44f2c44b21e0cd0eac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_78_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -78_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9384300192197164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_79_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_79_TEOM-GR.out deleted file mode 100644 index 03449f0aae1d2e313aaa341ec12aa462da39da8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_79_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -79_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.58709663550059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_7_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_7_TEOM-GR.out deleted file mode 100644 index 415bddc77c8ecddb655d0c9eaa1c87e346bd1d16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_7_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -7_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.079097604751587 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_80_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_80_TEOM-GR.out deleted file mode 100644 index 6effb8da06a22398e6bc91554139302e01f584b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_80_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -80_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2353197971979777 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_81_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_81_TEOM-GR.out deleted file mode 100644 index 4c3713fc7d9a18dc47d81167df0ea6140f5d68cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_81_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -81_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0768730680147807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_83_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_83_TEOM-GR.out deleted file mode 100644 index fb99f7498b9c85c603169e1ef8a0dacee986d935..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_83_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -83_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9690747062365214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_84_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_84_TEOM-GR.out deleted file mode 100644 index ac3850ac676458d623c93e0389a9ae07c0b74ece..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_84_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -84_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1927245497703551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_85_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_85_TEOM-GR.out deleted file mode 100644 index 4c0a2e84c59897cee2401b8604471ba5f0adafdd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_85_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -85_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9562564690907797 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_87_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_87_TEOM-GR.out deleted file mode 100644 index f20c54a609ce0369dd35aa7648ba3c276a971726..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_87_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -87_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0863259156545004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_8_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_8_TEOM-GR.out deleted file mode 100644 index 124e698bddcfff606fc2a0d8d64936f94d1eefbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_8_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -8_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3256418267885843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_90_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_90_TEOM-GR.out deleted file mode 100644 index 94cd965f2979f89fdeb790b46f483e918f1a0c39..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_90_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -90_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7554520726203918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_93_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_93_TEOM-GR.out deleted file mode 100644 index 69e9e81d81f5468f531777c2cdddd9ebb12377a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_93_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -93_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6636172771453858 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_94_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_94_TEOM-GR.out deleted file mode 100644 index 36b2106e0062e87a358dac0465c0d83ef912c4ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_94_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -94_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8084357698758443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_95_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_95_TEOM-GR.out deleted file mode 100644 index 04c0575cb94ce99cfde3f79cb4c5d458e2e79fe5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_95_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -95_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1737368901570637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_99_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_99_TEOM-GR.out deleted file mode 100644 index c2414d567b1353a4d293a8f109a7c07cedd4b804..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_99_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -99_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3340612133344014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/S3/0_9_TEOM-GR.out b/run/stage_logs/NAPMD_PM10/S3/0_9_TEOM-GR.out deleted file mode 100644 index c3845dc4757717c36b87b6e9ee23f06aca09a69b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/S3/0_9_TEOM-GR.out +++ /dev/null @@ -1,23 +0,0 @@ -9_TEOM-GR -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.712946899731954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_100_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_100_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 86305faef6afa8062c621026e2a4ab572dc42b19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_100_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0153950333595274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_100_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_100_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 772fd74e9a33f16789dd4b04104875cd85302d17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_100_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3808936913808187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_100_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_100_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index f604ccf885e51cbbfaedc348907704885cc26437..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_100_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -100_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1810973127683004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_103_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_103_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 0e64f2ee1ad901029e260b2c51b9efc4c626e8f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_103_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12988980611165366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_103_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_103_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index e391d8feef7ce14dcd4bce922389343be749fee6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_103_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6461456775665283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_103_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_103_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index a8c51e90facd8fedbba673b15b10fdbfa91d888d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_103_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2746660947799683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_104_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_104_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index cd656e1b0de7009c9224c2a962b5925f6055cde1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_104_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5530794978141784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_104_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_104_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ea5f3bf97479747266e2639d3c0dc3c46fc8d48c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_104_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7800132036209106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_104_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_104_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 4c9b9cd93d4bebe9906e5e5e3064ff214a2a4940..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_104_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.398594903945923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_105_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_105_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 30170bc4e616ed943fea6a7a51e0aabb268ef47c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_105_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2853485067685446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_105_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_105_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index e8cfb4167e1f4384ec72198388a124e2da863a35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_105_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4726312438646951 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_105_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_105_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 85cb10edfcda616b7593ef5e430fa40b4c93f703..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_105_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.15136110385259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_107_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_107_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 4e20c56c5ccf7397d3b6f878eb0ace1e796df0e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_107_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.343857204914093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_107_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_107_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 1d40ec667092bf59713176435fa372804c891bec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_107_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1387556910514833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_107_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_107_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 84f4106c78549878ab7e2160ade79269eca059b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_107_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8934824268023174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_108_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_108_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 820fa5cea1cd82559ebc5ed31a47060c1eb450bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_108_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.307622448603312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_108_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_108_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 937b9d9278ee9c2b33810233d170d84cafbd609f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_108_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.244892207781474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_108_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_108_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 34cf222fcf33cc632421532ee25781bf7abd8462..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_108_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.186961058775584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_109_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_109_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 49f2909559ef3f08f17a226fceb88a727b62a0c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_109_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0373964428901674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_109_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_109_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 541b64f0ea40d57aa426ea56607b6266e083ae7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_109_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4077992677688598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_109_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_109_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 37fcaf30dca11bdbdc4b2803b4a38f9b03838004..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_109_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.870846430460612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_10_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_10_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 489ed61f951b2d94f3d6d0772ce313a61e6e4ff4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_10_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -10_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.1562880198160808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_10_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_10_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 2cc2cc69084811ca85c5bdbad5afbe42daf8d69e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_10_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -10_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.4321681300799054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_10_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_10_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 00493d2088f10ea181b3c1087df9e51739df0cef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_10_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -10_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.0710002819697064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_110_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_110_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 7b6094d80195485ccec773d24625f66ba03a2778..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_110_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.183649945259094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_110_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_110_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 9772f0da70c13b629b52454fdd75bcc9cd7bc151..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_110_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.468294409910838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_110_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_110_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 6a784a17a724fa21ea78df91997c70d92b3fde0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_110_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9057450771331788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_113_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_113_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 4c037ab268fc004edac82d32d3a67567c8b0e6b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_113_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1322431802749633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_113_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_113_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index a700d396dc025126f50eb7571ce3e3f756a3c789..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_113_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.486484734217326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_113_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_113_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 7054d7fa435602cb538953747d06e826f6cc2faf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_113_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3836959958076477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_114_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_114_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 4056fd8c3a38a5c9037a131a48e00353e80a611e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_114_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -114_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9890818119049072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_114_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_114_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index eb7d58f7f2d1321a0297ddf7033caa572a0bdd73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_114_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -114_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1859976013501483 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_114_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_114_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 2f48f6b2d41af2515c28df1f4a6737c2c23fe488..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_114_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -114_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1745644092559813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_115_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_115_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 65e45965456a17fe6bf72a4474c2a0c209e9b1c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_115_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -115_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1800425012906393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_115_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_115_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index b987ba00953f1188d8129d6fe1d009e89d62f745..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_115_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -115_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5863627711931865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_115_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_115_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index f38b8ee4f7ad549f413a6335ecb01313d8cbee26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_115_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -115_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.05313351949056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_116_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_116_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 78ce4477d058c591a01418656df0c3d220798a00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_116_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -116_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.33474823633829753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_116_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_116_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index a91bc5a7ee6a837f7986a72c4c3e779926a92e1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_116_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -116_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5353677630424499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_116_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_116_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 474a1a6e1d8cdfaea7fb1339ce058723e894ad8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_116_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -116_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22278506755828859 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_117_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_117_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 53b371faf074464505485cd77781c52bf5e0d8cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_117_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -117_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9689606785774232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_117_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_117_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index b422259390b4322c209cd7f42c000f17c04e7bf7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_117_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -117_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8707864205042521 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_117_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_117_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 5c702f0046a18db190d8808c77edeca7ed05bf2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_117_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -117_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1774160663286843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_118_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_118_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 90cf85427a251afd863381304e9f94d18f9bac91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_118_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4845080931981405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_118_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_118_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index db486e34ca45200f0a0d445e2313dfc8a7ebf1de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_118_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5923555970191956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_118_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_118_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index ece59374f576ae33409a19163d8185bc6e775666..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_118_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5814101139704386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_119_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_119_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index bc48def5f06650417b9d38d78d3d5d09c6b076d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_119_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9185769319534303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_119_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_119_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f206b96670c9f06fe8ae51b01212f514e63e9dcf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_119_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1846275687217713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_119_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_119_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 9ff7de504244af84ee8af28b63dd68368bd15d70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_119_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.174906146526337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_11_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_11_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 2564b271982082b9ea764bca644f1d8ded3a08b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_11_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3934210379918417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_11_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_11_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 18ae679e7988476b6e5ce1d1081df74eb5cfa0c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_11_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3001367131869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_11_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_11_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 8696fdc79a22fc176426c4c870a0caa9fa505f2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_11_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4471137563387555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_120_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_120_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index b54f57e2595b67c5e41e0ed411a269460cf07b28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_120_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -120_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.395119829972585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_120_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_120_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ea4ea57caf52c825c07533185418ce187aac4023..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_120_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -120_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.576565976937612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_120_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_120_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index d766845612b81fda8f25af2f8e435ed1424f1671..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_120_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -120_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2248488148053487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_12_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_12_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index dcaab0ac6f5dc0fc5b22912a813748f82713cbbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_12_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -12_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.2268210848172507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_12_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_12_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 1d4a2f60ccdca008288caeb223346901f8826f11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_12_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -12_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.2399009982744853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_12_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_12_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 9d0b6a2b9a03caf4eb5a39f81cbe87e2bcbde776..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_12_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -12_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9492666999499004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_13_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_13_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 9d87614735e70505ebc11d289e465aa58b7ff8fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_13_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.4894521117210386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_13_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_13_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ee14b12e1e50e35123eacccd65e76f72096f5074..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_13_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.6163939356803896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_13_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_13_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 05b1f6cd6f970b294caf70d7e208e8a04533b11e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_13_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9894102295239766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_14_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_14_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 1fa8f58b84816ea3066e9b7b611015b0a723e768..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_14_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0676877895991006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_14_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_14_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 0ea98d18e7160968aac9f657ab18580a3f7baf00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_14_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.461766715844472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_14_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_14_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 2f1e17cc4e1acb2b8e032369b22f2b3b53ba2ba5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_14_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4243748148282369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_15_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_15_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index cf87324fd1a389cce7db4314b9a57663e9bc342f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_15_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.4403730630874634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_15_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_15_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index c2b9b83e3c001b42a37a175d4959f534065e6201..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_15_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.5833836078643797 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_15_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_15_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index eb7479f46494f46279858265b6f65a39cf4c5e71..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_15_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.3155215899149577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_16_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_16_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 96aabe6ed91854f3b56cf506aef787ddefc9e8f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_16_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -16_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7432930986086528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_16_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_16_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 9c8c0fdabf3b95d5e53afc995fdd74bdb065b5a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_16_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -16_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3554096102714537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_16_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_16_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 55ec2c370c3e33f2674894ab6da199c032c67ff3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_16_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -16_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7423661351203918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_17_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_17_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 2c3cbe28d2029be1638503bf8e77782e342d382a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_17_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -17_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.975816754500071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_17_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_17_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 4ace685088c6b8abdb9415b90a33c0802b6259d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_17_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -17_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2712974667549135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_17_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_17_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index cf0cc7c1fc5ee4a9f9ce6dd719462c1c2343f077..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_17_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -17_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3477136810620626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_18_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_18_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 4ba6361a4574de0015db9f56f5e8a81c5128eee9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_18_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.588581395149231 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_18_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_18_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index bcb0ef70a6d3e46c4c2874f65a1cabd423239f16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_18_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1990190823872884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_18_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_18_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index d07d02770c1928ff5567bb6ff9fa4ff883920ef2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_18_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6938972194989523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_19_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_19_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index c4426abc9d792a7f5863e0798e840583c4323cfd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_19_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2853280941645306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_19_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_19_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 548c207637e2da561b1cc683d2cd7bca7a2414c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_19_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5619415998458863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_19_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_19_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 1c78db8301a9be60faabc819fa5cbb8312cbdc81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_19_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -19_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1457785924275714 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_1_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_1_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 84d13a578c5aded1f7e95a493fc685fd136f4890..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_1_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7720081051190695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_1_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_1_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index bfebad5cdb7044b9c926b966975cf2bba87f74dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_1_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9544075051943461 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_1_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_1_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 9a95e4d698ecd15276efa5ca802cb5e6fd094035..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_1_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6379331390062968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_20_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_20_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index c86ff41b0c9c2c28681204d2dc2ba34978e0f0f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_20_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.728430724143982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_20_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_20_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 25f02aa88723767726e87b6efa20e0ebea6aaf8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_20_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1838013847668964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_20_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_20_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 22d40c977a4127b8fbb4b9e22a84330394366325..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_20_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5030816793441772 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_218_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_218_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index fe8c47de491562caa7ffcf8a31889062850a81c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_218_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -218_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4366984645525613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_218_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_218_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 4197f0a3c259c28815888cba3cd650ad4da875db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_218_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -218_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7708651264508566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_218_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_218_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index c071cc8073ebe2ce7b2813467347f01c97bb83ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_218_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -218_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5823195775349934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_21_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_21_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 71ed4117c169461a4f4c0da7bad0c580f234c39f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_21_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4112437963485718 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_21_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_21_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 494ee3853a8c5d1ac354918732f3f7a9edaf3825..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_21_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6234501401583354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_21_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_21_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 77964e9eee92be29f7cb0fa8c35c31eca3aecfc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_21_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9588388641675313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_22_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_22_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index c6b52e5dbc2fd88d5c86c9f9107f1a21f63997c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_22_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.065524669488271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_22_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_22_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 74730c2211117c15c905cc68fadef8b2fa86533d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_22_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.353577776749929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_22_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_22_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 39eaa1973d9bb1fddb9ad7267ba99d6f09da258d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_22_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.052382405598958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_23_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_23_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 0ce846d7884fc0b997af18482a8e4463c876a5cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_23_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.204685028394063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_23_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_23_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 4dbbf6997ccf543bb9f0ba09816e06cfb007fd7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_23_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0574713190396627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_23_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_23_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 863d96c80ab29a9faa2fcbc959fba39cf0325197..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_23_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9403700908025105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_24_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_24_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 8b20edabe1a35e98c87d309d09c66d27a77dae5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_24_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09535492658615112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_24_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_24_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 3d1119e46171b697bc9ad10ec76506c0d4167bb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_24_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7497194091478984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_24_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_24_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index d8948802515025e8569ce6ee716d46d485522aba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_24_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.46899530092875164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_25_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_25_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 38d1b4bac44b83427aafe5f7185cf8c5b1536319..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_25_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -25_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9551640272140502 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_25_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_25_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 82185d2035a4f4bbe980faa21f5ef9f415134546..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_25_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -25_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.156968339284261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_25_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_25_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index fdecaa500b1a682914f19a135120a9a86bc37a8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_25_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -25_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7302344640096028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_26_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_26_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index c1055f1e749001c7bb0ff3ddd59659a3fc26b274..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_26_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7493897040685016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_26_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_26_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index dfc6fb6b55f808ea1b5ed32692d3c64b18328e2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_26_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6969398935635884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_26_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_26_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 9e72238b259434bfeb56264b7b6d7d98a1658d58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_26_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6263900836308797 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_270_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_270_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index d254b1d035bf456cdf209bdd54ccdcf24a315a21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_270_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.236332639058431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_270_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_270_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index bb44fe8b7541b2bdf2b01a4c02a1df4453e83e22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_270_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5965108394622802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_270_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_270_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index b05bbf23f232cde1be8f3fb01e55a6717ad2b75a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_270_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -270_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0534555077552796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_271_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_271_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 2274c2accde54b8058894eed7fbebfe67167c60b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_271_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.100334878762563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_271_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_271_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 24f4294d372168e11bf36776daf8b217b9884421..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_271_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.412774888674418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_271_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_271_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index f46fc6fd646ce2268c5140edb4a37e2ac85cb0cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_271_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9700771371523539 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_272_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_272_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 967f17c45f3d0a49d2c18fa072654ddd4e6de455..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_272_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9360162258148194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_272_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_272_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ccfc523fa51e3e5ac824909ed91faa26479eff39..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_272_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.360534143447876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_272_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_272_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index cde234234759a00c680e52c3ee428f6618557cf9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_272_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -272_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0743942697842916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_273_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_273_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index b28660bb2eda06e3b36abadd16230c397e3e696d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_273_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -273_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1913800319035848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_273_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_273_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index e208d08348a689ca6af6c6d1b4e3655a445b11fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_273_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -273_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5350636521975198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_273_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_273_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index cc8360d410e3760a2cb41177005089dbf8e380dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_273_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -273_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2320170203844707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_274_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_274_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 4a532a2c9b94f5fd4daa596bfdc47aee6f11904e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_274_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1632328033447266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_274_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_274_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 09b2d052fa8afe7795bce652931f32151055b42c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_274_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7198776245117188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_274_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_274_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 898d841b8a663eb29e5dec8e0a26eca9f33e1f3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_274_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.120202898979187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_276_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_276_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 115729107527f3a9fdc7a1aa6d08a286ba6b57fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_276_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -276_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.479976522922516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_276_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_276_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index b9113478848ad08ba265bbc6e93b7fbd4ad713d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_276_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -276_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6726569056510925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_276_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_276_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index c8b19bd26b1392007c357ad6b3b1f96767baa9a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_276_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -276_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2082537571589151 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_277_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_277_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 854d80e3b1af3eb3c00f48b30321f7868e59e459..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_277_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -277_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0149542768796285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_277_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_277_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ba27664f00945c304dfa296e1572c8c3917bb24b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_277_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -277_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7481346289316813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_277_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_277_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 7ba06919b6ff0a885ba35ce239147ea1d160cdec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_277_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -277_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0002702673276265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_278_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_278_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 9f8038dea90775f14c2abaf6b780652a9af1ac6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_278_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3766543745994568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_278_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_278_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index d27c14067d410a0ca7f0233ee85960be35e8edbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_278_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.484551159540812 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_278_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_278_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 5fef7b5902f45e4ba88f90ef1079a8e4d1c6b51b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_278_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1689225395520528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_279_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_279_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 864f7e6dbd6b0882c66197d76ddc3124e3fe3635..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_279_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3161361972490946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_279_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_279_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index d2c553f879daa6a9f0313f70c6e23183ba6f8bcb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_279_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6881663839022318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_279_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_279_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 1592e76abc77282defe6ff4492ca7b51b3f86f08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_279_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2169694582621255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_281_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_281_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 87b2e3a05afc31eed7444f78b3cad2ae9f4c8c06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_281_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -281_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0036096294720969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_281_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_281_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index af60a6b5f1efc3a978742bba770edc3c2e86f3ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_281_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -281_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5467606067657471 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_281_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_281_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index e5f70567c29e2f43186694ac1451d1d41529f3f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_281_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -281_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1319509545962017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_285_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_285_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 8bbf84f9930d673558689f8e8ae15c3683fd0610..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_285_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -285_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1043319821357727 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_285_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_285_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 434adddbce882862e44209233aa00324a67750bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_285_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -285_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.39000560839970905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_285_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_285_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index cec16f5976d0f3b8d70ef20fdced9a4ab8cb1e16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_285_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -285_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.032081814606984456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_286_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_286_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 55a0a04f7182945a897a8e0ece23d9a4498d3297..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_286_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -286_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03521487315495809 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_286_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_286_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f14f18fe86a6862718ae6aa90588d57fded411b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_286_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -286_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.34151649475097656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_286_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_286_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index f8e94696bba51e00b55f6463b42d32bf666b2f93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_286_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -286_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08104034264882405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_288_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_288_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index d61a07a1b9a808ba3eb6ce832942f8d78712c8af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_288_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -288_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6361422260602315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_288_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_288_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 103fdb895aa22a6d7a68fa40a696510d95cd7ab0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_288_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -288_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4038246273994446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_288_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_288_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index e80a402e9ccf80e2dfa50bab6a361f6971d48a14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_288_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -288_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6106670061747234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_28_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_28_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 8c2857d52857a82fc490e87ff7d1d55d9e9f9e05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_28_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.970358661810557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_28_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_28_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 0e7668de7107b6f37c8c8b699d8233ef56212c72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_28_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.143230307102203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_28_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_28_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index b333647c08c846283707aba51b0e70fc2c73adfc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_28_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.960717757542928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_29_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_29_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 64f61e0c616abed65eec38ae54a38cc2f748e119..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_29_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.04943687915802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_29_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_29_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f8a7545bd0e1d127c935f1e674fa0c7cfb0cd96b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_29_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.74857497215271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_29_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_29_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 9d693470d04e884c7872f42b39c5850b38612294..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_29_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.377057949701945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_2_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_2_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 5dbb4593f07a6da98b11c385f9653a1079c55d75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_2_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3398420691490174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_2_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_2_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 3aeb41ecf3b8a94f27259a47fc29039920938d8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_2_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5894766688346862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_2_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_2_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 34c14ee2177e8d28c10f56605fbdd897bffcd9ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_2_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6650965968767801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_30_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_30_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index f8190912246b840b5eea9c20e44986be202ae79b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_30_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.278499627113342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_30_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_30_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 126b69792d5599639021c925915c1c25bbf0d828..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_30_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.980610692501068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_30_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_30_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index da17e84d20f8a1e1849f7949f8b99bc6a230c524..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_30_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.6652542908986407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_31_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_31_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 6279930ca84844ee5b139c7774f8bcec775baeec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_31_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3448270757993062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_31_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_31_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index a65069ab13cdbadc8cf54337f40aa968d3374c4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_31_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1217928647994997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_31_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_31_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 2e47c748898a7faae1efca7dec9aaf968d00a814..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_31_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.871294585863749 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_324_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_324_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index ecfa0b2ce63ebba882ebe752ed15b60c87cf86d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_324_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5124461770057678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_324_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_324_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 8c4065b6c3c196f6a202d025cfbf6f453544df6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_324_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.775885514418284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_324_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_324_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 32df58d56659c48751886e7af1b6d9a8369481df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_324_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.214263141155243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_325_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_325_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index abf0180ef815de94c894b97e4f181e7a0fc7243b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_325_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.242008662223816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_325_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_325_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index c260cd09aedd743318fed5e8a2d69a9bd0be9830..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_325_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.463438693682353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_325_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_325_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 97f697ff75d9e30ad1a1e4155c00ebabd1050bd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_325_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.266601880391439 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_327_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_327_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 893cff501419878057dcfa0905a98e5d9a929df4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_327_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6808550278345744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_327_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_327_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 33ca4ed593a95c5d6b5b15038a4fc8af684b8839..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_327_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9029361486434935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_327_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_327_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 540b5a4fded1b82680572fe3faadec9e68fc75b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_327_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7335674206415814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_328_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_328_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 9f14de7970e323079d4167eeceb2ac163e9b2377..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_328_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -328_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.120493984222412 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_328_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_328_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index fb744b2633281921fec621fff29c3b8331f27cfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_328_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -328_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1619539340337117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_328_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_328_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 7e7bb00c73666325d5cfa6ed9d4baa1aa3f326dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_328_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -328_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0936683058738708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_32_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_32_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index e4e8b29f7c187a334911651279bc6324f51425a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_32_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6719619274139405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_32_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_32_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index c6151bd4f6e6714cfe1bba68e74008111720fa7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_32_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8660993258158366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_32_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_32_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index d1b6f3d951172b5a12bbee5f2064498cc9122a81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_32_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5369787851969401 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_330_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_330_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 0c5fd14ab41df48503278429c42fb0e80f61dacc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_330_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9510884086290994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_330_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_330_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 831ef86fb74fe2da09610d30629842705ded092d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_330_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.415833075841268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_330_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_330_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 5836c1cfb0c6c73a43138aafcf991e03340f1edc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_330_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -330_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6822487433751423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_331_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_331_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 73a02b2b18bd0e1b5631de20f076b6b06721e6c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_331_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.638159656524658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_331_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_331_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 7622ea53263270111a32117f5a949dd643420513..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_331_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.527135721842448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_331_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_331_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 22ce979a482b8da180e666ceb2a20caa15801938..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_331_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.0042136669158936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_332_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_332_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 033c328569c950f1e6d737b42ca78df0e3cdea1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_332_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.813689613342285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_332_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_332_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 1c9b719f01d422557dabb95952116c877d63115c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_332_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7835193634033204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_332_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_332_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 14a7ca837911f4ae4226c4759b628a35c69cd631..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_332_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7144099394480388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_335_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_335_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index cdec7a05964058a310009909500f207cc018ec3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_335_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9641231536865233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_335_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_335_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f43cc0aae5268617ebe207809d99a26cf47e9040..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_335_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.3296807090441387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_335_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_335_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 6aaa2040b09727526e1cacaa556fd0641d764197..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_335_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.136763123671214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_336_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_336_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 0e732bf6ccb1481183fd3e03082f235c1584cb91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_336_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06058770815531413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_336_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_336_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index a85867eadde16e9084e5a867690b133bd435183b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_336_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24511528412501019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_336_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_336_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 4345296e6040e66ec1315179de2ca54dd83fc362..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_336_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2948770840962728 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_339_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_339_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 5c9e962cce1f3d316ceed5a577d61abcd6802af2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_339_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4903173367182414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_339_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_339_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index de7a4d57ea86829446d815762df13112f55b75b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_339_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1899206360181174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_339_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_339_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 73da50d73f32e36a62487e61df1ff01e06c4721b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_339_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4533592462539673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_33_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_33_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 3f365f3ad5a83aead15ea4931d65bbc01abbc847..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_33_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -33_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0742689967155457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_33_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_33_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index d2f271c409f77874c54ed1a14a8597a6644f5eda..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_33_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -33_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4362345854441325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_33_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_33_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index d7bfad9724234b375c8fcc707d0631b44d77e61e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_33_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -33_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.14833824634552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_340_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_340_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index ecde9e98fc9d15919d56e919a05ed0e26461a057..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_340_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7529560486475626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_340_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_340_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index e64d1c6b1d08def7b9ad4ae1837d3f68ac4b442b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_340_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.3424274881680804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_340_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_340_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index a49ea01610c961d6d9fd9ca3ad97eb0df9b482e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_340_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.145502479871114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_342_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_342_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 1a74c3ac033ba9807f38a0a4a48757124665e9fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_342_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9177754322687784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_342_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_342_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 78e66cb838e5382ca5945ec7ee72103fafdbfd99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_342_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1772136449813844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_342_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_342_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 8f91be740e77fd0f5cba953d24cc2f43125ba199..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_342_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.162426511446635 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_343_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_343_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index be7d85c25e68baf8610ad1f0a35160573cb82bde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_343_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06431300640106201 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_343_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_343_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 90cd3060cf03572f3c3cb0b33ea1d7ab1a53b0d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_343_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23966081937154135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_343_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_343_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 3a07a44f2c69dc3401f18e7f9a5897ca6b407d43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_343_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.041868325074513754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_344_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_344_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 10711549d971e7a07a927008cb7f5f81f20dfc4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_344_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -344_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3125625133514404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_344_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_344_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 4d47cd0619763b9d022c9060b65734b0ae2be650..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_344_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -344_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5201878229777018 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_344_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_344_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index cf484671206110a575dbc6a9157b72a5a893ac75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_344_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -344_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09073533614476521 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_345_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_345_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 9172e6de1aa854d4d7f1c1f7994b7982f3da7340..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_345_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -345_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20033368666966755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_345_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_345_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 85a3c46bde9f0b065f1fee3b34fbfafce8451793..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_345_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -345_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4665441393852234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_345_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_345_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 07cfbc8411657b3b24d633e4f83f6c5451d379cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_345_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -345_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.040671694278717044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_346_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_346_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 88f2bbc09040a8e06c26b4cf3500b6100f59112b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_346_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -346_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.30501944621404015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_346_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_346_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 50c8740160c296580a7ff629fdb9f3914a4c839f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_346_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -346_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.25240745941797893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_346_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_346_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 3777800b577128a71fbdbe0f4788b32e7f1b8249..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_346_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -346_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05050144990285237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_349_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_349_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index ea7fb9f9a5c5ea35c70f7ec195c1ee67e1161e7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_349_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -349_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7882929762204487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_349_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_349_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 911cc49b5f0497451167778b14c434a27607ae09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_349_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -349_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.8274262070655825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_349_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_349_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index afe7cfce7d30784e7072b19d3642584f9be77d68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_349_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -349_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7850050568580627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_34_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_34_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index fb757050ceefa05daed591a0ef4035e35230f40e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_34_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4338003993034363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_34_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_34_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index bb2a1c3a1aea81149a7cf331992fdd79b361e966..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_34_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.572577695051829 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_34_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_34_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index cb4fa698b26a7c2303240c210942bdd79193b005..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_34_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3848193049430848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_350_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_350_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 06b7b9aae53b9e9fb5d35fcc32d708c980250857..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_350_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -350_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.304344884554545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_350_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_350_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 460459400e7b64a7edbcdbc072181c61f2d54a51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_350_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -350_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.6081716338793437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_350_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_350_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 525140bf20c22ecde42ff7c95e898f936959a2cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_350_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -350_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.10853488445282 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_351_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_351_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 1daca0e08f76691ff214490c7bfb8adc2c6d314f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_351_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -351_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06832337776819865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_351_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_351_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f1df750da7220da31c6fcbd27640cfec94411c83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_351_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -351_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22370471159617106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_351_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_351_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 54a4e7f2baff79d78d7588ced2dfbc8f478f029e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_351_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -351_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.047624643643697104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_352_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_352_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 485705f434060a22c5de03232489e65da1327e43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_352_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.862720743815104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_352_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_352_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 2f2750a2039193fe375a06fc45a071cf8b7339f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_352_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9997655590375265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_352_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_352_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 31e670fe5113b96e42b4e750c891125fd406dbf7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_352_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.994510734081268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_353_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_353_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 4096a6dedee9f52fbb7e327ed6eb8c4a0aa41852..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_353_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -353_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6253734827041626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_353_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_353_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ea71f7cb819e8ef0717aa97436e076e3c0e35489..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_353_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -353_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5144920468330385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_353_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_353_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 2e12bfadef1653aed396633922280af66a2fbbdd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_353_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -353_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.49761346181233723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_354_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_354_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index d81b471d31056d30850f9c2e9da54c42764b415f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_354_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.581318509578705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_354_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_354_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 0e61716e5847b4865ad1497bf1fc657934901cf1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_354_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.6425126711527507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_354_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_354_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 10299590ca3cd8034ef57ef720ecdd8e6cec6fc1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_354_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9091970562934875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_355_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_355_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 1bd7f0a05c2a7c763b33a6824f0e3c9e2a3e0779..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_355_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -355_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1599375645319623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_355_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_355_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ebdb8071cbb18b4c9b978fbf271c3e15f6405a63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_355_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -355_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3239603439966836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_355_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_355_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index b584965562681adb51ff4774f6d9dfc655018e8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_355_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -355_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.141822644074758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_356_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_356_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index cb71c300f061b85a2369df49103c71f038a93fa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_356_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7171810785929362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_356_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_356_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index b2f80eefcb4da8508553e336287266c025bea8f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_356_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9548158566157023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_356_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_356_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 3718ee75a665d510e31e1230114c6c09f9f51fb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_356_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24487877289454144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_357_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_357_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index b773ba67ad7122c3da51dcb416844b894f25722c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_357_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3836742043495178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_357_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_357_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 5c84b16421b488f7bf95da960414f35730855e64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_357_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5814517696698507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_357_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_357_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index fb7576d472f007f094006f95409083df55f030be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_357_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3255763570467631 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_358_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_358_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 5ad37ac50c4b3f108bbde5c8b2f80bf5942ed1fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_358_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2257802367210388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_358_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_358_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 8193e967a1a5111512649bf7810664ea99053ce0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_358_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5565286676088969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_358_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_358_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index e93cbbc934ebc343dcfa6cade142544eda11f42c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_358_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05776101350784302 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_35_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_35_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index e75634ed1b2b637802da07b2cbbe80a72eef4d45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_35_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9711203654607137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_35_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_35_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 274b49aeb5edf4e4ac3316c75ec12cd106ecfc01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_35_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9395067691802979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_35_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_35_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index c5bc66621096ffeeb5031a46794014fc13aeb178..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_35_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6815112193425497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_360_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_360_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 5ea387126e3a3d62670ceb3e4198a1312553720b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_360_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.998519480228424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_360_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_360_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index d073e2c5d94ffcba16bbec6ae05bbed17d314d43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_360_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.570173501968384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_360_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_360_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 7733123561cae2f9d4208ec6a1c04b7a1b4e9dd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_360_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.309069748719533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_363_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_363_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index da70a68fbe3980194532c1291d9bac5467da9f82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_363_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03145378033320109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_363_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_363_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 61ceb3f1ddee1a3fbef00c262d6c21c1523528a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_363_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31583773295084633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_363_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_363_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 37c644ab7bdd181362b3688ea51cd43b9f857d67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_363_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09760357141494751 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_364_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_364_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index f5ac5f1938bd7fd73270cf60e3af9df6fec5fa59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_364_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -364_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08437992334365844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_364_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_364_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index aa898b63f6ebd212a44099c483d7dd0fc25711b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_364_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -364_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.27959235906600954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_364_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_364_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index fa3d2694f63679f0e3ec00177748ad3c336f2bd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_364_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -364_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06287725766499837 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_365_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_365_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 3160775aec2036473bd16976eff29b439376b32c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_365_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -365_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04086009661356608 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_365_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_365_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index a8f7f70d2bf969b9e7c8ddfd3e0f21114d206ff3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_365_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -365_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23444464604059856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_365_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_365_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 439f5c93fcfc4c81fd6c8663ff854dd135b2c677..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_365_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -365_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2657389799753825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_366_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_366_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index e94309d45e393d7999cc746f1357a25babf6b295..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_366_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2166329781214396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_366_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_366_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 3976d3c498964ce0ab7f0ebcbdeb002aba9ecb97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_366_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.43744895060857136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_366_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_366_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index a42f43ce20de95640836601aec8476c081594f3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_366_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04909828503926595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_368_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_368_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 1aa1d950196ba9fadfecd1d0f8cebae41798b284..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_368_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0696734110514323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_368_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_368_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index d6093fddbc1c55a1efb519f5cd24a6cc7da75d48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_368_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.33783512910207114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_368_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_368_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index cbdc2e9a1e0860cab564818d677ce16c72026bd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_368_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10618589321772258 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_369_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_369_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 3aca1cdc7ae20f7bfefaf57ec56d0923e267d97d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_369_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.019201223055521646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_369_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_369_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 91016f4220ff28ccb5d3cf36b550507865428833..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_369_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24324992497762044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_369_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_369_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 6bb1a8c80e59893b6865a4748ab98ce7d7057f9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_369_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04364404280980428 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_36_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_36_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index cd5154eab370f14e81bf992ad24dbca8f7f3c351..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_36_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -36_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.044264642397563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_36_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_36_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 880886d2f6b5deb3348a4f63018c71e8753f24cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_36_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -36_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1460223317146303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_36_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_36_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index a60e4aa71ea6c899f7add90ce4c2725499b2627f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_36_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -36_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8728336811065673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_370_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_370_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 99d66ba7ff42ae6db5a718401e9eac64a431b2af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_370_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.38563249111175535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_370_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_370_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f2b9d58e4106b9b79b6c3131e0af2c409ea0da43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_370_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6153240084648133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_370_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_370_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index b19725ffc14b6208c9d5f83c530cc70ce00d5778..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_370_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3365248362223307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_371_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_371_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 35c3d2991f6109680b75b899e4ac374c71677591..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_371_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -371_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.33969446818033855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_371_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_371_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 1a94f9ca7bf0c4bf55dfdbc67d2cbb960aaf12c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_371_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -371_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.659035861492157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_371_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_371_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 5aa9eca3fe0c0bf42408e37ede4aa9464247c0ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_371_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -371_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3795270800590515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_372_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_372_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index f6b2f7f3f91c7324d77ec0c50bc139c124e05f87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_372_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.47416999340057375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_372_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_372_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index d677a1b7747f7aab1600ae793f48192b340c7244..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_372_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4328361431757609 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_372_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_372_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index c3c001aab4a96fc9e19b18927b5ea31ad084b9c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_372_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20449264446894327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_373_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_373_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index dfd1127fdce4382efa2543d0eab99c3b1380af57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_373_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2666446487108866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_373_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_373_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 15d72a867bfe931346c6b027cbdd91b48838a0a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_373_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.46530116399129234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_373_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_373_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 77953e574a0fa9ab8f2fd5644a481f9a81baf15b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_373_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21083186467488607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_374_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_374_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 216433084b0ec9db8d6887f6aa239da4972bc663..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_374_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.057302387555440266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_374_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_374_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 8206db11fbd7dd9d257d109d33d7eb3f5e8b5f06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_374_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.44157542785008747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_374_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_374_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 89804252e2eb5729d612acf5f19a21e52d88becb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_374_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1567929943402608 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_375_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_375_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index ae45e19fce09f27ceb29373ee8d93d2439641d2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_375_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31075451374053953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_375_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_375_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 4becae1aaa90fe4c915bde194d49ffccdd2c766b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_375_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.535112718741099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_375_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_375_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 9d278406d41e4ce59850b10b43f7ff788b84039d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_375_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31378445625305174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_37_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_37_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 8ad422231dfc39bbbafcc3baaef18a9f45044882..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_37_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.837497309843699 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_37_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_37_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 06c04fb245e4a4691eb41c94d5607ddd644304ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_37_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4158458590507506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_37_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_37_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 7556398df70999bfbebe2c35ec967b9e14d3351e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_37_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9331533789634705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_38_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_38_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index ca08e18e342895b86691eba380a6db7c7be80128..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_38_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -38_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7841557423273722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_38_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_38_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 8bbf580ee2fca96366f694b0423c08edefd34f0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_38_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -38_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0883946140607197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_38_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_38_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index f396509caa4a99376c4152b605aee87e11b33d32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_38_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -38_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7483906269073486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_39_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_39_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 62e5d4c196f45c4e8bf8efeb625fd08a088ee3b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_39_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -39_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5750347733497619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_39_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_39_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index fb95608fc077e82d0b804430818be6a3320faa29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_39_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -39_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7372089346249898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_39_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_39_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index c64d9b08befe5f9015831b5f7d8d4ebc6d5973c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_39_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -39_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.485491152604421 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_3_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_3_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 93bd5e41d402ddd49f00a564ea5fc9187b185cc8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_3_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9264738321304322 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_3_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_3_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index a12afdd2beac8df676a45f16029be0a2c5eb6e2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_3_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2724538167317707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_3_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_3_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 96f1e4143b33569092884e25a45649110ed5cc9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_3_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3337847391764323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_40_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_40_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index cdd68c808eb46dd79fdbca1a458a92a5a68440a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_40_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5532498200734457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_40_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_40_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 963b92255740db55e7e698e5bed6cbf74f5d37ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_40_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.139619696140289 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_40_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_40_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index e089d8e84082d2772012fcd7d3c0572cf9497b67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_40_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.8771778623263042 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_41_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_41_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 5eb2eb19c743cba8b3a957c781ce2bc8faaf0df3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_41_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.8557748635609945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_41_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_41_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index c48ca008fa9e7d66d7d386a9e6da4f566bc59833..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_41_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.248652438322703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_41_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_41_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 1d76c92d53680998f857398977b01ad8747aa7d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_41_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9287149985631307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_42_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_42_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 3b4a0854956074b1fa69fd83cd0c152ed373c324..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_42_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5804046352704366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_42_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_42_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 76555c42ee2a8fb9798df6e074fbb5b032f2ce3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_42_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7770177920659384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_42_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_42_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 53c46baab3ddce126dd212a31b48f37cce3b71d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_42_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4524181644121806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_43_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_43_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 6e367066b8503136d6fdd9a74f0f7ccc9c8b11f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_43_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6695451021194456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_43_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_43_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 636d9c6db2b13514905eb202441b33c1af7177fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_43_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.952592972914378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_43_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_43_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index bcb339c6f37faad2105353f83542896dedf03bfe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_43_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3283804217974344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_44_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_44_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 242ef9d55420cce8c9b86fe35b9bc605ffc5921b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_44_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.2408578316370646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_44_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_44_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 1f8124b4f9426fc5c4d44a8ebc22a653588ef545..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_44_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.576544535160065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_44_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_44_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 12fac944ec8f3090e32292e92006d26ada3b0400..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_44_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.254068072636922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_453_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_453_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 55b7c33eb762ad6f6a00a68ace61b2e56f61d46d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_453_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -453_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.269845708211263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_453_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_453_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index a0b09c6adbd530bb9bd87b24e0172bd8d0a817db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_453_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -453_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4331631263097127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_453_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_453_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index a9ec3bdb5cd3500836109456f82677d1d32199c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_453_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -453_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2702624599138896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_454_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_454_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index c24e37be3cb2effb7ed069249166d38e6b1e5c62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_454_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -454_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.45639546314875284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_454_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_454_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 2cb38751b5ac452be68c3ced32096459b79451f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_454_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -454_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4791985193888346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_454_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_454_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index ac4bbbea4c1d0397ed03a3a7005f8635178b953d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_454_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -454_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2256703813870748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_455_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_455_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 4237fd958652971eb5c2de92dd9dbb8ab40ef054..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_455_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -455_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24959267775217692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_455_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_455_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index bd7e8cf30a3de3f20641df1d9f004d093b917031..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_455_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -455_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.47730201482772827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_455_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_455_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index c8d0ca3b48c6a9f6a3d1a9b8a7661857fa9f92a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_455_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -455_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2808856209119161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_456_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_456_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 409c1e03c6438a2081f099ef8e9182ac7f231665..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_456_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -456_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.45820592244466146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_456_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_456_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 9dfbb4f8a1fe205219a18036bb2ebd9021c92528..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_456_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -456_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4714470108350118 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_456_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_456_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index f4b6f900972fd5a451cac4fe115328e439fbd91d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_456_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -456_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2227195143699646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_457_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_457_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 19fa43b8f94d1bb9560035e56cfba3edc1cfb79d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_457_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -457_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4186321218808492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_457_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_457_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 85050bb6882b97532fef2f780822cf87f5a93239..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_457_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -457_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6997184594472249 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_457_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_457_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 4612bad967fe996ae1d81e51fbe48ddc09a5ba46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_457_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -457_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3901697834332784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_458_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_458_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index ba3b40d3acca77e6854b18acf2ec1d2c32793dc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_458_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -458_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2729364116986593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_458_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_458_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index dd52a3409579a7b16cfb7ec89f040f8a0b1b2f4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_458_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -458_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5363809704780579 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_458_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_458_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 88851bd1f51658c033a2bb99f4a90bad751b1c1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_458_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -458_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23534566164016724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_459_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_459_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 3725fa677387101b62e48fe56816125a96330803..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_459_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -459_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08258362611134847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_459_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_459_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 01045657687232a44bcc8a14a74b0ae821c95dbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_459_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -459_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22040979862213134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_459_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_459_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index ffadfb00ef1ee38f5bc0ce3879e518738945250f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_459_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -459_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10174069404602051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_45_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_45_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index f07f1e865b832ca896508d7668a1616d5c39b0f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_45_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.0122713843981423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_45_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_45_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ff26bd2fdbdd74139feaa9bd080105a0aa5d95fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_45_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.6112630407015485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_45_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_45_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index c20a75975d95783647b21770219b88f09469993a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_45_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.637935201327006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_460_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_460_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 96ea91f9b0e968f1815e01aeaee01be01aff9154..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_460_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -460_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09825945297876994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_460_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_460_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 3b2282c016ce1dc13728d7e88bbd8e947da4a681..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_460_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -460_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.35898569027582805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_460_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_460_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index b6bd333e4f85433f25cc8514667acee7e01ba2ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_460_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -460_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1071553905804952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_461_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_461_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 465ee9d06f5897b94cc798b0e6699985196c0d45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_461_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -461_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.025954957803090414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_461_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_461_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index cf38dfd26a0e3052e63360e91b52027345309b6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_461_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -461_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3327137311299642 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_461_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_461_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index d1e7b52bbb22f66547636759a423b8d016e4bb99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_461_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -461_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.024311939875284832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_462_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_462_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index f376d56d3f809dafaca8ef97dd7f570a4731efc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_462_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -462_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7652137875556946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_462_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_462_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ffba3af4aa7bbfdf7af2987cd739f58a378ea958..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_462_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -462_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1281998435656229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_462_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_462_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index dde1bb29c67b3d21d7dfc12feb21ae1d1cafad88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_462_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -462_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6830040693283081 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_463_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_463_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 6c88669762bb154062742b3d53062eb9b843fa92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_463_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -463_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3778869112332662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_463_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_463_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ed5656b099d76e4b2412184bfb1834a6a46bddb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_463_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -463_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8849576036135356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_463_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_463_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index ac0452f996a57e174681ec9e52dc13f806e66466..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_463_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -463_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5689437588055929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_464_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_464_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 9554c57e82421744e0a400befee6fe3b2754348a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_464_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -464_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.035184693336486814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_464_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_464_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index c969960b8f4d6452ac5a13a7e8b9ea5e386b9d4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_464_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -464_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.38059566418329877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_464_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_464_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index cce67cdad3dd13af4762f49a17b56b07a440ef4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_464_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -464_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.14272040128707886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_465_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_465_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 40adc4abdea6a9ac914163ccdce38aa63c263805..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_465_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -465_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20951766173044842 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_465_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_465_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 01a6c96b3c58cc8750af6f2aab67e2f9f87b4dbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_465_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -465_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8698022206624348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_465_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_465_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 1bb196b07f4257dec8c917930698244666225931..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_465_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -465_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.46625177065531415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_466_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_466_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 7fe67886c86accca29bd9f058be0e3099b729f7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_466_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -466_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18010011514027913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_466_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_466_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index e90bfbba403310a35d75cfb3f5bbe528e455db8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_466_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -466_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5209821184476217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_466_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_466_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index cbeb6ddb36817f58da09e436ec9c582b22eeeb29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_466_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -466_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21553392807642618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_467_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_467_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 42ac2edbc74c7e4bc4498c4559b29201badd102f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_467_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -467_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.044520783424377444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_467_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_467_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 87f2c440f45eb39013a9245d13541c5cee4263c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_467_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -467_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5173209269841512 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_467_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_467_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 68871d88587c6b169a6a8de94564ab0ee219f2ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_467_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -467_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04798510471979777 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_468_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_468_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index eaac0beb97d4f6c621318f576779fed80c132db1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_468_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -468_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.038750851154327394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_468_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_468_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 5c9e1694ee0e9cbd2faf41f1ed0a3c6fd63871ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_468_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -468_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.29092960357666015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_468_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_468_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 803978cc1e296051feced36f77aec89f93e7806f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_468_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -468_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.01346046527226766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_469_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_469_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index cd9ea22f8253a53ddca3e7cdfaa0e2dd739fc563..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_469_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -469_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.248872176806132 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_469_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_469_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ce66336c9e3459f4a0ec272394235d743bc93465..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_469_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -469_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4823862870534261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_469_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_469_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 1e70a29f2a13b10c6f16cc6508b66222973ad18e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_469_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -469_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22813311020533245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_46_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_46_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index bdb55f7a27add18266570fd97ccc253c638284be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_46_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.8949753602345782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_46_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_46_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index fd525c1c3ccd3028b452fbaa5172b82c2a2d9e15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_46_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9972787380218504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_46_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_46_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index ee72485fbd711fea1bb6d7afda3bf7de374b494f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_46_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5214292287826536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_471_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_471_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index dd006224fb39b6d5484e5ef782be100386142099..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_471_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -471_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.024972363313039144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_471_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_471_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index cba503c82fad262d0323322e43c3e028e1edd98e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_471_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -471_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.28083827495574953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_471_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_471_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 4976de4041ac8a55573b3799e60ec3d1a2468117..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_471_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -471_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0495255708694458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_473_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_473_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 779ca0be854ee86149093c10915455811d1b9ffd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_473_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -473_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.018423565228780112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_473_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_473_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 1616b58f00a561dc80ca51e4d1d2f2cb81845045..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_473_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -473_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.25093448559443154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_473_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_473_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 000c27d052a2f57511eb9aac00c5f36c8f48db55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_473_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -473_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.010488426685333252 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_474_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_474_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index c2e6c986007f83642833025dcc70cf6a8d5bda31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_474_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -474_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06250549952189127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_474_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_474_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 4cbce02aafebf5afc084f3a6183db593ac0abc32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_474_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -474_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4754946152369181 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_474_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_474_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index b584766035ff0298da0ab8a9c19e3669e7c98cd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_474_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -474_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04109179973602295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_475_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_475_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index fbf6928de59f33579941c3bc23e359b0dbc4c268..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_475_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -475_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03685466845830281 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_475_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_475_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ca89042e8ac7a46ec8ba73e192eba703985dffe2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_475_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -475_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.40242802699406943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_475_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_475_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 33a31636fa136cde068bd37246b975f3843b1fa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_475_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -475_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.13325416644414265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_476_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_476_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index f0f080b56c86719b5f50e2429f30271649d92980..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_476_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -476_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.037867693106333415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_476_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_476_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 3adc3f6c61c59953f96c8e438247617f5b4b5955..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_476_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -476_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4306241472562154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_476_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_476_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index daae4144d0bd3aeada989ec148ac22a0ecc6a60b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_476_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -476_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1329232652982076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_477_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_477_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 8bfa94bc4bf1ae0b2b222ae9f16a3d5961233622..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_477_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -477_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1376216967900594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_477_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_477_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 93508575ff9a4e8e576daf7a4883139093333cd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_477_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -477_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3327866991360982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_477_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_477_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index b9043017358835b4bf2e15a53980ab6f052b5f1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_477_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -477_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02685776154200236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_478_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_478_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index cf975c9f2a99a1092832361332b0dd053aac193e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_478_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -478_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.16417308648427328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_478_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_478_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f6b8db5be5847318355c2e9688222bfc34706ff8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_478_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -478_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.40009884039560956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_478_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_478_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 4d39ab0745078ea862f772513ae7fbfb8461b462..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_478_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -478_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.16262067159016927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_479_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_479_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 1fe2308fca3ce64e417e05540212a49dcf0cb883..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_479_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -479_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1504155953725179 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_479_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_479_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index b04936bf27f2cd6f6d2c6e2e8af0ebbb9bb2aa30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_479_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -479_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5039888540903728 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_479_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_479_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 4b2f3220572f367e4e1da29cc157ea5049a97ebb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_479_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -479_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2382198969523112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_47_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_47_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 1599cc59147b849270af222b64b0af809f2786bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_47_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -47_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.729547671477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_47_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_47_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index a25e449e878211371377693ce114c57b8cfae635..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_47_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -47_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9730599840482077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_47_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_47_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index ede100b9770fc026c18d10b719f843ba0ee7ba16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_47_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -47_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8958739956219992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_480_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_480_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 2f9465a093398ee657d6a386546be9bd6da08671..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_480_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -480_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2586376190185547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_480_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_480_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index a527a81e2d069c89c957116efa67261920cd451c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_480_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -480_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5361924767494202 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_480_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_480_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 90cbd5c4829ae52750c5dea5da5b7f8cc9221fe4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_480_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -480_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2366150418917338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_481_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_481_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 943f736b37442c3125f4bbd756d4f97894d22cf8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_481_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -481_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17299249569574993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_481_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_481_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ab9b8296be9bd792d31615355aede41ebe7ad4ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_481_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -481_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4387566049893697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_481_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_481_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 19a80c81b702032e56e113726dda830694b59769..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_481_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -481_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.14570689996083577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_482_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_482_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 3c1d56c0054fae2056b1f67b546393d715fac637..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_482_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -482_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.27771520614624023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_482_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_482_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 15b3e6dd0293c03f75ee8104d7ab39e5602bf451..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_482_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -482_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.48794028361638386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_482_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_482_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index c3e54feb00a1843dadcd683a0477405d9a6fcab9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_482_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -482_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05230919520060221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_483_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_483_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index fa96b0a0777a23de44a0d35f41ab597a825819ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_483_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -483_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2534157673517863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_483_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_483_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 6ac45494ba700baa0b6719e41762568caa31f4aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_483_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -483_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4579901377360026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_483_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_483_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index d354fa46b5e94b7787e5500c5def8278316ebd44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_483_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -483_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08287485440572102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_485_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_485_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index eea8510ac571bcadb9ceb01a66cbe66d8f85f4f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_485_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -485_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23856693506240845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_485_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_485_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index e20449c461a86e92dcf32ba13a3a37146ebad19f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_485_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -485_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4294986963272095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_485_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_485_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index a6f3e80451b3c626eca6a887e6a23bea507a4bbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_485_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -485_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23376452525456745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_486_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_486_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index ae8457b8a1958ab691ba81c7ead7fba4b034818c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_486_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -486_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2216657797495524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_486_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_486_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index b6d530b9e22a47d459dc3bd17f2bfc5fcdc9550b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_486_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -486_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.40608370701471963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_486_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_486_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 7f213030ba4fcafbee08c62a1e5e887b3cc7ec36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_486_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -486_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22264347473780313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_487_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_487_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index e0eca01bfcef402593a95ef1fbdd30c286bec60b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_487_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -487_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04277581771214803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_487_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_487_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 8467ca45f198299d6159403ea231d6e108e05473..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_487_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -487_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.47955350478490194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_487_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_487_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index f7d5e0a80a3280aeebf455df4b4377ada7a93fc8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_487_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -487_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0421476403872172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_488_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_488_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 085382718bff93039cb073dda0da2f97bc9a66ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_488_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -488_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.26236567497253416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_488_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_488_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 3787c36586ed272437dbbbbe447e46c729e0c539..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_488_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -488_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4543575922648112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_488_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_488_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 590981583f438c68829c367aecb1ec5d2de70f2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_488_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -488_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04153602520624797 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_489_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_489_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index fc7e5d3de757dc79f8fa52b1a12e68e4a7a9aade..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_489_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -489_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2616437355677287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_489_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_489_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 785edb5d382777bd4cff7e0481da633f5bc51c4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_489_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -489_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4044642249743144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_489_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_489_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 7539e4bbc2d7a1bde5bed767f11bf696f37211be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_489_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -489_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18364952007929483 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_48_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_48_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index f6fcb8ea05410c5dce560bb3d0afd0f140420f57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_48_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9788417259852091 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_48_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_48_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 620cd6271a005d1881c780214f5ea9d71b61d517..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_48_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8780108610788981 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_48_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_48_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 5a3344123588bcffda1b431f06b0b9f0d92b5bf7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_48_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8443720618883768 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_490_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_490_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index a5e12e155fc094cb36bf4d4b959ffc07419f75f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_490_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -490_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03658187389373779 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_490_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_490_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index ad2cbd1438b151ce2e2970b936bb4118fe6267f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_490_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -490_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.32147043546040854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_490_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_490_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index a6d749971327de9b81046a25a5921b915715c63f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_490_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -490_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1603493611017863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_49_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_49_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index bf909af97cf350acbca392228bfd6312f48cfbbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_49_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -49_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.055197270711263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_49_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_49_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 2b931e03e4f0c00ddb7e3affc8295f2202609d79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_49_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -49_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.167704451084137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_49_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_49_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 019cbe0ea67160261b5af6d89636714b7dd43bce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_49_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -49_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.72278759876887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_4_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_4_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 48502cc9fb31147ab3e62a2156045df79f98e9ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_4_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.34771512349446615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_4_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_4_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index aa5d2a8003af340f04e9478a4b5e21112a2e6495..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_4_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.101662782828013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_4_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_4_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index bf1afc6ed7e0e87daa4bb007f74b0f42f9bc0dc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_4_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6903532465298972 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_50_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_50_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 5d0357b727e52331a8a2d6b3c5c83d48f22f88c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_50_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -50_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9597995281219482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_50_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_50_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index c92cdaccf20a3d28eff32afaf2751368a75fb981..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_50_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -50_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7611729145050049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_50_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_50_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 6daf207496ee1a752d3e67a947a198f2c4c32d19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_50_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -50_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.05382061402003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_51_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_51_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index e3c863309b8b52edbecb84f6b2abdc3ccd430459..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_51_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.381678601106008 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_51_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_51_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 3cefab530877f06bc48c601da36d9531e3fe220b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_51_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.780705678462982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_51_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_51_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 39b73a6b52e85ab8522ae69db656da3266284056..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_51_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9793312827746075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_529_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_529_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 25a4bd40e8d28c8ac012bd819e737330d0bfcfc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_529_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3403378446896871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_529_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_529_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 6f6d062c5975dfbe4fc6ad6838abce950b904bca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_529_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6182426770528158 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_529_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_529_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 8e6ace20c8d59f85efc866bde3ed17bc1c04d971..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_529_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4103091359138489 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_52_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_52_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 428b5881db4c34f8a09fffd11b89cf4a0e3916a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_52_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4112756967544555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_52_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_52_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 6471f0d4a61ddb97392fa28a1f91e44bc47081af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_52_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4415847897529601 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_52_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_52_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 18b31d33e8a631742960feb3ef2384188bacf1d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_52_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2029795090357462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_530_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_530_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 1c6e18a4a8c4dc4cded59ae14df31cae83108726..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_530_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10965642134348551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_530_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_530_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index e21ef6f2e8c9dd4a9f76b73e26aa64db63990ce1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_530_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2788709004720052 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_530_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_530_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index c82994b5e18c638a0422123786fe064504b0b76a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_530_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.017079762617746987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_531_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_531_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 3fea3bb2720e27eae8b0e4ca219ebc49e6fdbc0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_531_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -531_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6736184636751811 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_531_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_531_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 6bb094fba0299384158df50ccfe25ea27895203e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_531_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -531_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8751112659772237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_531_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_531_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 5c9cf3c7c5b8dff65fe813de2bdac8f4d7a003ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_531_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -531_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8418102423350017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_534_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_534_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index c3555fd99879c698c519fc49d29ed1af4f7af86c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_534_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08842989603678385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_534_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_534_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 2e5730d435c6a3a10c9024220c05a456dac0a031..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_534_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2734509547551473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_534_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_534_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 586ed4a619e1896ecc0024abb7b3e85c1004e812..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_534_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.019489002227783204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_53_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_53_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 4f233603872052d8245e830fa873b777cd6e6c1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_53_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -53_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.2672366579373677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_53_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_53_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index a640ca430b8fd534dbce5e25d85481716393961b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_53_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -53_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.256359346707662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_53_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_53_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index f726f3c58fbd9cf1c2e78400c66a9afe7d906d5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_53_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -53_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.2192781368891397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_540_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_540_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 4d44188f646102f2f8b07451b6af3013f44346af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_540_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03143008947372437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_540_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_540_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 916fc746e2f6eabd4c8033e317be8065703b6a99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_540_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17934449513753256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_540_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_540_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index ff996911917cf00ec070c1c4577d32c4f1176d5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_540_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.016566280523935953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_543_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_543_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 0d119bd1c808df181716c6122998043f209371f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_543_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -543_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02838597297668457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_543_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_543_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index eba90c3650e3daea5cbdc46e5918df2ed78905f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_543_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -543_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23164387941360473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_543_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_543_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index b8bce9ed58fec4c3b9bb49fe2195c0520681408f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_543_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -543_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.036923420429229734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_546_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_546_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 600216649caa84c9ce3b3b1bbf5717e388b25e7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_546_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -546_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06545626719792684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_546_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_546_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 5f89de9f860426e33f5cf25d95519e3f2d515bc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_546_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -546_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2207310676574707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_546_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_546_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index e53b82b03d5c7249c8fc9baa8634c64419317e12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_546_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -546_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.029694517453511555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_54_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_54_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index eb2cad29ca7db0b59ded2ab79f7df7d202585a02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_54_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.1716589530309043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_54_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_54_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index e74ccdcfe8734da6328621b5663af046e608dbb1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_54_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.981173340479533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_54_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_54_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index c7e29a26e803ad2a84d3edb208457bc31ad67a4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_54_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.334005292256673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_55_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_55_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index db32db0a5271b9f430dbe059e7c891daab3f79bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_55_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -55_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4796919663747152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_55_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_55_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 5770f99a8ff99f73b6317dc6774694ac94d2f6dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_55_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -55_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.906753412882487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_55_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_55_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 0734fcb525b0903d822ac9b5a051fbb5e37bd801..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_55_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -55_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.116601570447286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_56_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_56_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 3e9075883336954ae944329fde45ced0fcf95cad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_56_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -56_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1315932869911194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_56_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_56_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 96192c2ce5aecfd11ef0ce1331303bbf02e33f21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_56_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -56_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.074012092749278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_56_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_56_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 07ca42e9a8c4ee35c419fb78ec2522056a0d28d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_56_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -56_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.886960232257843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_57_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_57_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 5de73e69ddf7ec46cbb2ac7935eaca7694eb085c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_57_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.6219022274017334 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_57_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_57_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 1e9d9258ae0b6bcc7d4c0e6af6ddeca8e3282d2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_57_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.7620403369267783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_57_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_57_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index fc7c4035b394e305ba11a3a563b92d73c18982f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_57_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.5867771108945212 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_58_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_58_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index ce60b013a2a11e48b17d922f917b380f446c60cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_58_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -58_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0642812649408975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_58_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_58_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 1d3161b9a4ad0460e7161834e9a6b3a23da100e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_58_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -58_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3133845289548236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_58_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_58_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 5ffa43053ce7cbd55a47151f3e6e5e198d7eac7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_58_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -58_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7502718925476075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_59_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_59_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 3e36061ed06fc8a2bc9bfdf91ca3f7d67fc64458..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_59_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.691135056813558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_59_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_59_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 4b0be525585470861eb167a4dcee304239053f64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_59_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2451942205429076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_59_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_59_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 1d6075e3a6196b18a13a261046e0299b8ae91815..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_59_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.526723261674245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_5_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_5_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 7ce50dc4263ee232aa281df8a724db705f18aca3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_5_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7290928800900778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_5_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_5_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f78ab6c4beec1adfef1e156a41101629f21ab1f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_5_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.934960663318634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_5_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_5_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 10318bd33931e1fb2226b2f013661fa0b17cf192..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_5_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8134935776392618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_60_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_60_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 2bf88f60f5c29c43456476d1fdbc8df1c304f6b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_60_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.062175591786702476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_60_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_60_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f61e11f8935d2bb2795967f8009a21b515564324..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_60_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2525331894556681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_60_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_60_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 457743d35274fb1d68f0b36432f1a84e50c1a759..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_60_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -60_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.010891878604888916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_61_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_61_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index e4c72dd671850e6bfa804670deea415f1758c798..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_61_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3730409145355225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_61_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_61_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f8574e8fcf484d47bda98ec8d5fd9056a568a8ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_61_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3344871163368226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_61_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_61_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 4b2f873977d7c23747801d4b89a2de78e0f28744..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_61_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2179720997810364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_62_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_62_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 2bdd49d5c8cfa19d0b75ddc646b2d2535fa9683d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_62_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.6784985105196637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_62_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_62_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 7c06b157e7210953ce7c91758f4c41555cd9c587..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_62_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.17940190633138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_62_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_62_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 5f6b8f50fa47a8f1b212996fc10e51c91ede0e81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_62_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.2360842267672223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_63_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_63_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index e1f04c6a2293434aa33552afc4fb50b5b4152606..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_63_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.341387617588043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_63_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_63_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f21cc39b6310145c0d55761aebddde93675b7aa5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_63_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.360821032524109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_63_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_63_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 567271a31e89129c235b0cfecc4d6393ee3190aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_63_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2954246481259664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_64_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_64_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index af6bb250af025a0226a77a0b84da86c8ca538a1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_64_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5463351567586263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_64_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_64_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index b26b14d1862a797a4051477ffacd80de962828d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_64_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1583152492841085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_64_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_64_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 0f36da1d8d5273d434bcddaf93ed6b2387ec5b6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_64_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6049415866533916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_65_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_65_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index f26b82c5b4fac54da05c679e874adb18583d2ec3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_65_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7661113381385803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_65_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_65_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index c074c62709021f1806e534e7aa10d7246fd97a10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_65_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0347325801849365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_65_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_65_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 27d279848b59b97bf3bc78e64e4277205d1eab58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_65_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7594330390294393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_68_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_68_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 7eca7b2b3bf916c9f4453edfc8d2f867360b4da5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_68_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22958051760991413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_68_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_68_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 7f013831cdcd793a9ad4203f5c554a41bcb8e0a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_68_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.44401315053304036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_68_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_68_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 31b5db85015b61536d267c11f342561d8fdc1517..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_68_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -68_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24161715507507325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_69_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_69_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 2c54fb214cf5ec055cce4368b7e62f011a2fb71a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_69_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -69_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0603714108467102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_69_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_69_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index fc856f91f2afc29f79f345bcc5bea58933659cd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_69_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -69_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22015345891316732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_69_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_69_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 9218435317d7019c452f015fa5b394fb1403fcc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_69_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -69_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.049273045857747395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_6_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_6_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index f098b8f666d45e6a7eed5e5d263f5d60ec8bcb38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_6_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.506847103436788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_6_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_6_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 748e86d30dc3da2a5d63e9e01ade86de45126337..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_6_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.969481348991394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_6_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_6_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 346c7e547b43bbf9e59e60d69d1c74162134f7ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_6_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6747486154238383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_70_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_70_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 165070f147711fea2cb7e330134cf5169004a2ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_70_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -70_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.051711006959279375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_70_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_70_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index d2f20346834bce34da877a478ad5af9829269d15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_70_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -70_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2912774165471395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_70_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_70_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index d7be04507449b2927a386050b9ae589cdc41fdf3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_70_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -70_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08553275267283121 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_71_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_71_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 05dd18e5a94f51fc85095faf9d96d3130efc0edb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_71_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -71_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.018765020370483398 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_71_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_71_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 11d1107bca2295d2744a7ac9b98f0ac02aa4c5dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_71_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -71_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2557994286219279 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_71_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_71_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 17030212e641991d0142255e0302c1976d476706..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_71_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -71_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06502085129419963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_72_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_72_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 72912ee0cfd97c20da6bdd3bd45da8ead954580a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_72_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -72_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22729103167851766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_72_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_72_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index f2d4bd2f7d39279a1009b41dd7587131793733cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_72_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -72_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.41844172875086466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_72_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_72_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index df63a19b960b8f4ba440785a95ecd535e312af88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_72_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -72_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04353898763656616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_73_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_73_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 81c91eee0157a6bcb555926472e1510bb25c9f62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_73_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06173424323399861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_73_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_73_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index decd033aba527901894856cb5d144806f2f89f5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_73_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5116527835528056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_73_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_73_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 66c5a1c393f879057992a63ffe7a8be3f5ae0197..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_73_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.26224164962768554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_76_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_76_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index d51b19651d44b3b06161d215873bdb8cab3f366c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_76_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3561220645904541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_76_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_76_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index c53df57295b95270101c4341b96b607125abee0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_76_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7494050224622091 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_76_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_76_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 2f6ad2457e96e87e56fbea657bd571e5462e80cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_76_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.27752830187479655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_77_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_77_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index edc50d437cd8282b0c2ee336b766550938162f53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_77_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7516666452089946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_77_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_77_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 6a8259db6904d1352b63008bbf73a4cc9789e222..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_77_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.913238485654195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_77_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_77_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 7bdc9bdef5ac648ad2e58d1d200fcd38d3fb42c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_77_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9081795692443848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_78_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_78_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index fe95e76d98cec79d8ac62ae4c223698a2ee20145..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_78_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -78_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2297626773516337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_78_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_78_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 00cdb42a307e8094f653e494d7bd28b96338d180..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_78_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -78_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.577086365222931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_78_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_78_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 7a6f10ddf6c375ca6f04174ce4a5e3d635a84c73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_78_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -78_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1406509041786195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_79_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_79_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 0315a462c027618bf2a383859172006b7bdeaa14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_79_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.089263931910197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_79_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_79_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 2a2ff67e361c08bc15725833ac029cde6946c62e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_79_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2002237955729167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_79_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_79_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 6a51b32168731877b7dad59e509d9ede0ce68bb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_79_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9047746936480203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_7_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_7_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index de0226c6e7e83b787cf13ba0960ce0d6cf71177b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_7_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -7_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.066151515642802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_7_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_7_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 3faf0d4cc2aa293422b223535d2d386115fbffa0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_7_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -7_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9697845617930094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_7_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_7_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 1dfd9a6c0c2a8fc19897ca009f64f1601b6b3260..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_7_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -7_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6673827608426413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_80_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_80_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 4cb65433dca0beb5d6099037e86cee27db24fd44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_80_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0994378050168354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_80_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_80_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index b103504db54fdee2184625c0f1eddb30c8d7d8eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_80_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.236291205883026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_80_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_80_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 92942fbba784e12dda5a29bbded582881b7255d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_80_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.1663363734881083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_81_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_81_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 6a47cff77a6f98352b6fc23c1d6dc095249c292a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_81_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -81_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7784431179364523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_81_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_81_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 63fdf56d65f4224341871077badc6cabac85f5f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_81_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -81_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1137194792429606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_81_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_81_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 4f0ef9ff03879852d896cb8a0c1c3f77a8a312d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_81_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -81_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9212290525436402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_83_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_83_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 2339981030d4eda9c9d311b063db6666634d877c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_83_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -83_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1906344453493753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_83_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_83_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 92e3cdb7551305b327a665ead5cf4e46310e7bc3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_83_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -83_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5664592345555624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_83_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_83_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 572adfcbc8a72d8340b2c0c3948ceefd9c7c82b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_83_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -83_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1631198287010194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_84_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_84_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 7a524ecd91f1690f28df5d31d430f4cb89fe064d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_84_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.022185742855072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_84_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_84_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index e33e18a53ba6c7fc6a9337b7f58385f7e6071394..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_84_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.361088927586873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_84_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_84_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index b66a8e9ba42741cb0f995282089b3ef814c963c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_84_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.197768298784892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_85_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_85_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 7c64ceb98c2eacb2f5a41dcac61726dbe49e6ee1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_85_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -85_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31363367239634193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_85_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_85_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index edd30e23174262ef1002e254ba5711bc58b2cae9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_85_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -85_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4948192556699117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_85_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_85_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 355e1eefbec36e90aa6925991126f5d068402d23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_85_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -85_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24852173725763957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_87_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_87_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 9670cdef9e6047952cc4bf65c8316cc5319c6873..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_87_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.189830716451009 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_87_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_87_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 4daa350cccfb3ef559524d1e86a026e97628c32e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_87_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.302812027931213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_87_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_87_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index ba80bdb5ecef846628d10e04df06a3b3e7deac15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_87_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2816979050636292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_8_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_8_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 54dc5d7a05f0dbc5d95f4b3494da5f7c4bccad61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_8_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7649592836697896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_8_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_8_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index e6e5d01d6602507b9ae5d571feb3758be0078137..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_8_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0907856583595277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_8_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_8_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 582b9e8a5612b536e73f4d969b99af88a8caecc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_8_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.496223239103953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_90_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_90_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 13f40d44a4d250f2742c4c5d5f62753116c9a6b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_90_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -90_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11450066963831583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_90_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_90_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index a4d6bf3e5a2c00655ea095d1e68a99b1ee5898cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_90_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -90_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7754361589749654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_90_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_90_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 0f87a9e014182ad0b3116f184ce4d4483d60c3bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_90_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -90_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5767217715581258 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_93_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_93_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 592855a025ceeb4894485cda536316d7fc3c73d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_93_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -93_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.058373860518137616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_93_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_93_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 82ae6ccbbe9492ff5509dcca2bbfdca1e6459a44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_93_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -93_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4848290681838989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_93_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_93_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index c2d41d757b784949fed02eb85cc4cd267a790024..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_93_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -93_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.29632808367411295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_94_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_94_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 1d1bbb9aac4fda13ad67468e2254296396b99f29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_94_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -94_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.35776705741882325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_94_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_94_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 8499444b4326d6b03a2abc88fa0b62be3828209e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_94_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -94_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5018383423487346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_94_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_94_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 1b8169e585a7981ca0b7181c09528f74e8285e94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_94_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -94_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.25981318155924477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_95_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_95_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 6f847f94171bf80184c1dd3fc919ef8c5d3da5be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_95_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -95_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6369949062665303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_95_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_95_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index c8e947a3acb62253375efb953cb436d639607d19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_95_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -95_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5106682777404785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_95_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_95_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index b2af4f52f6672ba3884e6abb3627b7d447ee4cb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_95_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -95_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4173940022786458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_99_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_99_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index 7b2f01c03f05fecee3825abc29c1d00d35d6e95b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_99_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -99_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.97742919921875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_99_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_99_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 1dc012b488d7008d222fe05130a147a377b4d3e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_99_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -99_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.099607483545939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_99_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_99_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index 0d2349aa65fa9c454e1a84c0da9fbc6756e3ea7f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_99_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -99_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.713471003373464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_9_TEOM-GR_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_9_TEOM-GR_D_GLOBAL.out deleted file mode 100644 index e5a5a599a8d46ceee5456fd5c9c997af21e26ee4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_9_TEOM-GR_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.680146892865499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_9_TEOM-GR_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_9_TEOM-GR_H_GLOBAL.out deleted file mode 100644 index 0774c78db9d5ce131d55a5fe080691173c85ab97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_9_TEOM-GR_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.0734527985254925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T1/0_9_TEOM-GR_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T1/0_9_TEOM-GR_M_GLOBAL.out deleted file mode 100644 index bcc6510b953cf0a27519adade7974dfae59483c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T1/0_9_TEOM-GR_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_TEOM-GR -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.442303891976674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199312_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199312_D_GLOBAL.out deleted file mode 100644 index f68d70844948367e0aff8bfa5c4fd1c8a09d4f71..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.0327173113822937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199312_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199312_H_GLOBAL.out deleted file mode 100644 index c5ba0cabbcc53c0d2e40c1a945ace2ac8ebf87f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.04118253787358602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199312_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199312_M_GLOBAL.out deleted file mode 100644 index 9e4dc8b3f99ecad59a213e68349167bc7b17e8c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.031905388832092284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199401_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199401_D_GLOBAL.out deleted file mode 100644 index ec6f1cb865ca48227c33f3d955f65fe34210847c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.042338228225708006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199401_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199401_H_GLOBAL.out deleted file mode 100644 index eda8fda6dfc0d0b1c1eff27bcf6421dca4372743..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.04847310384114583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199401_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199401_M_GLOBAL.out deleted file mode 100644 index e78c8c921e93fec3703a806c290f4e31f4490c37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.048254462083180745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199402_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199402_D_GLOBAL.out deleted file mode 100644 index cf9aef34d5b31b8738bc7219cf9020d8c01451d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.04520257314046224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199402_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199402_H_GLOBAL.out deleted file mode 100644 index 7d2dff72f77f400c5631fdb3a1a501be92116315..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.037527962525685625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199402_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199402_M_GLOBAL.out deleted file mode 100644 index 15c8e39ce7252b58b472787f29832bbe99d01deb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.045676747957865395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199403_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199403_D_GLOBAL.out deleted file mode 100644 index dbfa7216a84856e7d442c29c22e24ccd60287e96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.053074347972869876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199403_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199403_H_GLOBAL.out deleted file mode 100644 index d08d52a0b0c08b55a5c1bf2d8f80ec7e3e7f610a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.046545422077178954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199403_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199403_M_GLOBAL.out deleted file mode 100644 index 20c13bcae0c5038e10581ba1ae9dfcfa8aa6c3c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.04481989145278931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199404_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199404_D_GLOBAL.out deleted file mode 100644 index c2818ed051133644cea439111beb53d7b57845b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.04974410533905029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199404_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199404_H_GLOBAL.out deleted file mode 100644 index ee03a91921371c2fcdf46a9ac0cb93112c5f0cb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.04711318016052246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199404_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199404_M_GLOBAL.out deleted file mode 100644 index 142aa9bb97dd6c33a957f6b3e9c9f0e758639b59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.05565407673517863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199405_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199405_D_GLOBAL.out deleted file mode 100644 index 984a1973ca783e58c389af4e4776ec5df1b83cc8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.03592060804367066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199405_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199405_H_GLOBAL.out deleted file mode 100644 index 863aa452929b25665488b9ddb664800fa8125841..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.05097914139429728 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199405_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199405_M_GLOBAL.out deleted file mode 100644 index 39a7ace72170091ff19b3d2661ff391220c086f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.03200202782948812 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199406_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199406_D_GLOBAL.out deleted file mode 100644 index 4b8ddb3ff3835e560f8d84b04073ae7f8f4af716..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.03636395533879598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199406_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199406_H_GLOBAL.out deleted file mode 100644 index 6cbd4d485fe11e6a5453b0aaaed19dd810c43ffa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.04478118419647217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199406_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199406_M_GLOBAL.out deleted file mode 100644 index 7edd83e0e2c72a45e62fa6b834ab4d3a750cb65b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.051629086335500084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199407_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199407_D_GLOBAL.out deleted file mode 100644 index d90bade3a05c79ca210fff176a0d365a199791d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.03572890361150106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199407_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199407_H_GLOBAL.out deleted file mode 100644 index 24c72e5ac6f11d33c0f109d3a3bfefa159c86bfb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.041994969050089516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199407_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199407_M_GLOBAL.out deleted file mode 100644 index b34f5644f92b36631cbcefa323b8c98296e85bbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.03439350525538127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199408_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199408_D_GLOBAL.out deleted file mode 100644 index e5c42631aa92c8e90bd5a1fa4ba12969ede52042..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.038825746377309164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199408_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199408_H_GLOBAL.out deleted file mode 100644 index 86aebd2549ad1843e931c4f88bba2eefdaf27e42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.03581640323003133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199408_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199408_M_GLOBAL.out deleted file mode 100644 index 41f0f4961683d1059b1cc46f78fce393543f7c36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.030872881412506104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199409_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199409_D_GLOBAL.out deleted file mode 100644 index b7ec0b62124158e35f19e1f68b8f338f740be7e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.04703299204508463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199409_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199409_H_GLOBAL.out deleted file mode 100644 index 394d8f11667451840bcb6d7ebf78642504fb627a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.035660417874654134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199409_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199409_M_GLOBAL.out deleted file mode 100644 index 35408d26ae7c9ec13b8fd24bfd9eb85758d37e00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.05123277505238851 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199410_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199410_D_GLOBAL.out deleted file mode 100644 index 0e9992ca21bbd7159dc693b78ba3860032836d4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.055702622731526694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199410_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199410_H_GLOBAL.out deleted file mode 100644 index d7f7d0eed622dd6636c414a2bd99c853d230c05b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.039408429463704424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199410_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199410_M_GLOBAL.out deleted file mode 100644 index 9cc0debabdb310119b610c124848fed37814113d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.03715060551961263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199411_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199411_D_GLOBAL.out deleted file mode 100644 index 253d9bf82a2cd00210c043adedf9dc029292eedb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.037369736035664874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199411_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199411_H_GLOBAL.out deleted file mode 100644 index 3a9ff602884d2b54d0b2542e069956a4fca30055..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.0343716820081075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199411_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199411_M_GLOBAL.out deleted file mode 100644 index ac1435845949e1f81a3624c8dcfa29221031f4b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.0517806887626648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199412_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199412_D_GLOBAL.out deleted file mode 100644 index 6abbe8700af60ae15624ee0e4a25ae8290f710b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.03658923308054606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199412_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199412_H_GLOBAL.out deleted file mode 100644 index 81789920a82b0dc74b3afede9828b709503f1247..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.037134452660878496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199412_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199412_M_GLOBAL.out deleted file mode 100644 index 1118868a2fffe321c8f9bfe71ca4e8845dc2e046..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.0600833535194397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199501_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199501_D_GLOBAL.out deleted file mode 100644 index 1ab3de7477634ef3e6ac14594d6d01727d2987cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.04155321518580119 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199501_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199501_H_GLOBAL.out deleted file mode 100644 index 96bfaf9158c2308da5e1a31f3ec505ca73b1e2b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.04132549365361531 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199501_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199501_M_GLOBAL.out deleted file mode 100644 index a74f88a419cdcfeaad2ca3f272a2898d994056a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.049979801972707114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199502_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199502_D_GLOBAL.out deleted file mode 100644 index ac0aa4417661b626ed0cd55cbdd8b4099a58c56a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.05454709529876709 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199502_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199502_H_GLOBAL.out deleted file mode 100644 index b7e7fd8cc4ec1113ab39008f8242528eda9d8bad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.05558729569117228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199502_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199502_M_GLOBAL.out deleted file mode 100644 index 8ad79c3f3e54d697ec6218c555995c90ff9997db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.04442744652430217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199503_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199503_D_GLOBAL.out deleted file mode 100644 index 66603ef5afc76c0579828aba4b550e60c23db4ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.05144328673680623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199503_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199503_H_GLOBAL.out deleted file mode 100644 index a377b0cfc6ecb0ceac8383bac1a44749f0e199c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.061913446585337324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199503_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199503_M_GLOBAL.out deleted file mode 100644 index 1c05121c1b067b8b8bdf7460ee13c951c73fc0f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.03780850569407145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199504_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199504_D_GLOBAL.out deleted file mode 100644 index 76ce8f6477242fae992da100001079ac4c31698b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.05766714811325073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199504_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199504_H_GLOBAL.out deleted file mode 100644 index a6abdd76b5f19710a421917ded4530e15ec3ef64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.048117852210998534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199504_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199504_M_GLOBAL.out deleted file mode 100644 index 60c704f6091fe0ff2305d63ae650eda0c1defe5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.03663926919301351 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199505_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199505_D_GLOBAL.out deleted file mode 100644 index 05868619c42b5349608ff58c6cd752fcceb83693..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.03717238903045654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199505_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199505_H_GLOBAL.out deleted file mode 100644 index 4e42fe155b894196785073de64f9f077909d9f46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.03770196040471395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199505_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199505_M_GLOBAL.out deleted file mode 100644 index 40068a3719fd9fc67e8bdc8a37c7bb61e5e282f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.04861770470937093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199506_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199506_D_GLOBAL.out deleted file mode 100644 index 5fb061c8972466c47ff75da17318ab28b07c593d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.04773644606272379 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199506_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199506_H_GLOBAL.out deleted file mode 100644 index decc18d8c2091112ca21760c842153fa8524a6a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.04097433090209961 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199506_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199506_M_GLOBAL.out deleted file mode 100644 index 005f6056ad334c1c367db1387119fb6c506cdc0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.05852674245834351 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199507_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199507_D_GLOBAL.out deleted file mode 100644 index 655a33a2358172d0088313a4ef8d666a79aaa377..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.04406927824020386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199507_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199507_H_GLOBAL.out deleted file mode 100644 index eddd66461a7f8803d4b9d4bc2bac7cc47acf0b43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.049960843722025555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199507_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199507_M_GLOBAL.out deleted file mode 100644 index a2900c64903b0546f88b625af750a76444f0a953..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.03874205350875855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199508_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199508_D_GLOBAL.out deleted file mode 100644 index 98cfc93cde9b947df505f44bddfac5698ef5758a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.053332042694091794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199508_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199508_H_GLOBAL.out deleted file mode 100644 index 4bb3a1e67d5db84d8566ef6f300e6106173eab61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.06016030708948771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199508_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199508_M_GLOBAL.out deleted file mode 100644 index 77fc9f60bc53b0df13f49a0e3b3c5deba496d0c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.04678068955739339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199509_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199509_D_GLOBAL.out deleted file mode 100644 index a8e4c5af2964184e70804e68e589d78ebca29882..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.05411134958267212 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199509_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199509_H_GLOBAL.out deleted file mode 100644 index fa918701dd4906d6908d85cb14b85bbb50e6130f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.040670585632324216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199509_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199509_M_GLOBAL.out deleted file mode 100644 index b34ee093619bba0462548bdde91614003acca8fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.05688817898432414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199510_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199510_D_GLOBAL.out deleted file mode 100644 index 1cac97be3c29097936731bc5e4239302292d804e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.053256559371948245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199510_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199510_H_GLOBAL.out deleted file mode 100644 index ace27619a682c6b524f37cd4f9a5103adfda8bad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.061152422428131105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199510_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199510_M_GLOBAL.out deleted file mode 100644 index f54b8a63431753367f88372ee426ab1f7e98f10b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.04732523361841837 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199511_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199511_D_GLOBAL.out deleted file mode 100644 index 324ca30bd043c2e8778a94727a6dc3f0231f2897..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.05072444677352905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199511_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199511_H_GLOBAL.out deleted file mode 100644 index e67601dbb8982a4f067f3464316a1c65f1b6ec16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.039548440774281816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199511_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199511_M_GLOBAL.out deleted file mode 100644 index ad724e737786d72b4cd151fb2c1d506de36f70a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.03697886069615682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199512_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199512_D_GLOBAL.out deleted file mode 100644 index 138c096b164144df08b5d0d400f9e9f5b5cdfdd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.04240004221598307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199512_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199512_H_GLOBAL.out deleted file mode 100644 index 9a9cc2d91c62399dd215f40f11e08040b94c8726..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.053454887866973874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199512_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199512_M_GLOBAL.out deleted file mode 100644 index 1f212021558387c23b284031f9846530f64adcf3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.051011061668395995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199601_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199601_D_GLOBAL.out deleted file mode 100644 index c8c935e783054ee41e9a88d5d4ccf364a26bf424..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.04451440970102946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199601_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199601_H_GLOBAL.out deleted file mode 100644 index d31b45bbe7dbb467ce69a827502672a357bc0b88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.04444855054219564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199601_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199601_M_GLOBAL.out deleted file mode 100644 index c5ff32eaef55e42d6d32eccd509c041e6e38138a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.043275757630666094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199602_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199602_D_GLOBAL.out deleted file mode 100644 index 7200e45666702affe30d6d7105c4b378cf00fb2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.03000293970108032 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199602_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199602_H_GLOBAL.out deleted file mode 100644 index 942f25a514f45c06a0aafde057fb6fa444dfbb15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.046523205439249676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199602_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199602_M_GLOBAL.out deleted file mode 100644 index 0e155f43d9ea27396ffa660ce5bfdaae6a1bcd04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.041213651498158775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199603_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199603_D_GLOBAL.out deleted file mode 100644 index 18eeeaedc3fb1c64ef27baa7de78f275f4259354..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.04783769051233928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199603_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199603_H_GLOBAL.out deleted file mode 100644 index 1df56b9d22dc96078173dd17ca570c377b05df1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.03963232437769572 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199603_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199603_M_GLOBAL.out deleted file mode 100644 index c5fb6fe3a0500a5a4a308e8ad0237f907631c058..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.04711974064509074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199604_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199604_D_GLOBAL.out deleted file mode 100644 index c4f72f2672ae50fc3b1dd23811532bf44d7212a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.03503135840098063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199604_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199604_H_GLOBAL.out deleted file mode 100644 index b1ffae228e53e8e05c7d40dfeb54d198f2433d5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.03906811873118083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199604_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199604_M_GLOBAL.out deleted file mode 100644 index 05ba98bbcca9a37679c4be77c8005eb68341bf11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.03316983381907145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199605_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199605_D_GLOBAL.out deleted file mode 100644 index 4c32ca9dd8a138c477c1877ec3699453de8eb6c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.049725612004597984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199605_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199605_H_GLOBAL.out deleted file mode 100644 index 3a211c833106fd458a54b61bf0fa4c8a430e9477..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.04775551160176595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199605_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199605_M_GLOBAL.out deleted file mode 100644 index 1019956071c2ffdded61faba0e3a196a45217712..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.05406056642532349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199606_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199606_D_GLOBAL.out deleted file mode 100644 index 7e6ae2a92cd637b27e134d18f9082a6f57e1e86a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.05130296548207601 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199606_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199606_H_GLOBAL.out deleted file mode 100644 index aad575569baff5f2ee731ef46ec776f510d21589..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.0491213043530782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199606_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199606_M_GLOBAL.out deleted file mode 100644 index 4710ae91376b4cc3f3adf2e1b468f1633cd35b22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.04407196442286174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199607_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199607_D_GLOBAL.out deleted file mode 100644 index b2937e1cdb90aa7ce1a874d9e585f39c4ec9cb99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.04726943572362264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199607_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199607_H_GLOBAL.out deleted file mode 100644 index 6b8e3deba4281746e7adbd12432e046abb5f6e98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.04408745368321736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199607_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199607_M_GLOBAL.out deleted file mode 100644 index 04b669caf402a33eaa272e950b41019b3e83a371..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.04558584690093994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199608_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199608_D_GLOBAL.out deleted file mode 100644 index 2031e6370f8d6372dfed5647e07bb72a5a4e59c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.04998865127563477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199608_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199608_H_GLOBAL.out deleted file mode 100644 index 89df0d9f3e987ff63d57c66598a59bcb0dcc5a83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.052594939867655434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199608_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199608_M_GLOBAL.out deleted file mode 100644 index 926e025576430cff23f1668224512fef5869bd81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.059169864654541014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199609_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199609_D_GLOBAL.out deleted file mode 100644 index c8268d6bea474a16fc987c9a0062b9b27d61676c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.04778568347295125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199609_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199609_H_GLOBAL.out deleted file mode 100644 index 7dddbc146ed1b4ddfaea238598eed9418e193b42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.047790002822875974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199609_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199609_M_GLOBAL.out deleted file mode 100644 index 416cd8f8a2742eec92f70dc7fd6ab80c6b433452..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.041804889837900795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199610_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199610_D_GLOBAL.out deleted file mode 100644 index 2122782240d184d6e4a82b68030accd795f69627..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.03711888790130615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199610_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199610_H_GLOBAL.out deleted file mode 100644 index 85d5ddc79767a02d03a61f69725d6c361243bdea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.05298892259597778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199610_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199610_M_GLOBAL.out deleted file mode 100644 index 8b4d7eff45d7428f0f0be115c17ccba5d1a3b0d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.06121158997217814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199611_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199611_D_GLOBAL.out deleted file mode 100644 index 2571919d41a8543eecd33667ac4d1833036e4147..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.04951742092768351 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199611_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199611_H_GLOBAL.out deleted file mode 100644 index 0abe82016070204eb3078c1a0b7287b4e425a7d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.052430562178293866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199611_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199611_M_GLOBAL.out deleted file mode 100644 index a8f65c3d84ce597baade5943228df545f7062dfd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.06532260576883951 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199612_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199612_D_GLOBAL.out deleted file mode 100644 index 22d933a3926c03aefa3110f060f4a71d942a42a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.059166328112284346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199612_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199612_H_GLOBAL.out deleted file mode 100644 index e8723c59e418e7042699ec3479b3c63b04237500..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.0663740356763204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199612_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199612_M_GLOBAL.out deleted file mode 100644 index 044b3685d35fdc381589e680843f807105aacdaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.047735253969828285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199701_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199701_D_GLOBAL.out deleted file mode 100644 index 52061949da46d6bd31b3f71583f4944f332a83f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.04702376524607341 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199701_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199701_H_GLOBAL.out deleted file mode 100644 index 27cf479089d10be317fdd0cefb9b5d5a6d93309f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.04113841851552327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199701_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199701_M_GLOBAL.out deleted file mode 100644 index dbf06ebdfc570609cb6cf01b80db76751f4e1aca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.039390416940053304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199702_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199702_D_GLOBAL.out deleted file mode 100644 index a3be5e023d28d9406b098d95c8fb419bc88d74a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.05033375024795532 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199702_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199702_H_GLOBAL.out deleted file mode 100644 index f05fb50a4ac38a45274f29151b9bb6fa7d9f3ef1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.02964802583058675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199702_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199702_M_GLOBAL.out deleted file mode 100644 index 17d2240826d29c9500a84861bb05bbc3b2482b05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.04172404209772746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199703_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199703_D_GLOBAL.out deleted file mode 100644 index 980fa11f1b8aaadc72ec60423a2ad9f59866cad3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.050394725799560544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199703_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199703_H_GLOBAL.out deleted file mode 100644 index 154fbef5f22f9c2d67897801e9c0cc95a0f94166..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.061601674556732176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199703_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199703_M_GLOBAL.out deleted file mode 100644 index 4dbf78dc4f1bdf86ba6c7e4eaf38020a5fb156ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.05888337691624959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199704_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199704_D_GLOBAL.out deleted file mode 100644 index 347ca58fbf0e4037f64c4887c8b6d8756364ffc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.06052907705307007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199704_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199704_H_GLOBAL.out deleted file mode 100644 index d6d9cf967b8ce879cf8bc5fd7e02167f39975fdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.0482962171236674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199704_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199704_M_GLOBAL.out deleted file mode 100644 index fcafc402f5eaa99d6a315ace91e4ffe404750c29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.04826576709747314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199705_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199705_D_GLOBAL.out deleted file mode 100644 index ddec79e212fceb2f400acfa36bf53c9fd37522a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.041560105482737225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199705_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199705_H_GLOBAL.out deleted file mode 100644 index 669804e4dcb38c598c00b65f77c512e1a51b40de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.04765929778416952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199705_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199705_M_GLOBAL.out deleted file mode 100644 index 53e241c0e08820d6210586f0451b2b0235ab7458..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.044532521565755205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199706_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199706_D_GLOBAL.out deleted file mode 100644 index f8c648c69e9e05368701ffb307de4fd47c14138d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.04694970448811849 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199706_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199706_H_GLOBAL.out deleted file mode 100644 index 76f0f82f400699a951b317c5f75a3a30e291842f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.032986517747243246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199706_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199706_M_GLOBAL.out deleted file mode 100644 index 1f8e182cc97621f46138308d5d9d4cf817e08877..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.041646051406860354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199707_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199707_D_GLOBAL.out deleted file mode 100644 index e2b0cfbfadd355bbdf613bce16101da4446f6a1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.040591569741566975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199707_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199707_H_GLOBAL.out deleted file mode 100644 index 3e65a77d41dcd2a3f41c25ce6889d96256b8233b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.05194490353266398 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199707_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199707_M_GLOBAL.out deleted file mode 100644 index ba915221d5d3885e0acebefcba2bb34a1e6145a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.05491827328999837 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199708_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199708_D_GLOBAL.out deleted file mode 100644 index 57e159113aef7f036df012e2babb4cf2d039b9f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.056239147981007896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199708_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199708_H_GLOBAL.out deleted file mode 100644 index d4d5fcf976cf29fc7b68cbbb8cc3672580cdf318..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.04019660154978434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199708_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199708_M_GLOBAL.out deleted file mode 100644 index 81930ba5ab9fb9b69a03b5077c0dab3bea55ee67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.04402664502461751 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199709_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199709_D_GLOBAL.out deleted file mode 100644 index 6f12d2a7e32ec10d759249f287114d6bd872aad4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.05993647178014119 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199709_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199709_H_GLOBAL.out deleted file mode 100644 index 1625cb30f6c425c23eb2b4934b07f1889e6cd911..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.056389323870340985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199709_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199709_M_GLOBAL.out deleted file mode 100644 index 6b1c611fc8047fd8722584adbe3c91c16f5b26bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.060728144645690915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199710_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199710_D_GLOBAL.out deleted file mode 100644 index 9b40f9f4cd7106bb7bf9038c819722b98a9458a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.03889432748158773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199710_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199710_H_GLOBAL.out deleted file mode 100644 index 004851015076dcd73cc8b0849c3faff9ca7f9605..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.04631506204605103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199710_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199710_M_GLOBAL.out deleted file mode 100644 index c7be0e4f07cea9ec8a0b59c9e6cd0d1143eae8e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.05711382230122884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199711_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199711_D_GLOBAL.out deleted file mode 100644 index d997d04fcbe7c4812e1a47ee372adbe6dceb9634..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.04664704402287801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199711_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199711_H_GLOBAL.out deleted file mode 100644 index 9d35802d479dd513d831f340e3606aeb8282d1bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.041379388173421225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199711_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199711_M_GLOBAL.out deleted file mode 100644 index 06d76127a1e2e2f22ab68d9c2b0fd676f009201d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.04699498017628988 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199712_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199712_D_GLOBAL.out deleted file mode 100644 index 6a8eaf7cb5ba2118a5a8e7c71bffbba1122fe21c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.04764369328816732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199712_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199712_H_GLOBAL.out deleted file mode 100644 index d5c01188d5187c879e21f2802374599e13040d11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.03738426367441813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199712_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199712_M_GLOBAL.out deleted file mode 100644 index 938df0b2aab0c3d918f85b03c8d396ece5bf4eb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.040721495946248375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199801_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199801_D_GLOBAL.out deleted file mode 100644 index a353e12c43146c24b4c530040b42e35a0554fbaf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.042338045438130696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199801_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199801_H_GLOBAL.out deleted file mode 100644 index 590d2242b72ff6b764b04a031c3f6609fed1698a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.042865558465321855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199801_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199801_M_GLOBAL.out deleted file mode 100644 index 3423b32ab4b226bf913534712fe049c9f6794f59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.042237472534179685 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199802_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199802_D_GLOBAL.out deleted file mode 100644 index fa3cdbed49b7278c1a649028b29aa473d452a3de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.044762901465098065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199802_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199802_H_GLOBAL.out deleted file mode 100644 index 9b2241cf5c5d3810179fb5bbf8430ad69567691d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.04503803650538127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199802_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199802_M_GLOBAL.out deleted file mode 100644 index cc28ffcb23af10807944cc52e04c1b973c1d0df6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.061826070149739586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199803_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199803_D_GLOBAL.out deleted file mode 100644 index 269196ad54abcb2420d3f8d28d990598dbc4e296..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.05703374147415161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199803_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199803_H_GLOBAL.out deleted file mode 100644 index 6a1caa8033423680d24d4c604c35cb054443fd35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.04896797339121501 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199803_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199803_M_GLOBAL.out deleted file mode 100644 index cb2e013ae7d6edcc1bfbbdff62654925929f403f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.0494573712348938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199804_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199804_D_GLOBAL.out deleted file mode 100644 index 0b4fef08e9c4f6af4f6fdf0f9b3005a0dcbfe93d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.05172338883082072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199804_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199804_H_GLOBAL.out deleted file mode 100644 index 0f6e3b4fa5a31514948809e56630bbaa72a81760..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.05933959086736043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199804_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199804_M_GLOBAL.out deleted file mode 100644 index 87ea40af99658bc586f6f87306e1ad99d1de84ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.055452553431193034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199805_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199805_D_GLOBAL.out deleted file mode 100644 index 4b95e65f6f8b6c154a9abba47b8dca18e0db2822..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.04566219250361125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199805_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199805_H_GLOBAL.out deleted file mode 100644 index 02ec7efba8f178bc701ad88bfff9babc2bad8789..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.04209996859232585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199805_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199805_M_GLOBAL.out deleted file mode 100644 index 5413684fb98a74b57f1970d4fba5efa4fe278c9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.055431902408599854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199806_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199806_D_GLOBAL.out deleted file mode 100644 index cda895714b3b652a6a37c2ba1584b767fca599e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.04063457647959391 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199806_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199806_H_GLOBAL.out deleted file mode 100644 index 7c25517702eedf4d82a6e1f634b02e71ceb87e44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.045930810769399005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199806_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199806_M_GLOBAL.out deleted file mode 100644 index 3310b4eca4af0980de31a2f7cabb187ffbdc31fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.04157394965489705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199807_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199807_D_GLOBAL.out deleted file mode 100644 index a5a58b82de49476fe7e99b0fc03a495123b54d90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.041888900597890216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199807_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199807_H_GLOBAL.out deleted file mode 100644 index 2ab859b63952287e2fe58f667feef990b155a33e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.04655380249023437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199807_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199807_M_GLOBAL.out deleted file mode 100644 index f72a601b1528e070472e4509a1ff78936a5fd065..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.039414513111114505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199808_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199808_D_GLOBAL.out deleted file mode 100644 index a287f7b812d1ab3fc719e6541544abce62b45f54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.05071254173914592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199808_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199808_H_GLOBAL.out deleted file mode 100644 index efba345170a890c5b40391ebbdba4128649b674e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.061492633819580075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199808_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199808_M_GLOBAL.out deleted file mode 100644 index 92f95d37a8fdccbb07dbad442904e6637903c11e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.058945965766906736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199809_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199809_D_GLOBAL.out deleted file mode 100644 index e0e006eec52f9db2eb6c55cbe5d6e032d0448b66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.049370614687601726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199809_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199809_H_GLOBAL.out deleted file mode 100644 index 6167d21e26f3bcf8f8b5323209d94e728fce58cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.05302477677663167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199809_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199809_M_GLOBAL.out deleted file mode 100644 index c9929bf9e1e9769f2fcc53a11b0e8ddf2e10c5f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.050436751047770186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199810_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199810_D_GLOBAL.out deleted file mode 100644 index 1f3d6d48a7e6b5602672b8f2eec87e2f9878ced1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.04736256996790568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199810_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199810_H_GLOBAL.out deleted file mode 100644 index 2dc55cc0d0527a2b8d80eefdf487a4c62e189789..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.04439042011896769 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199810_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199810_M_GLOBAL.out deleted file mode 100644 index ad74de9941a3b7eaf4951afe820b6682b1a6f116..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.06056807438532511 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199811_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199811_D_GLOBAL.out deleted file mode 100644 index 367d00f1f3dd381bc25c1b810fea75b6ea8e8e61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.06283078193664551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199811_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199811_H_GLOBAL.out deleted file mode 100644 index a1baba81010978e5b6b8db33af9d6220a813c12d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.038320378462473555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199811_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199811_M_GLOBAL.out deleted file mode 100644 index ce1685bb28b443b61aa6e153a905a12e3893c8cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.05151420831680298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199812_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199812_D_GLOBAL.out deleted file mode 100644 index 588b7c93f858bc29be2e484e2d85d1cff2cde22b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.04333502451578776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199812_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199812_H_GLOBAL.out deleted file mode 100644 index c3620ae005809e862f669f267a7020d8b66c05f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.04216221570968628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199812_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199812_M_GLOBAL.out deleted file mode 100644 index 83a1b0242b5c82c76275a8cb45759b62c8522b4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.05149927536646525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199901_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199901_D_GLOBAL.out deleted file mode 100644 index 9d3d03f5318fbe4651d2ed7b74a0fc3f3e7c2f31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.06420988241831461 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199901_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199901_H_GLOBAL.out deleted file mode 100644 index e1d4dec9ded199f43a5508a640f1776827cad908..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.049157702922821046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199901_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199901_M_GLOBAL.out deleted file mode 100644 index abfa9fb584f9b0bad3b7357f8cd26a639bf5e58d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.046036362648010254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199902_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199902_D_GLOBAL.out deleted file mode 100644 index 96bf8f9a875dfb6e46c1cf80031bf5aa1b66df79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.05681983232498169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199902_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199902_H_GLOBAL.out deleted file mode 100644 index 1482a989455290d7d56d47d15c66bc799961705d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.05504700740178426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199902_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199902_M_GLOBAL.out deleted file mode 100644 index 40b487f1438a423f6d9b5d292704f052220ba2c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.04413021405537923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199903_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199903_D_GLOBAL.out deleted file mode 100644 index 9ffc331ec5591463e6c6d496db036eb3646945d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.0640370766321818 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199903_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199903_H_GLOBAL.out deleted file mode 100644 index 56f799c5d7f218bbca444f98e7437694c66f4093..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.0528216560681661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199903_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199903_M_GLOBAL.out deleted file mode 100644 index bebe4e59fb1d28b2e7a00820e30780a22a4c69a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.06331675450007121 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199904_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199904_D_GLOBAL.out deleted file mode 100644 index dc363b92345db96e5411c230c9578ae08bad910c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.049196632703145345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199904_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199904_H_GLOBAL.out deleted file mode 100644 index 006091d18043b1e79dda35e2460853bbb0c4554f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.038597917556762694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199904_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199904_M_GLOBAL.out deleted file mode 100644 index e85f67fe0dff8258002f49cdf397fb411bcf19ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.05109634002049764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199905_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199905_D_GLOBAL.out deleted file mode 100644 index 1d31547f5c97b02128b0b4faf865afc86d4c454c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.045418373743693036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199905_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199905_H_GLOBAL.out deleted file mode 100644 index e58f972bb6c99bc7481daded0866e634d1117e4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.05423043171564738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199905_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199905_M_GLOBAL.out deleted file mode 100644 index 7df8c48b309fb3cfc0d540aff11b0a102d509227..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.04340575536092122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199906_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199906_D_GLOBAL.out deleted file mode 100644 index 9dc32ad547ba6731f66a1fb7aecd0f359f12f1eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.05210290749867757 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199906_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199906_H_GLOBAL.out deleted file mode 100644 index 4d0083bdb6d04e1e6e03dee7392528a01c377f16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.043922861417134605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199906_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199906_M_GLOBAL.out deleted file mode 100644 index 61fa0dd6991bdfea221b46b524ad7b9e6c498913..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.055909188588460286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199907_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199907_D_GLOBAL.out deleted file mode 100644 index 3bf2d6ff249bd0b09dc76085323c2ef78fdc8843..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.04404833316802979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199907_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199907_H_GLOBAL.out deleted file mode 100644 index 807168ced9ea9ca89cf70fbc67f3397ea08f483c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.04220751921335856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199907_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199907_M_GLOBAL.out deleted file mode 100644 index bae61d7a0f00a2ed81b59919248d7be275474c30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.06138328711191813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199908_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199908_D_GLOBAL.out deleted file mode 100644 index f1bfa77ea2662f999dca3a0c7e0da583c0996d88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.06554549932479858 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199908_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199908_H_GLOBAL.out deleted file mode 100644 index c1570f424f9d298b6abf6b8515d37b88c601d5cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.0677486777305603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199908_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199908_M_GLOBAL.out deleted file mode 100644 index 921bd6db6d613f06b097b1378a1e5bddeb83847c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.044032824039459226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199909_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199909_D_GLOBAL.out deleted file mode 100644 index 4f34fffa91a49142a341956dbb29c657320b6401..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.045494504769643146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199909_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199909_H_GLOBAL.out deleted file mode 100644 index 665f45233e9c7249ab77d57c082068b941b36f3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.05861572027206421 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199909_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199909_M_GLOBAL.out deleted file mode 100644 index ad58f3794167a6275a3381ed8521c0e0714f51e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.04671747287114461 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199910_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199910_D_GLOBAL.out deleted file mode 100644 index 527f35be4a409c3fbd6bfaa1a61cd157f3985f61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.04850286642710368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199910_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199910_H_GLOBAL.out deleted file mode 100644 index 06fb12697180fd2c619410432bb765b0c1ab0105..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.040926229953765866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199910_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199910_M_GLOBAL.out deleted file mode 100644 index ac1bf84c9cfd576441ff1ff47c19f930a9e375ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.04563740889231364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199911_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199911_D_GLOBAL.out deleted file mode 100644 index ba7491579c7385c5c65ce5aa18042125d7f8077c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.060436367988586426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199911_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199911_H_GLOBAL.out deleted file mode 100644 index 7d2f461396533f368d7c68944bf8e98281e55b26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.048055720329284665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199911_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199911_M_GLOBAL.out deleted file mode 100644 index a357550934bde9078b59ad046b906a28ef1cd400..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.05016001065572103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199912_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199912_D_GLOBAL.out deleted file mode 100644 index 9b9a618b4dd9bbf683ef7ff6e4e066eb1ab1b964..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.04321099917093913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199912_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199912_H_GLOBAL.out deleted file mode 100644 index 29aa0aa787edc120aaea741c9363940ac36fff92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.0466099739074707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_199912_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_199912_M_GLOBAL.out deleted file mode 100644 index 259b8f654404c703d32d6a69f89ec998e7d886f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_199912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.04727620283762614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200001_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200001_D_GLOBAL.out deleted file mode 100644 index 793181002088546602e029ad778d1668a83a08fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.063100000222524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200001_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200001_H_GLOBAL.out deleted file mode 100644 index 4a4486cfa70f1c6ff58db54f872075b461e18bd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.04747630357742309 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200001_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200001_M_GLOBAL.out deleted file mode 100644 index 01a512d691d268d8403d934e3cf7afc36f359936..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.04534742434819539 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200002_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200002_D_GLOBAL.out deleted file mode 100644 index a07cefed1e80e323a798d039ec797ad6cc3f79b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.05091140270233154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200002_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200002_H_GLOBAL.out deleted file mode 100644 index 0ba4735dba5dd160601c800522ec7839b6997507..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.045488317807515465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200002_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200002_M_GLOBAL.out deleted file mode 100644 index d37164d91bbc7251115d97e77124485c4e3c6782..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.04638022979100545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200003_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200003_D_GLOBAL.out deleted file mode 100644 index 7c5705d2af35af0f80f53e62ec214654fd3d17a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.057323853174845375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200003_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200003_H_GLOBAL.out deleted file mode 100644 index b2487d63c9b81b4bc9c5c7a1ccca6be24cb71e5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.048684902985890705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200003_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200003_M_GLOBAL.out deleted file mode 100644 index a8511bad0e8471fffee9c8aa74e07ffd9eda38fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.055872416496276854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200004_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200004_D_GLOBAL.out deleted file mode 100644 index 6d86611116a2ecc8b8095797de445267fe4fad07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.05408378044764201 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200004_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200004_H_GLOBAL.out deleted file mode 100644 index 5d93fd8b548ca38dc9144b05f558b760ef022cd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.04815052747726441 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200004_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200004_M_GLOBAL.out deleted file mode 100644 index 4c81af420abffee7d8e084dea07e92487289b41b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.049401013056437175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200005_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200005_D_GLOBAL.out deleted file mode 100644 index bf379554f576e9339f57f0cdf1891af2807c0bc1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.05236877997716268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200005_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200005_H_GLOBAL.out deleted file mode 100644 index 36a27a94dc0d03e2cc7b86bbc20e8398b845753e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.03985436757405599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200005_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200005_M_GLOBAL.out deleted file mode 100644 index 6c10d32c57c5f95aff1c483f05c507ccf477a84b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.047191929817199704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200006_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200006_D_GLOBAL.out deleted file mode 100644 index 972690847ce2e8681bbb42d70ef4131db0549f92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.04376966555913289 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200006_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200006_H_GLOBAL.out deleted file mode 100644 index 6b2dfb5009c9979fb12c77d78e2c5c57225765f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.04332201878229777 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200006_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200006_M_GLOBAL.out deleted file mode 100644 index 02302a8f82941a6d800fa141acc1b7183f3bb89c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.07738871971766154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200007_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200007_D_GLOBAL.out deleted file mode 100644 index 20f89cac516c5e1298dc92523a9efae5d870d3f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.06737119754155477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200007_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200007_H_GLOBAL.out deleted file mode 100644 index ec6bf4ebc18cffbe84b6303e62d6b6178ad1fef5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.049559605121612546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200007_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200007_M_GLOBAL.out deleted file mode 100644 index 918a8b92fe21c0bbe09044270683d282d000af62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.04910480976104736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200008_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200008_D_GLOBAL.out deleted file mode 100644 index 3e0be8ca7d5022e863b72ea69fff83d1536a86b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.04777652025222778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200008_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200008_H_GLOBAL.out deleted file mode 100644 index b7fd87f0c8b5160ec79f29191d58165f9ea64792..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.04361363252003988 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200008_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200008_M_GLOBAL.out deleted file mode 100644 index a000bee1275ec8775824c248a31c460e5c8d44f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.05051788886388143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200009_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200009_D_GLOBAL.out deleted file mode 100644 index ad44f6b6617cfa27f200aa2e43cc9021564b84d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.05067824125289917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200009_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200009_H_GLOBAL.out deleted file mode 100644 index 957da4a6634df8f904acb0b982e18a7fa60e7d73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.04718096653620402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200009_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200009_M_GLOBAL.out deleted file mode 100644 index 225e333653b8da23d43d587b7daa150732972556..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.04996515115102132 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200010_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200010_D_GLOBAL.out deleted file mode 100644 index 355f41b8c9be54ecb87e3ddb2749e848bc03e2a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.06703380346298218 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200010_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200010_H_GLOBAL.out deleted file mode 100644 index 50482e236b1101b5f0141bcc31b67d22ba2b8e01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.06420421997706095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200010_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200010_M_GLOBAL.out deleted file mode 100644 index c9fff9b7087356e3219d20dba63489a794e6a64b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.07658951282501221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200011_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200011_D_GLOBAL.out deleted file mode 100644 index 917bee0413ee2b99099762cecda1a7946070424e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.046297454833984376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200011_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200011_H_GLOBAL.out deleted file mode 100644 index 7b16b749d80b15e1a90264ab913f613caeb956c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.05799954334894816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200011_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200011_M_GLOBAL.out deleted file mode 100644 index 60646e2e76b2574b0d375c443524af9764e28adf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.052909910678863525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200012_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200012_D_GLOBAL.out deleted file mode 100644 index 8503ea7a43c240dfd50ccd827379a373789a92d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.06559503475824992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200012_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200012_H_GLOBAL.out deleted file mode 100644 index 66cb9e3a8000e29a5acbaae73937c67f09a6ab4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.045949308077494304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200012_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200012_M_GLOBAL.out deleted file mode 100644 index 4626d9383c62758f832010b54ae54688434b1ff0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.05466646353403727 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200101_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200101_D_GLOBAL.out deleted file mode 100644 index 7128aeb1f3cd52233eaa0cfac68718914fc6bae1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.06012454827626546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200101_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200101_H_GLOBAL.out deleted file mode 100644 index 4aa932198f7ac3878759549b602c31a1e0d1cceb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.0635449767112732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200101_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200101_M_GLOBAL.out deleted file mode 100644 index 6384984d7c4a9119727150b2b985977d3b33112e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.04854825735092163 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200102_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200102_D_GLOBAL.out deleted file mode 100644 index c0de8d4714adfae28daaa15598c0bb7152fba4ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.06403243939081828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200102_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200102_H_GLOBAL.out deleted file mode 100644 index ed2a4c54a4f4a887f919ce6f63ae44fa8a3e8a74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.050359801451365156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200102_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200102_M_GLOBAL.out deleted file mode 100644 index c23a7ba21f323696548b303df248cb0eb3a89649..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.06359030405680338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200103_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200103_D_GLOBAL.out deleted file mode 100644 index 1c4903273d8aa93a1f8411abfc912b025178d045..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.051221954822540286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200103_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200103_H_GLOBAL.out deleted file mode 100644 index c92a42cc2de269b19f55a2d74a62801f3e62628c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.049245572090148924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200103_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200103_M_GLOBAL.out deleted file mode 100644 index 71c1301668c19a4323d921d4783f95272830acef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.07537617286046346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200104_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200104_D_GLOBAL.out deleted file mode 100644 index a230e5aeeaecc35d1902b604f1c5d6d6839954ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.04176003138224284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200104_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200104_H_GLOBAL.out deleted file mode 100644 index d1ee5a514d328384f287c061849775bc9ccf3a94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.04654716650644938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200104_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200104_M_GLOBAL.out deleted file mode 100644 index a49d696356522112d3c773ccb396285697e41f5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.04318375984827678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200105_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200105_D_GLOBAL.out deleted file mode 100644 index 4c47c91fe545add8e5dbf64ca3fcdb447c929cc3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.05754712422688802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200105_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200105_H_GLOBAL.out deleted file mode 100644 index ef8198156cbb939f482c641a9977a1878a8fc21d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.06347064177195232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200105_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200105_M_GLOBAL.out deleted file mode 100644 index 11dca8002150a648b8476a0b1dcd72daf5ac566e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.05490458806355794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200106_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200106_D_GLOBAL.out deleted file mode 100644 index 442c24ceeda7948084f6c7835f0941038e182d6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.05498383045196533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200106_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200106_H_GLOBAL.out deleted file mode 100644 index 0dfccd9aa27276d711a39cdae5c7260e3de3706b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.054674732685089114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200106_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200106_M_GLOBAL.out deleted file mode 100644 index e86a734c6f96f8b0506e28aec9008c2af89a0e83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.052976659933725995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200107_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200107_D_GLOBAL.out deleted file mode 100644 index b4ad080dfc93a0f4c729e0eafe5f3e7315c783ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.05268658796946208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200107_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200107_H_GLOBAL.out deleted file mode 100644 index 1fdee2091b1b2e5de3236d082557c8544d826fba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.05064762036005656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200107_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200107_M_GLOBAL.out deleted file mode 100644 index 60c0af0f93959a9c33c5a8b89b5eac4d69ca5511..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.05361576875050863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200108_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200108_D_GLOBAL.out deleted file mode 100644 index 3ab6b6066c1f9efec6e7047e2b7d94a7316ea6c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.06034783522288004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200108_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200108_H_GLOBAL.out deleted file mode 100644 index c0411f16e27438c456acdc7950005f02d1f1e13e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.05335938135782878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200108_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200108_M_GLOBAL.out deleted file mode 100644 index 6be87eb8cbaa1435685d9b1ec9cc81121f8869f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.04136407772699992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200109_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200109_D_GLOBAL.out deleted file mode 100644 index 3b00bb08077952e88bac2a8fb34e937d6e2bde3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.05472907225290934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200109_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200109_H_GLOBAL.out deleted file mode 100644 index 1a6e4d808bbd556ebc2b1bfc28b22f09b1b5e7bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.05631778240203857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200109_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200109_M_GLOBAL.out deleted file mode 100644 index b00a757f2015b132abfaf747ed49eb154a3cc947..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.057787084579467775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200110_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200110_D_GLOBAL.out deleted file mode 100644 index fd2772d4e1f8c94113560bd7a31742a52493c78c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.06771119038263956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200110_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200110_H_GLOBAL.out deleted file mode 100644 index 1c4374307f494cafd51f1a7b89637d2d686a1054..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.07127765814463298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200110_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200110_M_GLOBAL.out deleted file mode 100644 index 85d147450a5ac2e57622769d1866b90ed38c80b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.07031524181365967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200111_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200111_D_GLOBAL.out deleted file mode 100644 index c1921d03b4fefbfa12daebe084e6e98aca23dee2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.0573885718981425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200111_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200111_H_GLOBAL.out deleted file mode 100644 index 285472f7bdf26dfe51e7f2cb9bbc83262d0dcd9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.06287031571070353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200111_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200111_M_GLOBAL.out deleted file mode 100644 index eea834bac6bfdd97653f7d8983e5bae8b6bb5d5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.05373026529947917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200112_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200112_D_GLOBAL.out deleted file mode 100644 index 0603c408122aa9be027a4a1fec0a889da0d0dd1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.06003171602884928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200112_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200112_H_GLOBAL.out deleted file mode 100644 index c46b0b3416306267392a0dd33af2ad44e8f80736..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.05645951827367147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200112_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200112_M_GLOBAL.out deleted file mode 100644 index 659cb5e6719f654f82f22435a5ddfe48621e5b94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.0598138689994812 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200201_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200201_D_GLOBAL.out deleted file mode 100644 index ecad8d6fa531a6bd46d36d1281a45491ce14ad8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.06570655902226766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200201_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200201_H_GLOBAL.out deleted file mode 100644 index 5a748006abe2b54d75e17c92ee0a5841f4a061d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.05908029079437256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200201_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200201_M_GLOBAL.out deleted file mode 100644 index e75230857339c1ce5138c2edf7bf25c8ba3841d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.0561902125676473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200202_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200202_D_GLOBAL.out deleted file mode 100644 index 7e6982dad43510c22ba5d2337c5396ab7810f5ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.06647706031799316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200202_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200202_H_GLOBAL.out deleted file mode 100644 index cccf934741a42b912e42d33f031bc4fa12277549..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.05928686062494914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200202_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200202_M_GLOBAL.out deleted file mode 100644 index 44453bb5f22070ca7ca8d8a079ef13e89975d916..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.059856541951497394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200203_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200203_D_GLOBAL.out deleted file mode 100644 index aae4fb90980580bc0a56e40b21ca84b8746ba57b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.058612509568532305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200203_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200203_H_GLOBAL.out deleted file mode 100644 index 76f09f7d6292d3cae4fa636d86bd976f0c4ad95c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.05299036105473836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200203_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200203_M_GLOBAL.out deleted file mode 100644 index 35ad450c8433d7c512e60f70c2c43f688bb3823a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.0627511739730835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200204_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200204_D_GLOBAL.out deleted file mode 100644 index ab384970d290b6d23744480cae90fc0e8cf32299..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.07459490299224854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200204_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200204_H_GLOBAL.out deleted file mode 100644 index c10abc624ac4ddc574eae3cddd45de168698ed60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.0619865894317627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200204_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200204_M_GLOBAL.out deleted file mode 100644 index 1a587f4d63ae50d2fc891af758b3e8a974765392..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.06811108191808064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200205_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200205_D_GLOBAL.out deleted file mode 100644 index 110cb08dfd6d2834a35a2cf369a1aa1793905320..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.08311599493026733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200205_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200205_H_GLOBAL.out deleted file mode 100644 index 839d9e3015636a8744ac82c9ea1bc20851f916b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.07041188478469848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200205_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200205_M_GLOBAL.out deleted file mode 100644 index cfe6267c0f415c175b6c551b43fd375d4198c825..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.06059627930323283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200206_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200206_D_GLOBAL.out deleted file mode 100644 index 52366ed2202dd07e2f4b2fa48456eed2a0b04f10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.06233046452204386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200206_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200206_H_GLOBAL.out deleted file mode 100644 index a2c8931d6ffa60a49966527aae4d9229d9b2a34f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.05723275740941366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200206_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200206_M_GLOBAL.out deleted file mode 100644 index 8f30829b8966431fb34e3f93ce635bf32dd1eacd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.06156526803970337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200207_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200207_D_GLOBAL.out deleted file mode 100644 index ead7d5eee0ed412c146211c186e8b099fa99af9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.0720811645189921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200207_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200207_H_GLOBAL.out deleted file mode 100644 index 0ee7c4cc6c38dbe94c9e3d696a818b8fee7a96fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.07072274287541708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200207_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200207_M_GLOBAL.out deleted file mode 100644 index 56c6ccce2331dd90673035122f03b0fe8856f6f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.07807254791259766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200208_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200208_D_GLOBAL.out deleted file mode 100644 index 0df0648a6b172a7165b629757464bac0ca212985..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.060617276032765705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200208_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200208_H_GLOBAL.out deleted file mode 100644 index b9978a5d2522336a4e60e4641699c9d8b23d9d9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.0587790052096049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200208_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200208_M_GLOBAL.out deleted file mode 100644 index 9880d9a3d1335e9a0bc9ee3282fc9c593b5bd068..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.05023216803868612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200209_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200209_D_GLOBAL.out deleted file mode 100644 index 7dab732028d1fc547ed78979fad60cc174765440..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.06501696904500326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200209_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200209_H_GLOBAL.out deleted file mode 100644 index 579c0830c45b3d697215dec354692ef7e6841d27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.0533613642056783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200209_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200209_M_GLOBAL.out deleted file mode 100644 index 1a3617f2a4bcd1eed68ea7e17eb31b9b324ced7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.07433689435323079 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200210_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200210_D_GLOBAL.out deleted file mode 100644 index c3cb3572401cb65f1b65d2ce84116d07701c20c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.08358203967412313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200210_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200210_H_GLOBAL.out deleted file mode 100644 index 0f8e0ffa4327b0221e0750f09d308aca3e2671be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.057980044682820635 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200210_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200210_M_GLOBAL.out deleted file mode 100644 index 4ee24f581d8dd61eb6d11b3a40ea68d87af1e9f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.0651870330174764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200211_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200211_D_GLOBAL.out deleted file mode 100644 index c2d5f7bbe17dd448b3e27b269fdbf4837fbc081c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.07628257671991984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200211_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200211_H_GLOBAL.out deleted file mode 100644 index 2299f3b0ea8d6772b8a110a9c7a50153cd90b313..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.06958665450414021 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200211_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200211_M_GLOBAL.out deleted file mode 100644 index 0cb1c7bc9b1031a545022df938e49f867cffb9c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.06564468542734782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200212_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200212_D_GLOBAL.out deleted file mode 100644 index 55f4d344efa7f87666a0daf4e61ae011f76179e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.06949218908945719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200212_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200212_H_GLOBAL.out deleted file mode 100644 index 1245ba1890d71526810c419a2db04d2e1ad6e67a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.0842521071434021 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200212_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200212_M_GLOBAL.out deleted file mode 100644 index a53a3163501337cc82f8998b3eb2b2ad46461cfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.07751105626424154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200301_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200301_D_GLOBAL.out deleted file mode 100644 index da27a67067bb042ce6192275440902a85ea567fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.06334372758865356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200301_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200301_H_GLOBAL.out deleted file mode 100644 index ac6fea591ac38a7e59701de9d5b9ecebad96cb7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.06366151968638102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200301_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200301_M_GLOBAL.out deleted file mode 100644 index 339193bfdc203de05959cb6a5ecbaada6c80b176..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.06307307084401449 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200302_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200302_D_GLOBAL.out deleted file mode 100644 index 8db1a06ddabb25f753dd8e45d670b91ffd7b4ec3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.07410085995992025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200302_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200302_H_GLOBAL.out deleted file mode 100644 index f1333c80d61accdda3b181f2ddd3d364ec5f30e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.06338069836298625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200302_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200302_M_GLOBAL.out deleted file mode 100644 index 840b07fd3e26ea1cf23fa9cbf7f8932de9a4676f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.08211800257364908 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200303_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200303_D_GLOBAL.out deleted file mode 100644 index 4cba11f6c4bdafe545fcf0c24db30d53d4725dc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.06432727177937826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200303_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200303_H_GLOBAL.out deleted file mode 100644 index 273f1676d60c883b41465a3846a087b8138db465..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.07100388209025064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200303_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200303_M_GLOBAL.out deleted file mode 100644 index b0a2a5324c3910740fb516a20ebd7f65e159ef93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.06038527091344197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200304_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200304_D_GLOBAL.out deleted file mode 100644 index 7153216b711fda8ebf1967c7e8ff93073049381b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.07087188164393107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200304_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200304_H_GLOBAL.out deleted file mode 100644 index 1a98b23f94513ae2a4d995acf2eeea6df06e376f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.055821756521860756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200304_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200304_M_GLOBAL.out deleted file mode 100644 index 4b3bcc5d6c42cb5f22ffce0279e29585ddf24a85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.07483756939570109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200305_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200305_D_GLOBAL.out deleted file mode 100644 index b28cefab5b74ac5278687baefc3ffa1360042a16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.07167381842931111 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200305_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200305_H_GLOBAL.out deleted file mode 100644 index e54e918b3ee9b8f5a1d37789bfc31b3c4f2bca20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.07949549357096354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200305_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200305_M_GLOBAL.out deleted file mode 100644 index 6e604c4881e2035b0176fec9f23885e1fe7cca1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.06593680381774902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200306_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200306_D_GLOBAL.out deleted file mode 100644 index 38e054b53c1422003f9c881ece08d6d5a594f53a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.08533876736958822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200306_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200306_H_GLOBAL.out deleted file mode 100644 index 8e408b609331ecf008a9b293411d89f8983761c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.07056895891825359 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200306_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200306_M_GLOBAL.out deleted file mode 100644 index 1d68b1412dedb4a282e9f292dcb372bc9c63bbe3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.061902332305908206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200307_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200307_D_GLOBAL.out deleted file mode 100644 index 18d7f4b538fe37b7bc63e9a1bf9f4ed17f5f49a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.0589163064956665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200307_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200307_H_GLOBAL.out deleted file mode 100644 index 978c9b86bb2f63d38241880817299e0e00d7b6e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.07822401126225789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200307_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200307_M_GLOBAL.out deleted file mode 100644 index 03416f7808e1d8374526660ab085a82433c76485..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.0759002129236857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200308_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200308_D_GLOBAL.out deleted file mode 100644 index ff0043acdbbbcf2cc4c0575c6419841880239187..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.06277228991190592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200308_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200308_H_GLOBAL.out deleted file mode 100644 index 1b998dd13e5340b3411558ebaf060f7cf58eb044..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.06467681328455607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200308_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200308_M_GLOBAL.out deleted file mode 100644 index edd783d005e9b5793f964d8bbd4c8b0304f2c7b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.06780158678690593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200309_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200309_D_GLOBAL.out deleted file mode 100644 index cd73390a8053bf423eedae230a606c3457c3f0bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.06018602053324382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200309_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200309_H_GLOBAL.out deleted file mode 100644 index 7fa07a147a982fdc9462901d5b3ea3ef2ec20fc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.08663721879323323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200309_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200309_M_GLOBAL.out deleted file mode 100644 index ab59d4351ddaf61cc70b790132a61ad51094c9c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.07007205883661906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200310_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200310_D_GLOBAL.out deleted file mode 100644 index 724ba4bcc1e83485c1bddb02241d6df8a9cef1bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.08127087752024333 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200310_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200310_H_GLOBAL.out deleted file mode 100644 index 015ecd0f1f30eab6dfb52382a2167b866955fa25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.07617287635803223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200310_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200310_M_GLOBAL.out deleted file mode 100644 index b202674d440fd49229b3a3ada5727ece03e08a10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.08167111078898112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200311_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200311_D_GLOBAL.out deleted file mode 100644 index b9ac30109bf49e8b5bdc223cb85eae80f90a095f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.07992230653762818 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200311_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200311_H_GLOBAL.out deleted file mode 100644 index 0132cc0f727868adc025d7e0a66e561a0dfada5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.07489254474639892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200311_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200311_M_GLOBAL.out deleted file mode 100644 index 8c3c7a0c6802a51495a5a4cf68a127ff13cac5f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.07125763893127442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200312_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200312_D_GLOBAL.out deleted file mode 100644 index 91d4f47305ef4d283c6869e95191f6fd8cd53c9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.057190807660420735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200312_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200312_H_GLOBAL.out deleted file mode 100644 index 41fd4ca585359ad9b77177b7eb657fd9eb09e274..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.06617115338643392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200312_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200312_M_GLOBAL.out deleted file mode 100644 index 650b7542ea14885710ab9664ad2c303aa4834fbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.08206305901209514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200401_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200401_D_GLOBAL.out deleted file mode 100644 index aa89b01b972ed7c338790a99ad3ef4bd7e7e5392..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.07221359014511108 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200401_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200401_H_GLOBAL.out deleted file mode 100644 index 361e28c47b17dda3611483eb94ad79442b122a21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.06620404322942099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200401_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200401_M_GLOBAL.out deleted file mode 100644 index d4b0cacd0f91774a9a7ab184d2ac872a361057e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.07661589781443277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200402_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200402_D_GLOBAL.out deleted file mode 100644 index 6e3f4a20e990186a9a7a1930c589c52507e976be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.078785773118337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200402_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200402_H_GLOBAL.out deleted file mode 100644 index 2ed0ea539cf29650fdc3a0c4e44b856d746f6263..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.07961750030517578 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200402_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200402_M_GLOBAL.out deleted file mode 100644 index d2a3c38791fb3d24d5190eb0f57f4be312dd0f9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.06282943884531657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200403_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200403_D_GLOBAL.out deleted file mode 100644 index 3dac88713e8e681d5f75d9527eebb2d82567e70f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.06210733652114868 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200403_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200403_H_GLOBAL.out deleted file mode 100644 index b2861b4c22aa1d5e8d2747991aeafa6556bf55e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.07157455682754517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200403_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200403_M_GLOBAL.out deleted file mode 100644 index 9bd13c0449f78bec7977226f801e73cc98787e68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.0741034746170044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200404_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200404_D_GLOBAL.out deleted file mode 100644 index 03cefaa29792eb73123609800ce9e400e422b9e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.0654989242553711 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200404_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200404_H_GLOBAL.out deleted file mode 100644 index 35b67e931475653027926a9a068cad2cc822eca8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.05811760425567627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200404_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200404_M_GLOBAL.out deleted file mode 100644 index 7a3da0505f9eceec28050da94e8908028285c4d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.07331806421279907 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200405_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200405_D_GLOBAL.out deleted file mode 100644 index be741e7ff11ddd1a8f04fa6a2f677f6382409b92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.07130910952885945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200405_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200405_H_GLOBAL.out deleted file mode 100644 index 6d26fe52469c01f88991aa8ae1971def7d692e9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.0882001519203186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200405_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200405_M_GLOBAL.out deleted file mode 100644 index 9526d820ad289964baf259495e61268add400080..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.0763711929321289 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200406_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200406_D_GLOBAL.out deleted file mode 100644 index fb4452b88d34e75a68e1e30f03c0d6685715a1b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.08575156132380167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200406_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200406_H_GLOBAL.out deleted file mode 100644 index 2838c9e5dbc464ea40a57e9c2bea6ace175e1fc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.06595618724822998 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200406_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200406_M_GLOBAL.out deleted file mode 100644 index 90f5509cd67eb8b9da90c5ffa2e7a5bfe6c7c477..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.07874771356582641 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200407_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200407_D_GLOBAL.out deleted file mode 100644 index c6103ea9e93ffca56126adc8314ca1a85ea32b9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.06865846713383993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200407_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200407_H_GLOBAL.out deleted file mode 100644 index 0d509c7c029bfdba42f2b4998affb80db4a190cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.07206468184789022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200407_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200407_M_GLOBAL.out deleted file mode 100644 index 123ccd0c864badf0d8f2eca3691dd313725f14a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.06598408619562784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200408_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200408_D_GLOBAL.out deleted file mode 100644 index 437b054350fed65104130d85b2babd83cd2d7a14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.08321320613225301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200408_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200408_H_GLOBAL.out deleted file mode 100644 index 22831ac1bcc0e80891cfbaecd381b52e09c3f793..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.07673858801523845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200408_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200408_M_GLOBAL.out deleted file mode 100644 index 4049e3a32930f28cb45067e63e2f09e253da622a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.08690451383590699 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200409_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200409_D_GLOBAL.out deleted file mode 100644 index 663064e5d732e0e1045749d8b3848d3fbd712ff0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.06929752031962076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200409_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200409_H_GLOBAL.out deleted file mode 100644 index e73efbd1d6707d6b3b9c3ead2e3d9cd6cfa7591f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.05687524477640788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200409_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200409_M_GLOBAL.out deleted file mode 100644 index c680ec80b3f6b58969cd576709ea89b9d66e6daa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.06106435060501099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200410_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200410_D_GLOBAL.out deleted file mode 100644 index 8909ef35a7c601eb3b66e51b64e2afa05cce0dd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.06153573989868164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200410_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200410_H_GLOBAL.out deleted file mode 100644 index 26eb225ce2fb05d22aa66cec61e316c1a6ebe4d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.07112537622451783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200410_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200410_M_GLOBAL.out deleted file mode 100644 index 6514db91336ab6154ec2e1e0b6d4d04bc886b39b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.06984025239944458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200411_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200411_D_GLOBAL.out deleted file mode 100644 index 959884b3e4d2dbf4b657aa75e33113c4990afdcb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.06649851401646932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200411_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200411_H_GLOBAL.out deleted file mode 100644 index f7849692dbfd363c242a730d310bfdbcba7fdf6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.09194985230763754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200411_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200411_M_GLOBAL.out deleted file mode 100644 index 8037f0fa68a3ad3e7937bc577d12dbc8f84c599d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.07849448521931966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200412_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200412_D_GLOBAL.out deleted file mode 100644 index cde8ae8f0d68847ec27ac92f5af6e484ab0e1b6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.061363387107849124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200412_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200412_H_GLOBAL.out deleted file mode 100644 index 200d6adf2a52d6b9c8b0b8b7364d50c98b7ebe98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.0756993293762207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200412_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200412_M_GLOBAL.out deleted file mode 100644 index 755caf9a1fe03691d297a2ab11d90c0fe3999c0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.06413446267445883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200501_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200501_D_GLOBAL.out deleted file mode 100644 index c730cf03c0c8f6b633b1be9d98f024d802e0f409..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.08095858494440715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200501_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200501_H_GLOBAL.out deleted file mode 100644 index e99b05639b6161df6ffd321db87a1ce173562d9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.07054237127304078 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200501_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200501_M_GLOBAL.out deleted file mode 100644 index da579c90e93da1b06de777e64d7b53b781d8f694..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.06498536666234335 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200502_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200502_D_GLOBAL.out deleted file mode 100644 index 2c9eb684363e3852cf82dcee07530d7db0a5e37f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.07571740945180257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200502_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200502_H_GLOBAL.out deleted file mode 100644 index c448de3d8adb972068abcfa61294db738417987c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.07142480214436848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200502_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200502_M_GLOBAL.out deleted file mode 100644 index d6f5b3c39eadbe074397c1d1ca0035571264e5df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.06626160542170206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200503_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200503_D_GLOBAL.out deleted file mode 100644 index 29e79bb83613acb55240abea1f37640b15b3d7d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.06781442165374756 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200503_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200503_H_GLOBAL.out deleted file mode 100644 index 55eb959d4cf87b6489576e455e0952fc052766f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.05258385340372721 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200503_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200503_M_GLOBAL.out deleted file mode 100644 index 46425e97e75cf696eac8e7da5c6d22974756e4c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.06401351690292359 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200504_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200504_D_GLOBAL.out deleted file mode 100644 index 89c5994aae9379c191f5036f24d60b646d3594aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.08160997629165649 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200504_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200504_H_GLOBAL.out deleted file mode 100644 index db788ef1840f638e5d008a3a74dedebdb391272c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.07170064051946004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200504_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200504_M_GLOBAL.out deleted file mode 100644 index 223d996ad6771416f9af8f80781eb63db6fe5222..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.08123671611150106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200505_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200505_D_GLOBAL.out deleted file mode 100644 index 96b4d8076eda6db8a639dafd477fd5bb056abfc5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.06849726835886637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200505_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200505_H_GLOBAL.out deleted file mode 100644 index 9a41efd10b6f62ad4eb45622f0b2ce8838e384f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.09083600838979085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200505_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200505_M_GLOBAL.out deleted file mode 100644 index 9371401b9b915b0927ee9de959f3574dfb36fc3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.07519909540812174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200506_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200506_D_GLOBAL.out deleted file mode 100644 index 28f36210c00e490957265f42dd913abdf7d1c3d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.08678862253824869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200506_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200506_H_GLOBAL.out deleted file mode 100644 index 5e89a7c0c9410d7913e25f54b51e869b7c70ad45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.07248811721801758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200506_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200506_M_GLOBAL.out deleted file mode 100644 index be325cfecb70c25ece7838152bfd65b75c05b7cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.057981884479522704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200507_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200507_D_GLOBAL.out deleted file mode 100644 index 0525fc2a0662e2ee98de18041af12421c4f4a173..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.07979018290837606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200507_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200507_H_GLOBAL.out deleted file mode 100644 index 3c70619700edea906d378878222aef2148b95acf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.07571142514546712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200507_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200507_M_GLOBAL.out deleted file mode 100644 index 6cd769c5be0dcd941faa59bc26d878abcdefcd5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.06262970368067423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200508_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200508_D_GLOBAL.out deleted file mode 100644 index 9cda3b4982066078e2576cf5139489094b342786..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.07388029098510743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200508_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200508_H_GLOBAL.out deleted file mode 100644 index 9b6a33e70d38700d675d3202616ef6aadb827cf1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.06766155163447062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200508_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200508_M_GLOBAL.out deleted file mode 100644 index 0978c7736b1c435da5c644125996d602e96bd1c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.07279364267985027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200509_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200509_D_GLOBAL.out deleted file mode 100644 index 6edff174122bead41c0a7b3675182aa48e7c8044..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.07655027707417807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200509_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200509_H_GLOBAL.out deleted file mode 100644 index e7f3ae22c74b51c6463d7802c964a05a29cb015e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.07952557007471721 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200509_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200509_M_GLOBAL.out deleted file mode 100644 index a151d3ae811dc7be97ff997f7ab8a5449d29f406..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.08185548782348633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200510_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200510_D_GLOBAL.out deleted file mode 100644 index 53813a502c677de28e2450024dc0878baa72d19d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.07438375949859619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200510_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200510_H_GLOBAL.out deleted file mode 100644 index f669035407e3ae5ad43d71b92df41095da91b539..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.07427320877710979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200510_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200510_M_GLOBAL.out deleted file mode 100644 index 05caa6b270d8f633edd9696d3b82d0b1d9ec45c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.060880088806152345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200511_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200511_D_GLOBAL.out deleted file mode 100644 index fe72771c8578fb59d7c9ef0d3f8c36093dabbd53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.06894811789194742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200511_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200511_H_GLOBAL.out deleted file mode 100644 index 788734f7459f7060a70eaed6ebf70a9515fc474f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.06917227904001871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200511_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200511_M_GLOBAL.out deleted file mode 100644 index 40382dec1f4bce8e65973ff2b4e204f98514eb76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.0611301064491272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200512_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200512_D_GLOBAL.out deleted file mode 100644 index 9c990f262d39523b86741899a566586a50c0c598..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.07501140435536703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200512_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200512_H_GLOBAL.out deleted file mode 100644 index de87438a274cc1c6fc4bf2a40359a45022b49778..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.08173419634501139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200512_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200512_M_GLOBAL.out deleted file mode 100644 index 65bfb5c387e531d3db03c0ca0c06ad9879051c98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.05928348302841187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200601_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200601_D_GLOBAL.out deleted file mode 100644 index 9b28d7c4ba93814fdd24e8ac0eedb1d3d5dbd7f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.0635019580523173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200601_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200601_H_GLOBAL.out deleted file mode 100644 index a2cbc82d3bf508af3af99b3693c975d3af11cd51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.05845380624135335 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200601_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200601_M_GLOBAL.out deleted file mode 100644 index 79941b4bb600cb924f776f846eaae6fe61840ee8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.07716074387232462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200602_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200602_D_GLOBAL.out deleted file mode 100644 index 0402d32bc75036be1ab656f7ad757890b79d30ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.07602540254592896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200602_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200602_H_GLOBAL.out deleted file mode 100644 index 0371751d5d389f93f2232a7ac1d13351049a43b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.07725723584493001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200602_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200602_M_GLOBAL.out deleted file mode 100644 index f397851cc0a44c839aaa163cfb6ac01129e49ad1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.07592175404230754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200603_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200603_D_GLOBAL.out deleted file mode 100644 index b1edbd8900d570fc2fb4d743d6ee9d7fc22a9492..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.07991933027903239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200603_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200603_H_GLOBAL.out deleted file mode 100644 index 3e3708efbd4506ed2f8f511e82152dbddc1311fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.0799880345662435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200603_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200603_M_GLOBAL.out deleted file mode 100644 index c6a6acfcf1d348dc6ebf0f77830b0fc3db554ef8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.08525009155273437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200604_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200604_D_GLOBAL.out deleted file mode 100644 index b972c4a83cbf950c3862745bf02da150169c1166..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.06905840635299683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200604_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200604_H_GLOBAL.out deleted file mode 100644 index d2f118df3bb0289d1990fa3c44f419216490bfc5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.08153669436772665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200604_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200604_M_GLOBAL.out deleted file mode 100644 index ee0250417983617e815494aa8310d84ffdbe895d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.07438576618830363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200605_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200605_D_GLOBAL.out deleted file mode 100644 index 6ee6c22c850859972b2ab33d55bea2588ba88b73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.08285652001698812 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200605_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200605_H_GLOBAL.out deleted file mode 100644 index f4de36f1d2076cf96878a76a71483adb015c1784..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.07321337461471558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200605_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200605_M_GLOBAL.out deleted file mode 100644 index aee0e901fc750fd26f8b19f5ff0da55a902952c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.09303472836812338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200606_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200606_D_GLOBAL.out deleted file mode 100644 index d79ce7727a9725c1377abc7074ff9e7fb8b5a436..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.05820309321085612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200606_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200606_H_GLOBAL.out deleted file mode 100644 index 503442c9e2b18fcd50a5f1e6ea756ba3e39fe69d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.07590006192525228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200606_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200606_M_GLOBAL.out deleted file mode 100644 index 575e960893c392e67ff8442223a129a19d3819e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.06926660935084025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200607_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200607_D_GLOBAL.out deleted file mode 100644 index 269f9b2b5fab36a41517f7ebf6e6473b61644068..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.0890762726465861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200607_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200607_H_GLOBAL.out deleted file mode 100644 index f56d414e5a88bcd9c0fbcc00c7bb787b50622981..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.07497775157292684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200607_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200607_M_GLOBAL.out deleted file mode 100644 index ee3d7b5d75ff11fa9c5494ac8a2cf7d7c5e1b261..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.06950078407923381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200608_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200608_D_GLOBAL.out deleted file mode 100644 index f791bc02c60302b54759108b27bd288e39d1c3b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.06949684222539267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200608_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200608_H_GLOBAL.out deleted file mode 100644 index 93a2d6d522d90d2807df0bc3fdc9d1c978d5145d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.08450913826624552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200608_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200608_M_GLOBAL.out deleted file mode 100644 index 21da1f4ed43aa754c6e7ec084ce664d76c5c9905..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.06331562995910645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200609_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200609_D_GLOBAL.out deleted file mode 100644 index fe4c747453443d8aacafb126695df075797d2d30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.06862624883651733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200609_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200609_H_GLOBAL.out deleted file mode 100644 index 45f7dc5f39a5e74fd434c16d14d9f8147aff0779..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.062301973501841225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200609_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200609_M_GLOBAL.out deleted file mode 100644 index 95f275486add3aabbc5be94371c3275b71631485..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.0800247589747111 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200610_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200610_D_GLOBAL.out deleted file mode 100644 index a07e6fbfdb6f3c64355435e3177abb31a6c14a6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.0735937237739563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200610_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200610_H_GLOBAL.out deleted file mode 100644 index b9fbff1785cec71b099b6287acb70775261a534f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.06705835262934366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200610_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200610_M_GLOBAL.out deleted file mode 100644 index 095cd8c7155e94e3110c34e1ac30791afe387aa3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.06290952364603679 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200611_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200611_D_GLOBAL.out deleted file mode 100644 index 905fff0f6b8330f4c705d8aae8a32e2634b61fe7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.07083872159322104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200611_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200611_H_GLOBAL.out deleted file mode 100644 index 376ca18675fab89a7e33e2cb1aa6760bdf1ddaca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.060014502207438154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200611_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200611_M_GLOBAL.out deleted file mode 100644 index d6246f683ade9608ee39e89180fd519572e03bdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.07185157537460327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200612_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200612_D_GLOBAL.out deleted file mode 100644 index e44c19098bf4061d241da678d272f0c2d4e58586..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.06780794858932496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200612_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200612_H_GLOBAL.out deleted file mode 100644 index a6ae2e75cb44c06d3f23f9c45933e6e74592e7a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.05527549187342326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200612_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200612_M_GLOBAL.out deleted file mode 100644 index 4b498071a008540e673f38530b3c3214fb5870b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.07085408369700114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200701_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200701_D_GLOBAL.out deleted file mode 100644 index ddea5c0b7c40a8851e1c7ade7bab760a91c7b399..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.07080627679824829 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200701_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200701_H_GLOBAL.out deleted file mode 100644 index 27c1a7040159a92d8000d3da2297e7bcb0766c8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.06266078551610312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200701_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200701_M_GLOBAL.out deleted file mode 100644 index 64ce223557b680f6b470536b6e780b2e7f2ff38e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.07683869997660318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200702_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200702_D_GLOBAL.out deleted file mode 100644 index 0a4e8e8d569766baae3ddc93c1f7521203fd9b29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.08944933414459229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200702_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200702_H_GLOBAL.out deleted file mode 100644 index 25b6112df1c86bd3b0aeb9615890ca33325905d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.05655158758163452 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200702_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200702_M_GLOBAL.out deleted file mode 100644 index 0012714ba0069bc385af41d5f7af57d4583076e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.05968111753463745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200703_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200703_D_GLOBAL.out deleted file mode 100644 index 60b6bc33dddd924e196909a8aba9084d352e3d52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.08490817149480184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200703_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200703_H_GLOBAL.out deleted file mode 100644 index 5cf8a8b8dc55396d2979b04b4fa1e72567e68332..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.06829178730646769 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200703_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200703_M_GLOBAL.out deleted file mode 100644 index 1e555508b214636d7d017d2139f811065d7a29a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.06729424794514974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200704_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200704_D_GLOBAL.out deleted file mode 100644 index 0788ccb60281f41c36c67a5bb0d5e6e56c5b1b7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.06543383598327637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200704_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200704_H_GLOBAL.out deleted file mode 100644 index a0d64d82edf13d3c968bbaa59d09315cafcd0be9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.06008783976236979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200704_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200704_M_GLOBAL.out deleted file mode 100644 index 5a41c4912df82358dfe4cc7f4f8bdd5292602e9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.06361307700475057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200705_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200705_D_GLOBAL.out deleted file mode 100644 index d7549b61fe3a9aca9ab98014781f1c99f3bdaf63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.0741134484608968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200705_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200705_H_GLOBAL.out deleted file mode 100644 index b305b310b4943d64d9a8e48cb8d93ada86b13883..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.08110412756601969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200705_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200705_M_GLOBAL.out deleted file mode 100644 index 9d5174f81a00626f3598c8a959871dd01763e0f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.08814010620117188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200706_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200706_D_GLOBAL.out deleted file mode 100644 index 402870f34345eea910a65c1708362fe01a0ad80e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.07370659112930297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200706_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200706_H_GLOBAL.out deleted file mode 100644 index 0b694b7509f123fced75af592c38f19fb869545c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.08080772956212362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200706_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200706_M_GLOBAL.out deleted file mode 100644 index b82114f82ddd83ac30fa06fe2492d19df0a8dd42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.07085331281026204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200707_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200707_D_GLOBAL.out deleted file mode 100644 index 4d21bfe4bba672b6a93da12e8ff7ad8777788b81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.06932168006896973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200707_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200707_H_GLOBAL.out deleted file mode 100644 index ea86dedc7c6f004d9428432cdc5189d14c2380a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.07325050036112467 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200707_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200707_M_GLOBAL.out deleted file mode 100644 index f84d85664b8f5ebe4248eb0a6236510d64e85577..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.063797128200531 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200708_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200708_D_GLOBAL.out deleted file mode 100644 index b7e867a954cd74a347106c92e54c111a860d243d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.0638839602470398 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200708_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200708_H_GLOBAL.out deleted file mode 100644 index a85985e207ba40bf55a2cd5c35d2a6a38d08e45f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.08216444651285808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200708_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200708_M_GLOBAL.out deleted file mode 100644 index f6304c86b4cceb56bf67b8c93e6b3b941f50ae12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.08791138331095377 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200709_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200709_D_GLOBAL.out deleted file mode 100644 index bb3139e0fef9488a92298c26a4d141fa41b21974..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.08465466896692912 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200709_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200709_H_GLOBAL.out deleted file mode 100644 index 95fac4be6fc88db6f37511bf7201d688cadb9119..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.06176291704177857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200709_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200709_M_GLOBAL.out deleted file mode 100644 index 9a3904025926bacd97bf7a732b1df0316ffe3b03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.05449705918629964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200710_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200710_D_GLOBAL.out deleted file mode 100644 index 466410bddb57e7aa8ec8da539264b53a8287d730..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.058487717310587564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200710_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200710_H_GLOBAL.out deleted file mode 100644 index bb4e77d2521f45c666eb8cd506ddf0db0e985292..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.06840896606445312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200710_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200710_M_GLOBAL.out deleted file mode 100644 index 638ff8795732f2638bad487acb5fe25233057a74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.0666911760965983 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200711_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200711_D_GLOBAL.out deleted file mode 100644 index fc14d2d800012a7dd4f95f0b9b577d33cb225a51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.08892573515574137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200711_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200711_H_GLOBAL.out deleted file mode 100644 index 2a4343cab9bd4ffd332f8c3a2faae4fb4c36b6f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.06274101734161378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200711_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200711_M_GLOBAL.out deleted file mode 100644 index 99ddc74a5b8dfd39e8521f0c5ec39f6dc8866778..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.07867759466171265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200712_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200712_D_GLOBAL.out deleted file mode 100644 index 2328c9738d3cb315fba0455249ed87780f3e7b48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.05757497549057007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200712_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200712_H_GLOBAL.out deleted file mode 100644 index 3127e4fd3bf06a9efd685a3b69e6f88d61ce2177..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.06235448122024536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200712_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200712_M_GLOBAL.out deleted file mode 100644 index 93366b8cf7159ae8da00112b5a1c7ecf36ab9fa5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.07900844812393189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200801_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200801_D_GLOBAL.out deleted file mode 100644 index 11c3c5d35fbba2b1299566abdab064f80d604fd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.07958637078603109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200801_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200801_H_GLOBAL.out deleted file mode 100644 index bb6cf06997faf561041b7df4e893dec789a6d00e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.07944161494572957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200801_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200801_M_GLOBAL.out deleted file mode 100644 index e67c62273b4e1c586f281ba0442c45b51c17f0e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.06247597932815552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200802_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200802_D_GLOBAL.out deleted file mode 100644 index ae50554c88ffb3c41f55ecf35c8f01658591ae42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.06140066782633464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200802_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200802_H_GLOBAL.out deleted file mode 100644 index e265dc42933db633b7afdc7ab525340df0b307e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.06704606612523396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200802_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200802_M_GLOBAL.out deleted file mode 100644 index c040ac05ca803886cd2679feceaa39f4a150aabf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.07172804276148478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200803_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200803_D_GLOBAL.out deleted file mode 100644 index 7bf2f3323006204bd17e542382e6797826db6956..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.06860333681106567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200803_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200803_H_GLOBAL.out deleted file mode 100644 index 4a593bc70ab6b0cfedcbd7967f9cc645f1bd399c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.06254522403081259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200803_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200803_M_GLOBAL.out deleted file mode 100644 index d31974cfa5576a113987e5670e4b221b87dc8822..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.07685994704564413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200804_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200804_D_GLOBAL.out deleted file mode 100644 index 918433f1afd26d6accba34b92d2d8b7267c214b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.05583001772562663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200804_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200804_H_GLOBAL.out deleted file mode 100644 index ac912b5fe2afc0c7dee27091a8a491a882bfdd98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.0648247758547465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200804_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200804_M_GLOBAL.out deleted file mode 100644 index 21f48da4cb326fee7e7fcfe19695373170b11afe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.06729665199915567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200805_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200805_D_GLOBAL.out deleted file mode 100644 index 75a7ff70e3747b5b49b1eb5c686d4a08ce46f4e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.0709009051322937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200805_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200805_H_GLOBAL.out deleted file mode 100644 index 6b770fd51ad761eb4563d7e241b4bebbc7d396b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.09038936694463094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200805_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200805_M_GLOBAL.out deleted file mode 100644 index 8b0d1ea929b0640fd7154c956296816abd51be11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.06792032321294149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200806_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200806_D_GLOBAL.out deleted file mode 100644 index e4d4e4836b79e586c3ea33cdb233673dc801ddaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.06227268775304159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200806_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200806_H_GLOBAL.out deleted file mode 100644 index fd06e7b7b268c832c498cf2c27ece8498ec3d991..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.06327870686848959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200806_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200806_M_GLOBAL.out deleted file mode 100644 index 5deafceb6d3d9b45f6a73c94646f60dd4c7bb3fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.07476828893025717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200807_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200807_D_GLOBAL.out deleted file mode 100644 index 9a50e2e484a6f36bcf9172a5ad2c038ca27af041..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.07500603596369425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200807_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200807_H_GLOBAL.out deleted file mode 100644 index 6bcb4b7e31c64b0370efe2421e7716eaddeccd72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.0663536032040914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200807_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200807_M_GLOBAL.out deleted file mode 100644 index 231bec309d2ad4c6660a1b23ad4aa4e25f2f8bd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.05888650417327881 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200808_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200808_D_GLOBAL.out deleted file mode 100644 index 848e0c3cb9e988ea31ae2cb035f28eb51604c789..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.06513461271921793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200808_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200808_H_GLOBAL.out deleted file mode 100644 index 32d2edcf4ff617c05f81252bcf7e1e86be7c606a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.07793617248535156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200808_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200808_M_GLOBAL.out deleted file mode 100644 index 0a719c83136b5bc2a8f0ab72abae57aa6624f4f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.0825050155321757 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200809_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200809_D_GLOBAL.out deleted file mode 100644 index f9ab1230c0fcc4c00a6b35621492116c0c0c43dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.07218717336654663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200809_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200809_H_GLOBAL.out deleted file mode 100644 index fdca100d69610731b1c1cdc2f20dc04bc59225fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.0704770565032959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200809_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200809_M_GLOBAL.out deleted file mode 100644 index 96a6bfaac1e5b037a908d1e9c6ab94f58051dfc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.06177575588226318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200810_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200810_D_GLOBAL.out deleted file mode 100644 index a96892da0221dab59d77865585d1e09b76d3cc20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.09473198254903158 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200810_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200810_H_GLOBAL.out deleted file mode 100644 index 626d2f495cd78b9dbb5d01078fc43651ecaa9979..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.08752146561940512 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200810_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200810_M_GLOBAL.out deleted file mode 100644 index a115e1e77d5fb6d6e6afe4a644043467885d68d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.07227744658788045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200811_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200811_D_GLOBAL.out deleted file mode 100644 index ca31ec8a364b0831f9646554f72acd34237a4fae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.07381848096847535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200811_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200811_H_GLOBAL.out deleted file mode 100644 index a26bde4bb61c0feee008ec46b63eccb198d2afdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.06961514949798583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200811_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200811_M_GLOBAL.out deleted file mode 100644 index 197f2ba16794209f146c308c49aa719d7702a5c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.06255666812260946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200812_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200812_D_GLOBAL.out deleted file mode 100644 index 1e9fb66cc5c90c2dcf1e7c0cc205a969c22218c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.0822062889734904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200812_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200812_H_GLOBAL.out deleted file mode 100644 index 82d8600132b65feb23c45101336cc94418790d11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.059720138708750405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200812_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200812_M_GLOBAL.out deleted file mode 100644 index bc0f70e7eb0c9f51930f5d88a1a15c39d18f6e6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.06866164207458496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200901_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200901_D_GLOBAL.out deleted file mode 100644 index 0edb7ba12c31130ff36262f7456f350a93a2022c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.07498726844787598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200901_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200901_H_GLOBAL.out deleted file mode 100644 index decb47154a1984cb3ba58525c5be5217206e89f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.07294959624608358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200901_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200901_M_GLOBAL.out deleted file mode 100644 index e5f777324eb32a741af29eee9c1c476e8ec9de0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.06104596853256226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200902_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200902_D_GLOBAL.out deleted file mode 100644 index 943d900b3792d2daf5a068940ea5234bd683ca5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.0841661254564921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200902_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200902_H_GLOBAL.out deleted file mode 100644 index 896a37e88c33531ba7254f48cfbc92caadd97ac3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.08723496993382772 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200902_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200902_M_GLOBAL.out deleted file mode 100644 index a2879706c4d538b3443fb67ee3eefa367c50b3bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.07179447015126546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200903_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200903_D_GLOBAL.out deleted file mode 100644 index 58c44fdceefe4f4ae0a9aa5907942ccd9d08ab5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.06778398354848227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200903_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200903_H_GLOBAL.out deleted file mode 100644 index 820c25c82c7d6037a4b15231ebe03fb39e93d8ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.07262858152389526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200903_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200903_M_GLOBAL.out deleted file mode 100644 index a7057fab94123a3da5d80bd92d9704e7378c8b0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.06061509052912394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200904_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200904_D_GLOBAL.out deleted file mode 100644 index 1a1039af8f9e1fd62e107dcf09c1188bd002294e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.07227007548014323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200904_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200904_H_GLOBAL.out deleted file mode 100644 index f540a350aebcbbb660fd117a3b37f68413c2b968..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.07343449195226033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200904_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200904_M_GLOBAL.out deleted file mode 100644 index 3a70a32ad6876f21ca92221269699248b50e71cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.07178486585617065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200905_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200905_D_GLOBAL.out deleted file mode 100644 index a7090244243dd7b726994007b9458257c731d54e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.07202676932017009 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200905_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200905_H_GLOBAL.out deleted file mode 100644 index ab08c6af9fc196620f179c13a071813c0449b43c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.08303236564000448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200905_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200905_M_GLOBAL.out deleted file mode 100644 index cb77791dc191071cc0362bb489411744f31af3cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.06684768199920654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200906_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200906_D_GLOBAL.out deleted file mode 100644 index b530c32e2d91b89994d2f621f2bde07e01eb8068..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.08335526784261067 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200906_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200906_H_GLOBAL.out deleted file mode 100644 index 9aafce83dc5391fe5f72d133e83daef37ddbb438..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.07644853591918946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200906_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200906_M_GLOBAL.out deleted file mode 100644 index 8c0b2ed46581950a12d52a8b8febecda4324bcb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.06704388062159221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200907_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200907_D_GLOBAL.out deleted file mode 100644 index 78ec6769ce05779ababefcc3c0746dbe535aed48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.07567619482676188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200907_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200907_H_GLOBAL.out deleted file mode 100644 index 94a06c269fff495d4777aebd61e1b65234b00756..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.07565480868021647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200907_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200907_M_GLOBAL.out deleted file mode 100644 index a20ba9918ea60b853687baa9f0e4eb8414840389..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.0634200096130371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200908_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200908_D_GLOBAL.out deleted file mode 100644 index 98ccdfcd9bcc4c33ef1a429fd7c919483423ad12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.06935932238896687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200908_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200908_H_GLOBAL.out deleted file mode 100644 index d2e615ef7b944d363e61442d80b471c5c2d2149b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.06555498043696086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200908_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200908_M_GLOBAL.out deleted file mode 100644 index 5f8b1b76be9332d195f05e9936794c1d4026d879..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.06787624756495157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200909_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200909_D_GLOBAL.out deleted file mode 100644 index 62a377ea6b263da85e6d37cad69b571342cc2ddb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.06864202817281087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200909_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200909_H_GLOBAL.out deleted file mode 100644 index b37e84ef6f10120f3821fa81b17312db0c6d6d0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.06537346045176189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200909_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200909_M_GLOBAL.out deleted file mode 100644 index f5c66d0bb77a4594a484752e73c1319d3360b2a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.08047755559285481 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200910_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200910_D_GLOBAL.out deleted file mode 100644 index e72c86c8802a5472c506df228da91c36157dcbf1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.07474393447240193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200910_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200910_H_GLOBAL.out deleted file mode 100644 index e3dc0cff0f8e7916a76066aef8658f621553a3a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.05988465944925944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200910_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200910_M_GLOBAL.out deleted file mode 100644 index 52928b5baaeb063d970bef530359193615a72965..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.07982495625813803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200911_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200911_D_GLOBAL.out deleted file mode 100644 index c4c42c85990f8ee794aaf0bc32e958ba8cfd6e26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.06859294970830282 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200911_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200911_H_GLOBAL.out deleted file mode 100644 index 73a7de79bec9361c08395bd0b3c93e5e162308e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.0794275959332784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200911_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200911_M_GLOBAL.out deleted file mode 100644 index 954efdc7c7a060852a398602f71e4e1e5d840e30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.0714815338452657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200912_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200912_D_GLOBAL.out deleted file mode 100644 index dd0fab3ed1f17751298a370ac510ac90a39dcdeb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.09141999880472819 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200912_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200912_H_GLOBAL.out deleted file mode 100644 index 236e2e5b77765f64e8b305644f336a6ac58bc6e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.09729633331298829 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_200912_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_200912_M_GLOBAL.out deleted file mode 100644 index 920d7d8a819c2d4aa5d6aff7a90d519cae80b961..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_200912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.10313224792480469 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201001_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201001_D_GLOBAL.out deleted file mode 100644 index 4ca34f8b208945c0047cd7cd134790aaa4c091ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.09417622089385987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201001_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201001_H_GLOBAL.out deleted file mode 100644 index a3e77d2a32ffcc5ed773bf845e80e3b228adb405..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.11375112136205037 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201001_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201001_M_GLOBAL.out deleted file mode 100644 index 4d865eea5d6043a7011b36abab35090acda845f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.08965437809626262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201002_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201002_D_GLOBAL.out deleted file mode 100644 index 08c7d80386557e0446220bdc03bf8f6ac16e44d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.08600941101710001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201002_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201002_H_GLOBAL.out deleted file mode 100644 index b7da15aacca2b141dfb23c529efe04d2d859991b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.0991413950920105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201002_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201002_M_GLOBAL.out deleted file mode 100644 index 0f308b56bc54c099c2fa69a026f014ceb6ec7646..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.0932722012201945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201003_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201003_D_GLOBAL.out deleted file mode 100644 index 5a83392723c6f7f19b1085ba3256f37e89d6ece3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.08912926912307739 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201003_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201003_H_GLOBAL.out deleted file mode 100644 index eedfc7050aa3a87327385ed8da5dba69b794a14a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.08889472881952921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201003_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201003_M_GLOBAL.out deleted file mode 100644 index e5c882100dfcd1cceb26d1685cfbac9b7edab97e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.09240783850351969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201004_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201004_D_GLOBAL.out deleted file mode 100644 index 3c2149917efdda78b67287ed777f676efa1b5947..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.09345078865687052 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201004_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201004_H_GLOBAL.out deleted file mode 100644 index c24551967db862c0fd191bf9d688063d52894df1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.08985938628514607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201004_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201004_M_GLOBAL.out deleted file mode 100644 index df0f6a4faf95cf7971bc09c4b5a74cf387668a5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.09271817207336426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201005_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201005_D_GLOBAL.out deleted file mode 100644 index 1d2b1f097a6ef79891d07e98adcd343ee456b525..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.08814013401667277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201005_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201005_H_GLOBAL.out deleted file mode 100644 index 19415f916e7ca11bac77ab2ec42fa5469918f389..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.09409718116124471 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201005_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201005_M_GLOBAL.out deleted file mode 100644 index 40cbf7f62f568524b3cb6c8f21f8ef03d35e9d42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.09738314549128214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201006_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201006_D_GLOBAL.out deleted file mode 100644 index d9c5bedb42bb3bf06e64d61b4f949f2c95fb77ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.10480676492055258 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201006_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201006_H_GLOBAL.out deleted file mode 100644 index 18a69acd969f73d754b720cabecbe02950680746..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.09105895757675171 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201006_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201006_M_GLOBAL.out deleted file mode 100644 index 761093458b834829cb855db2ffcb0441be1bdc3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.10409814914067586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201007_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201007_D_GLOBAL.out deleted file mode 100644 index 1633ab9a5349b823ee419f3485735a485ca5fc3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.08876680930455526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201007_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201007_H_GLOBAL.out deleted file mode 100644 index 61b53f779e2c55226c61f14d2c38965d9de3a573..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.11287481387456258 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201007_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201007_M_GLOBAL.out deleted file mode 100644 index ab7b9fca182725c90707ac211f641efe6a07b296..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.0892049511273702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201008_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201008_D_GLOBAL.out deleted file mode 100644 index d7f1af5bd410ba4284087990539010110cf1e702..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.09391787846883139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201008_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201008_H_GLOBAL.out deleted file mode 100644 index b676b3d412cb74474c5efa28b9ca7ca88fc3f811..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.10278966029485066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201008_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201008_M_GLOBAL.out deleted file mode 100644 index ffad7b0000a7ea550feabf068b2d5f2577f2109f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.09637192487716675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201009_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201009_D_GLOBAL.out deleted file mode 100644 index f5db54f1a090481c8cb72bbb47e955fb96610e4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.08672258456548056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201009_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201009_H_GLOBAL.out deleted file mode 100644 index c2847c9f621d7417b29b7a9e6bf8ca5840437021..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.1033363421758016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201009_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201009_M_GLOBAL.out deleted file mode 100644 index bfe35154dd178c1371544ca80ea074aeb999c819..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.0860909660657247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201010_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201010_D_GLOBAL.out deleted file mode 100644 index 71deb142feb777031b74a96f261305be58f4b0a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.12195820013682047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201010_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201010_H_GLOBAL.out deleted file mode 100644 index 9b0a29654bea2f62ba9daf28606830024eda010d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.10443936983744304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201010_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201010_M_GLOBAL.out deleted file mode 100644 index fdf2abe51b5a1b8d42611ac70f76ee0d9e185433..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.0957577109336853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201011_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201011_D_GLOBAL.out deleted file mode 100644 index 6abe8661a174d0b26503c0e4b2aaf49dd056bf04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.09454702933629354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201011_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201011_H_GLOBAL.out deleted file mode 100644 index a06a13ec25b41ff5c1cb247b0f608bd78cc0a08b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.09718623161315917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201011_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201011_M_GLOBAL.out deleted file mode 100644 index b803c89a67b7977a85004e08f7fcdba8a514b16f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.09002817074457804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201012_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201012_D_GLOBAL.out deleted file mode 100644 index 8b287eab5e75fdea558a2e4cf109a2721718d4eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.10456311702728271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201012_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201012_H_GLOBAL.out deleted file mode 100644 index 10611cff521b4b30d99ac4e61b9fb631f8e2f6b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.09837483167648316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201012_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201012_M_GLOBAL.out deleted file mode 100644 index 627c665d4895cee1b8fbf78a154954bc425e865b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.09336659908294678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201101_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201101_D_GLOBAL.out deleted file mode 100644 index f2633c190cfb5b4b5b50f8d63714eb5644f34ad3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.10239989757537842 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201101_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201101_H_GLOBAL.out deleted file mode 100644 index 35e6f2df040462ae9481710d7dd514a4c4f544ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.09078324635823568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201101_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201101_M_GLOBAL.out deleted file mode 100644 index af9e282c18066364552df955df2c18c6d07a8d6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.09633945226669312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201102_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201102_D_GLOBAL.out deleted file mode 100644 index d0f45b47dd82bee12ef70105a09eb179f2a4ce35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.09683028062184652 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201102_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201102_H_GLOBAL.out deleted file mode 100644 index 573b86d8d39c14d8c6ae4df269cee387fb31d981..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.09137185414632161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201102_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201102_M_GLOBAL.out deleted file mode 100644 index 2ccb0869b7a1b28be7a114bbae83ab8f9536e5b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.09275096654891968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201103_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201103_D_GLOBAL.out deleted file mode 100644 index a5c32b1c942c273161a66512dd46c6e1b6873053..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.09771954615910848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201103_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201103_H_GLOBAL.out deleted file mode 100644 index c6d6ec674b4125a8bad0c2da4140b8ff014bbfcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.09927598635355632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201103_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201103_M_GLOBAL.out deleted file mode 100644 index 4a4e01e3de2f5a26bd9bb78935f031d306d892dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.09336942434310913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201104_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201104_D_GLOBAL.out deleted file mode 100644 index 42a40090d0e74d752343d31dc0c683b7b985a43e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.09367027282714843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201104_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201104_H_GLOBAL.out deleted file mode 100644 index 2077bbde8de19407380070f6313016b45ce7a012..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.10063257217407226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201104_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201104_M_GLOBAL.out deleted file mode 100644 index fc4074ac31a68387252d053f0e57bc9eaaff7673..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.10502108335494995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201105_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201105_D_GLOBAL.out deleted file mode 100644 index 9054099d0e469984bd5b81bea81ac9689f9954ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.08660808801651002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201105_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201105_H_GLOBAL.out deleted file mode 100644 index 0bfc1e2f25ac6b56736455befd91fb147dd5c829..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.09678621689478556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201105_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201105_M_GLOBAL.out deleted file mode 100644 index 2726fe2280ab0daf9ceed06d33b081194c5f6308..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.09086666901906332 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201106_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201106_D_GLOBAL.out deleted file mode 100644 index b9395ded779b10eae4a4d962687aa6271f038c70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.08885288635889689 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201106_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201106_H_GLOBAL.out deleted file mode 100644 index 51ea1db681d3762b55c37677bb0fe308d3bdeee4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.09267853895823161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201106_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201106_M_GLOBAL.out deleted file mode 100644 index 98ee9622538dcc687dc7a7c87e4a004992193370..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.085983145236969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201107_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201107_D_GLOBAL.out deleted file mode 100644 index c85f38c9047b59789ee4878dd04e759939fde1c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.10365991195042928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201107_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201107_H_GLOBAL.out deleted file mode 100644 index 5ff3eeae14f307d5aa52309ecc295ed36639f014..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.10342805782953898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201107_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201107_M_GLOBAL.out deleted file mode 100644 index 3a17dfc5c2038aa79f35e2f550f3e09e68f2d538..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.10770763158798217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201108_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201108_D_GLOBAL.out deleted file mode 100644 index 787eef8f02a65f854b9479abfe18d06884121ea1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.10988101959228516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201108_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201108_H_GLOBAL.out deleted file mode 100644 index 3dfffc186b13ed29dd77815803e91f20cdd91342..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.10621993939081828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201108_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201108_M_GLOBAL.out deleted file mode 100644 index a9a3801400cc7caa0857e26298694a74d615f67e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.10300129254659017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201109_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201109_D_GLOBAL.out deleted file mode 100644 index 20b8bfeae34d3eb7f8d15aa5c236a6cb21781d61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.10133251349131266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201109_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201109_H_GLOBAL.out deleted file mode 100644 index 0771a337776d4cd80d5f166fc302f79a107c2beb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.10803429285685222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201109_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201109_M_GLOBAL.out deleted file mode 100644 index 3e2bc722a528f416a58613050020261dcd0d70d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.10419393380482991 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201110_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201110_D_GLOBAL.out deleted file mode 100644 index 06edc1bb0657ec0eaf0df1f85c85cba546d3d1f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.10354046821594239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201110_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201110_H_GLOBAL.out deleted file mode 100644 index 7270d9cd97da1bb914df786b8d922617ed1e4370..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.10719045400619506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201110_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201110_M_GLOBAL.out deleted file mode 100644 index a6b9a35183db913ecc8aef8183b30194a86de114..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.11799152294794718 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201111_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201111_D_GLOBAL.out deleted file mode 100644 index 0a28172873d2262f831f6e7f02466a67feaf12af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.10434396266937256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201111_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201111_H_GLOBAL.out deleted file mode 100644 index 20e8379cc74d5f5a940120d493a03f4d87073612..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.09956978956858317 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201111_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201111_M_GLOBAL.out deleted file mode 100644 index 433cbadac1a19af8988f8a5e3b69624c6fdffd8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.0874777356783549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201112_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201112_D_GLOBAL.out deleted file mode 100644 index 6c54e808d40c65742251aa2f610ba4daad4f8928..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.11350692907969157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201112_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201112_H_GLOBAL.out deleted file mode 100644 index 705cbae25fc5036796c67c2957ade2232b5e7d8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.11095227400461832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201112_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201112_M_GLOBAL.out deleted file mode 100644 index 5aeaa7e191c66995d1f16bcb6fbf92f79d154aaf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.11333512862523397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201201_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201201_D_GLOBAL.out deleted file mode 100644 index c0bacd58c8e9acb9bdfb2d15abf1fd8a6a2b9950..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.0993844747543335 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201201_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201201_H_GLOBAL.out deleted file mode 100644 index cea8f06e1a0b11620422d12e5e5ca7acf55c648c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.10986694494883219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201201_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201201_M_GLOBAL.out deleted file mode 100644 index f556bf1e800a6bc3fe7ce447d662d8e544b02669..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.1037203828493754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201202_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201202_D_GLOBAL.out deleted file mode 100644 index 42828745b5bedc7f1de1179121887f53f4facef7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.1188247561454773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201202_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201202_H_GLOBAL.out deleted file mode 100644 index 604913463d541b13f083468df2254568340a13d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.11652184724807739 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201202_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201202_M_GLOBAL.out deleted file mode 100644 index ce0d51260e3e0bd157d66c54364b4556c2e2de4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.1138622244199117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201203_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201203_D_GLOBAL.out deleted file mode 100644 index e396728146cca3a059b85d9b067cfcc76ffc359d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.11758194367090861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201203_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201203_H_GLOBAL.out deleted file mode 100644 index 04c80e694211271ae6e35c79f1fbd777809396cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.11160578330357869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201203_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201203_M_GLOBAL.out deleted file mode 100644 index f0016b843d70652b9934d4ebdc1499deb1f23b2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.11332565148671468 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201204_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201204_D_GLOBAL.out deleted file mode 100644 index 3e6212ddfd9907ee54fb27a3a8a9276843fee0b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.1262784202893575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201204_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201204_H_GLOBAL.out deleted file mode 100644 index 598400af073317e1a5a34c43a1b38c9451d6e4b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.11233469645182291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201204_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201204_M_GLOBAL.out deleted file mode 100644 index 673de679cd30a1be5a5965c4d588545e7c614290..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.12351166407267253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201205_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201205_D_GLOBAL.out deleted file mode 100644 index 8435e0bab01105c041faf385b4001ddbd5eb0344..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.10668527682622274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201205_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201205_H_GLOBAL.out deleted file mode 100644 index c83d89649e00f716877349ac129923c00b6e99bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.10893539190292359 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201205_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201205_M_GLOBAL.out deleted file mode 100644 index 7f44260a6e48223b156ee3570110810267e7f713..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.10721382300059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201206_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201206_D_GLOBAL.out deleted file mode 100644 index 8cf4b3d72e00048bbdc7f0b29743f05b5e06c11f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.13835906187693278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201206_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201206_H_GLOBAL.out deleted file mode 100644 index b8828d7e9253b16c363de1c1a664c3630416cc90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.12770935694376628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201206_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201206_M_GLOBAL.out deleted file mode 100644 index ca29292f720b472d3bca4ec6817730fd5a0d7264..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.11820634603500366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201207_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201207_D_GLOBAL.out deleted file mode 100644 index 180f9ff19c12e649d0a183a396660a1b97626e6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.09951447248458863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201207_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201207_H_GLOBAL.out deleted file mode 100644 index 64592e697e9fc066926084be9463d96a9bdd77e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.1118553876876831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201207_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201207_M_GLOBAL.out deleted file mode 100644 index a9a3cfababc7c769aa1762f615afd5cce03461a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.1241144061088562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201208_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201208_D_GLOBAL.out deleted file mode 100644 index 96a0bf30b4f68b1ffd24f4943917e06258e58e27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.11430509090423584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201208_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201208_H_GLOBAL.out deleted file mode 100644 index 8e461f6daa1799ac35450ed3df462d5855e9985f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.10833755334218344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201208_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201208_M_GLOBAL.out deleted file mode 100644 index 8f97830f7b202dba60f6dbbcbed1cacda834c445..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.10201764106750488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201209_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201209_D_GLOBAL.out deleted file mode 100644 index 8974e09868952243e7bfe42b471dffca67d98f1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.1062812089920044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201209_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201209_H_GLOBAL.out deleted file mode 100644 index d044783ca4b4e776e78de0be73d658233b947c33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.1192597508430481 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201209_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201209_M_GLOBAL.out deleted file mode 100644 index a7c7701e7b48a03a1e8268c2e4ab657914b71e41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.11013839642206828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201210_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201210_D_GLOBAL.out deleted file mode 100644 index 78644d82ddc1c39fd07bc4c57b5d76edabcae743..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.12283163865407308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201210_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201210_H_GLOBAL.out deleted file mode 100644 index aa3bd77c4c84fe839e5de7afc54e07d19190c620..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.11527779102325439 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201210_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201210_M_GLOBAL.out deleted file mode 100644 index e417cf6aa2ff9a3e60c30e148253013e8aee215d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.14063610633214316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201211_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201211_D_GLOBAL.out deleted file mode 100644 index 60e8a8d46ac1dbcba12d059fe0411b9090e70db7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.11999699274698893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201211_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201211_H_GLOBAL.out deleted file mode 100644 index bddda449655c77d682d23974344c00e62b6571bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.11663409074147542 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201211_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201211_M_GLOBAL.out deleted file mode 100644 index d44c492ff5a26d2889dcf796ef864eee3fc4041a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.12015957434972127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201212_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201212_D_GLOBAL.out deleted file mode 100644 index 2415efc19fd0e3a866b5bb7fb7c4ce4a3aa1e889..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.15504060983657836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201212_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201212_H_GLOBAL.out deleted file mode 100644 index e86580e8a0b0b94b278ef90dfbcea3bb5c6fb356..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.11150502761205038 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201212_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201212_M_GLOBAL.out deleted file mode 100644 index 93d2ac8230d4bdab1519989f3620490c5f91b5d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.12978719075520834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201301_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201301_D_GLOBAL.out deleted file mode 100644 index a4e0ae66a274c4d7580f14d6cfb8963909845ced..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.1261857549349467 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201301_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201301_H_GLOBAL.out deleted file mode 100644 index 1ea5059f627b75e98eb5bcd7e689cd4fb92c2172..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.12463892698287964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201301_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201301_M_GLOBAL.out deleted file mode 100644 index 8c4175033a965cd57259b4c5cb7b02ac7bb7f33e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.12949711084365845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201302_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201302_D_GLOBAL.out deleted file mode 100644 index 618eb96eec6bb9aa16944e90fb45363258dc7644..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.11507355372111003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201302_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201302_H_GLOBAL.out deleted file mode 100644 index b4881db14be230f99f078aa8013b3784dc3f1c13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.1283582091331482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201302_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201302_M_GLOBAL.out deleted file mode 100644 index 60e7200052b3f906e0ef5e85dd5b9b6c7b6e87be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.11394940614700318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201303_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201303_D_GLOBAL.out deleted file mode 100644 index 117db102748fe854b04f53aa01dfa6b0f4689299..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.13108112812042236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201303_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201303_H_GLOBAL.out deleted file mode 100644 index 2c9619d1518b0d23e5f94cb0b331ca4d3baea770..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.09368513822555542 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201303_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201303_M_GLOBAL.out deleted file mode 100644 index 3adc75f493eb80e5b2e54b5dbc0c5d982b0b8ce3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.11687525113423665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201304_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201304_D_GLOBAL.out deleted file mode 100644 index 71b5d8a1ce9c9b9c77402f07d4c1d7a973dd94e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.09718339840571086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201304_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201304_H_GLOBAL.out deleted file mode 100644 index 9a24e57727e09926017042ba556d3b1eb53872f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.09528883298238118 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201304_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201304_M_GLOBAL.out deleted file mode 100644 index 40246834af7db4b788fbb257de89077e2ff5d0e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.1147000789642334 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201305_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201305_D_GLOBAL.out deleted file mode 100644 index 1b5e34a0805d673de655b0797bc059d091198fce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.11895488500595093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201305_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201305_H_GLOBAL.out deleted file mode 100644 index 49942c38d0681f86b86c95d5b09f37c1db6293e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.12138094902038574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201305_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201305_M_GLOBAL.out deleted file mode 100644 index 2351231b4ca1376eafd89b1b167898c6e89a9a3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.11050643920898437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201306_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201306_D_GLOBAL.out deleted file mode 100644 index b9e24a2d191e78cc01dd454a3c6b04293f66708e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.11531559228897095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201306_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201306_H_GLOBAL.out deleted file mode 100644 index f5c2c7433e73bb0867573210cf369e9f7830b4ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.10022244453430176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201306_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201306_M_GLOBAL.out deleted file mode 100644 index 859fb9177b3685bd00c818420c08edcf1332edcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.11513579686482747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201307_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201307_D_GLOBAL.out deleted file mode 100644 index 3190f07554115d624f0bd8e24c5b9700b8f8b5c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.11856507460276286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201307_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201307_H_GLOBAL.out deleted file mode 100644 index 7bce796417b1e7a4dd2ee2ee708f8726df775e0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.11452470620473226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201307_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201307_M_GLOBAL.out deleted file mode 100644 index 4563ccde15fce3564ed825326de1506c95fd38ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.1075761357943217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201308_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201308_D_GLOBAL.out deleted file mode 100644 index 3d735bdb9ad2f8ed281be323eb67f470ee524bb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.10057406028111776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201308_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201308_H_GLOBAL.out deleted file mode 100644 index 8e3e287283287e0f8c997e13d316c4b4f80d77f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.10080770651499431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201308_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201308_M_GLOBAL.out deleted file mode 100644 index 3b443d1deca530b4dc4d44430b98eda0f4500c37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.11291192372639974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201309_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201309_D_GLOBAL.out deleted file mode 100644 index 61a739864baca49128e4c97785de9f7915f85bd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.11644810438156128 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201309_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201309_H_GLOBAL.out deleted file mode 100644 index 02e26124472c84e50dc32e58cab44c960aac8b74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.1216539184252421 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201309_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201309_M_GLOBAL.out deleted file mode 100644 index eb5ab1337f7e49c3a72bf1baef9449805a6a1c13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.11970043182373047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201310_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201310_D_GLOBAL.out deleted file mode 100644 index a88b34cbfa4f1b0b9ef470f5e9f3cca1a33c368c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.11800138552983602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201310_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201310_H_GLOBAL.out deleted file mode 100644 index 12a2bcab80a02a88ace390f56737ae689e9ab349..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.10663234392801921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201310_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201310_M_GLOBAL.out deleted file mode 100644 index c28faa009874107afded2e28710de44d0a33de45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.1113491972287496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201311_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201311_D_GLOBAL.out deleted file mode 100644 index 8cbe8e5eac7fbad2b7175f7e5de3e5a52357add6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.12443429231643677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201311_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201311_H_GLOBAL.out deleted file mode 100644 index d5e6536a4fed22e0d9fb4b9e2b4410161d0d1423..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.11846269369125366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201311_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201311_M_GLOBAL.out deleted file mode 100644 index 5e4ef7e5b3bff44c926a1ffe9d5b8347bddb312a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.11404253641764323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201312_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201312_D_GLOBAL.out deleted file mode 100644 index 480cc875ae311c3e8b7b4e2f2c0c267abb3fd8fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.12887334028879802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201312_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201312_H_GLOBAL.out deleted file mode 100644 index be27d1388b3cac50696507a69a61a6d91e258338..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.13009459575017293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201312_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201312_M_GLOBAL.out deleted file mode 100644 index 08096be559858c04a43f824bf137030b7f160dde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.1149143656094869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201401_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201401_D_GLOBAL.out deleted file mode 100644 index 65996324a13fdef4b62c1c10401229b12777be6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.10771481196085612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201401_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201401_H_GLOBAL.out deleted file mode 100644 index 80ccfe817e83714fbd76014a4addb28316a4d44d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.12452720801035563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201401_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201401_M_GLOBAL.out deleted file mode 100644 index 763d15ca735ab67558ec30314e21f99a8ee7f5c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.11028474966684977 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201402_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201402_D_GLOBAL.out deleted file mode 100644 index 7fe53f674c32d054db0edd73b5f013305af866c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.1266547679901123 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201402_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201402_H_GLOBAL.out deleted file mode 100644 index 2bbe404040bdc1fe20a45c07f77b086deb0fbc41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.12780710458755493 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201402_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201402_M_GLOBAL.out deleted file mode 100644 index 438e0943572b0f505e2b5f442807610ce3a24555..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.12608333826065063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201403_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201403_D_GLOBAL.out deleted file mode 100644 index e7c3a0875a53ad4a8b95118c289e45356775b2c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.11083606878916423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201403_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201403_H_GLOBAL.out deleted file mode 100644 index 151cab9520a7fe7d9f099a79c1fb396addbd67e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.11849769751230875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201403_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201403_M_GLOBAL.out deleted file mode 100644 index 8dd691d37ab52227e92eb11b21dc83d46f968235..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.12136343320210775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201404_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201404_D_GLOBAL.out deleted file mode 100644 index a4b80763321ef0d97f2355f3691bdec6746dffad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.11842077573140462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201404_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201404_H_GLOBAL.out deleted file mode 100644 index 94c33321241c7b143b3d290c8cf70bcc22fdcd84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.1230239748954773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201404_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201404_M_GLOBAL.out deleted file mode 100644 index bbc0313130438257df9aa27b30dbee40ee22f438..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.1356582204500834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201405_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201405_D_GLOBAL.out deleted file mode 100644 index 7feae28979dec94f6c71d6a6c62bfc66c80a6c2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.12255709966023763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201405_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201405_H_GLOBAL.out deleted file mode 100644 index dde1187860bb3f971b88239f3221ae4782836484..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.11851666371027629 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201405_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201405_M_GLOBAL.out deleted file mode 100644 index 1b9d3d59a52f3e3f14eafab60bd9a20884d8008f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.12608360052108764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201406_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201406_D_GLOBAL.out deleted file mode 100644 index 5138eb216cc9231c94e88223239e697c0d587c76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.12149554093678792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201406_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201406_H_GLOBAL.out deleted file mode 100644 index 52af99f935d1cf0f89cfaf802ea971d86496b94a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.12028045256932576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201406_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201406_M_GLOBAL.out deleted file mode 100644 index 3522cb075b2c540b742508f7376c83f6c56a57f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.12222824494043986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201407_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201407_D_GLOBAL.out deleted file mode 100644 index 95b196799d2c331c9c53d0ce024a52d2d8a8f368..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.13440420230229697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201407_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201407_H_GLOBAL.out deleted file mode 100644 index 457765c7c0bbcc373f0880f0433635274b16e0d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.12032084067662557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201407_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201407_M_GLOBAL.out deleted file mode 100644 index 8a95afb0a349c9cb9aab955a172882b9c94e168c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.1165886918703715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201408_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201408_D_GLOBAL.out deleted file mode 100644 index a3e1b51470359181f8332bc899544002d2c6f624..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.11876457929611206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201408_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201408_H_GLOBAL.out deleted file mode 100644 index a552ac6094e6351c2285edf117211d7107b95ac7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.13742429812749227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201408_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201408_M_GLOBAL.out deleted file mode 100644 index dc38367c5044a2d42e4f37d2a9979fcdfaadee50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.11841751337051391 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201409_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201409_D_GLOBAL.out deleted file mode 100644 index 373ef1f0ff1705ac02d6cd6c10107a85713b46b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.1443085233370463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201409_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201409_H_GLOBAL.out deleted file mode 100644 index 0c3da67b2ea543b5117985dd424cf2ae0981e922..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.14544392426808675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201409_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201409_M_GLOBAL.out deleted file mode 100644 index 6c9aa8647f33696b69e97fd3edaab89b4dfd1414..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.12321763833363851 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201410_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201410_D_GLOBAL.out deleted file mode 100644 index 812f0a8fc3dc71148a986b6995f3359af33f157e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.12759257157643636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201410_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201410_H_GLOBAL.out deleted file mode 100644 index 2a7907d8edd598ffb56685350f5cd2797c251767..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.13287792205810547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201410_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201410_M_GLOBAL.out deleted file mode 100644 index 8d808148ee728eebd1f028b22d3a278711cf540c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.13097169796625774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201411_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201411_D_GLOBAL.out deleted file mode 100644 index 48e861bb2fb2568ee7862e4a1fd7696ca16cb10e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.14222434759140015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201411_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201411_H_GLOBAL.out deleted file mode 100644 index 30500f9ded3bcae8bebf281d5cb5c91ec5f6cc08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.12630028327306111 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201411_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201411_M_GLOBAL.out deleted file mode 100644 index 03dd891a44dc860f1d9f68cad1a78e334dcc7f75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.1123218814531962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201412_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201412_D_GLOBAL.out deleted file mode 100644 index 6f9656813938540eeebda0882ad6a8aaa6413614..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.13500471115112306 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201412_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201412_H_GLOBAL.out deleted file mode 100644 index fda071f649422161deea1c2ada2a3b92cf73be3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.14471124013264974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201412_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201412_M_GLOBAL.out deleted file mode 100644 index cbc3a990575005bf0cd44bb964edd856d78bcf89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.136276912689209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201501_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201501_D_GLOBAL.out deleted file mode 100644 index 41d7a7b70f52505c9bc8171233068b3d91da5ab0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.14031160672505696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201501_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201501_H_GLOBAL.out deleted file mode 100644 index c04a97646270d13c78851474689f10955bf9ad58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.14427629311879475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201501_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201501_M_GLOBAL.out deleted file mode 100644 index 7fcc7a4b7cd6d75c5fdc1addbaef1205bbdb1a1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.13035389979680378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201502_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201502_D_GLOBAL.out deleted file mode 100644 index fda1eb2b20dc6bcf2dd94e11cd76e2331501fa9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.15117000738779704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201502_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201502_H_GLOBAL.out deleted file mode 100644 index 74f5561003e1d85ce55b75ee2e7bf5e69e4e4ee0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.12824705441792805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201502_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201502_M_GLOBAL.out deleted file mode 100644 index e2d916e84835fd546aa9e71929ae2524ca19b890..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.143668266137441 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201503_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201503_D_GLOBAL.out deleted file mode 100644 index 22e28de79c82e37282f6e98393349073e308cba3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.13604960838953653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201503_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201503_H_GLOBAL.out deleted file mode 100644 index 1a3b56f5d34cfc01dc59aabb5315cd461a67526f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.14034322102864583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201503_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201503_M_GLOBAL.out deleted file mode 100644 index b9155f2e5146398c9c2dc053db400d6698cfc8f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.13732662598292034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201504_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201504_D_GLOBAL.out deleted file mode 100644 index 5394b172561db7e936f1f78d86653ad8ba6bd612..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.13211416403452556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201504_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201504_H_GLOBAL.out deleted file mode 100644 index 0cba044d2a09206d6befc5e507b289250b562b2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.11942140261332194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201504_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201504_M_GLOBAL.out deleted file mode 100644 index 757e246349fbd9bddf905f7027128d115637b974..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.15463080406188964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201505_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201505_D_GLOBAL.out deleted file mode 100644 index 8a47623daa3cf929c900f8e2e675128f88f44a54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.14294496774673462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201505_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201505_H_GLOBAL.out deleted file mode 100644 index 23ddbf13ad31a5a0cf29d42be94348e64a0e90b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.11202748616536458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201505_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201505_M_GLOBAL.out deleted file mode 100644 index 9a79d82222eb7295dc60c9618fecdfc54ee906ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.13094605207443238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201506_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201506_D_GLOBAL.out deleted file mode 100644 index 388080c36632ddee3bbe98de50ed4479145800f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.13608498175938924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201506_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201506_H_GLOBAL.out deleted file mode 100644 index 484735db174e9bb40f5c5657a3abf6f4dda4d0a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.1320452849070231 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201506_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201506_M_GLOBAL.out deleted file mode 100644 index 6df7976fd74f9dd35e101852f92719c780af301f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.1326296329498291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201507_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201507_D_GLOBAL.out deleted file mode 100644 index a673aece47f01326183b5985f7fb2789d9174f87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.1434836228688558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201507_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201507_H_GLOBAL.out deleted file mode 100644 index 0719d8c4ab601657381ac507c7fbb9c48fe7afe5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.14005929231643677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201507_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201507_M_GLOBAL.out deleted file mode 100644 index c4c4db377631e0f19424150bd4d7d74e32a7afc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.14153410196304322 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201508_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201508_D_GLOBAL.out deleted file mode 100644 index 908ea27cae9617834ee7239ba229ec046b815448..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.14140092134475707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201508_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201508_H_GLOBAL.out deleted file mode 100644 index dffec524285b3153425042217095c44e0f0519ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.13066000143686932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201508_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201508_M_GLOBAL.out deleted file mode 100644 index e57228a0e723d9776d176be03b976e6a63d3e69a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.16000605821609498 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201509_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201509_D_GLOBAL.out deleted file mode 100644 index 2b7fba8a1783f18ff905b176359d4ea37dd7045e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.14615687131881713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201509_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201509_H_GLOBAL.out deleted file mode 100644 index 6e6f6c435e558084ba13908c37f1819b1af8e9fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.14260961214701334 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201509_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201509_M_GLOBAL.out deleted file mode 100644 index 53a8623940053a1a77b12169a8c1eab54526ff7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.12988137006759642 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201510_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201510_D_GLOBAL.out deleted file mode 100644 index c906c6f1732b0fa45490921e2d512f3c3628d425..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.13938464721043906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201510_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201510_H_GLOBAL.out deleted file mode 100644 index af2bd2f7caaf71329d40641e726aa76adefe9cbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.14901969830195108 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201510_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201510_M_GLOBAL.out deleted file mode 100644 index 3f1bda4b7407d932f2a23bda4a6abebf94353db0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.12994905710220336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201511_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201511_D_GLOBAL.out deleted file mode 100644 index c98231bd606928a56c4b6eef3372fec8f8948617..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.1411242127418518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201511_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201511_H_GLOBAL.out deleted file mode 100644 index f5da343946bfb2388b82e26dc97070875c66bb6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.14419334332148234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201511_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201511_M_GLOBAL.out deleted file mode 100644 index 7577292f5b58fb1f0746bc32d3c15570cc637b43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.12822997967402142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201512_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201512_D_GLOBAL.out deleted file mode 100644 index d0d00c5c5bf4a265834c69d09491791992417760..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.1446275552113851 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201512_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201512_H_GLOBAL.out deleted file mode 100644 index 359e4f6512236606c0f95a23be61a6277d8c861d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.11714011430740356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201512_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201512_M_GLOBAL.out deleted file mode 100644 index 49ec4f6a21d050a1e652f38d873661c3f1b49a4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.13057141701380412 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201601_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201601_D_GLOBAL.out deleted file mode 100644 index a9a60ee986c89b2cd5dc20a616be55e0eb31dc69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.13210150798161824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201601_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201601_H_GLOBAL.out deleted file mode 100644 index e8a2a5e6e2d1e428a018e0892f39024593a483fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.14116012652715046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201601_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201601_M_GLOBAL.out deleted file mode 100644 index 3ed98679890a6c1ee62d47b8236a666451abbe40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.13180982669194538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201602_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201602_D_GLOBAL.out deleted file mode 100644 index 976e4f17513814e2d089411a56bfa9d1eb318132..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.14285244544347128 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201602_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201602_H_GLOBAL.out deleted file mode 100644 index cffdfd82052ef3d240ef311ef47dd4f877dfabed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.14026274681091308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201602_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201602_M_GLOBAL.out deleted file mode 100644 index 4ef882d5c5d23ea550361296b3cec25af2e262c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.1409603794415792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201603_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201603_D_GLOBAL.out deleted file mode 100644 index e82e5b133eb59cfdf3b9f0396f5324534f0dc0f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.15432283878326417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201603_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201603_H_GLOBAL.out deleted file mode 100644 index 51cdb0a7bca0314b640be572dc753344120a73ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.12032315731048585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201603_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201603_M_GLOBAL.out deleted file mode 100644 index 8ffe614fb5c2dbe9ad0f317fc440eccae4376b7f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.13182002305984497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201604_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201604_D_GLOBAL.out deleted file mode 100644 index 283c1988653f69e8f394380c525f9aa76297e24a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.1338426351547241 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201604_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201604_H_GLOBAL.out deleted file mode 100644 index 468738c5b3fc452dd995ecc73276d6aa6092ce30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.1319231907526652 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201604_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201604_M_GLOBAL.out deleted file mode 100644 index 7d861ff1b2d66de1a34d38cbced0a591994137ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.1343415856361389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201605_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201605_D_GLOBAL.out deleted file mode 100644 index ddda83608cb4f6e5215f693da455f21e9b0df66b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.15259026686350505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201605_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201605_H_GLOBAL.out deleted file mode 100644 index 87e53ec192418ad24f19f6bcfd75da2e41ed2ae8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.13201273679733277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201605_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201605_M_GLOBAL.out deleted file mode 100644 index 6cb2dbb2fc5f82ddd2d558dfd6616a4c420f331f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.1396903872489929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201606_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201606_D_GLOBAL.out deleted file mode 100644 index 930307c926cda4e7c7405cfa976a3d39287fb695..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.1405494491259257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201606_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201606_H_GLOBAL.out deleted file mode 100644 index 62827979f32ae5fd415bbeb1187b2df79f64ad95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.1259293556213379 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201606_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201606_M_GLOBAL.out deleted file mode 100644 index f9b1a0299164a98986cd6925a84443b3fca191f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.12975913286209106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201607_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201607_D_GLOBAL.out deleted file mode 100644 index 973520a254af239c613cd4af9ad633f0f90b29b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.12502535184224448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201607_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201607_H_GLOBAL.out deleted file mode 100644 index f67683d8507a56c2a20d7965a2256fefbd81d467..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.13310400247573853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201607_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201607_M_GLOBAL.out deleted file mode 100644 index 097a9048d0e828e3f1380b6410a2671b27080915..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.13452256520589193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201608_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201608_D_GLOBAL.out deleted file mode 100644 index 974f37976177123be009af46e3bab27b24cef2b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.14171096881230671 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201608_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201608_H_GLOBAL.out deleted file mode 100644 index 13270120d6ac18d96dc05550b77188f4cd953fee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.13947510719299316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201608_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201608_M_GLOBAL.out deleted file mode 100644 index 26e506d6ce01b81fcf0472e9ded33afb8bdc4195..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.15544462203979492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201609_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201609_D_GLOBAL.out deleted file mode 100644 index 738f2b397b119b62e84b2c52b53f57d90d46b0ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.13081305027008056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201609_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201609_H_GLOBAL.out deleted file mode 100644 index 25baa2ae15ff75959600350296f8851895a4dbaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.1366171439488729 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201609_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201609_M_GLOBAL.out deleted file mode 100644 index 844c6fa9a3b521b292b32e6d8522c8682233138c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.13834194342295328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201610_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201610_D_GLOBAL.out deleted file mode 100644 index 9427d7df7d2c05c1c40013fd1ad696b5aac02f6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.13445392449696858 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201610_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201610_H_GLOBAL.out deleted file mode 100644 index 9f0f639c58f5d841536b0e57d2c15b38076cf73a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.12948182026545207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201610_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201610_M_GLOBAL.out deleted file mode 100644 index a2cf264e267bc8965688305547d5b8fbe32ce1ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.13285903135935465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201611_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201611_D_GLOBAL.out deleted file mode 100644 index fa7cc56c76f34d73e21684dd145ca2ed5eb92512..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.1380655606587728 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201611_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201611_H_GLOBAL.out deleted file mode 100644 index 063219c70790ed80ea1a03c83a9f2d20e8e59ef3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.1241673986117045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201611_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201611_M_GLOBAL.out deleted file mode 100644 index f2e8a3d9dd685c0a0d526f3772ba39f9b2330d43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.12413140932718912 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201612_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201612_D_GLOBAL.out deleted file mode 100644 index 2dde0e0d1f14e8d80705d7913271f9b3d412188c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.12514979044596355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201612_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201612_H_GLOBAL.out deleted file mode 100644 index 87afad3c593867bf494d4230b7336431f449f191..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.1345822850863139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201612_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201612_M_GLOBAL.out deleted file mode 100644 index 5671e482c68a8d7bc79d7a926caa6d87907dd16c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.12498815457026163 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201701_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201701_D_GLOBAL.out deleted file mode 100644 index f7b607441d02913bf724ad6365b46a0b54d55508..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.1273245930671692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201701_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201701_H_GLOBAL.out deleted file mode 100644 index 5f934e99793a28bf052a9b78baccb1498edca7e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.14089778661727906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201701_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201701_M_GLOBAL.out deleted file mode 100644 index 55c33018f4f8d704daf40e0af3c48aa38e57f2d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.12457419236501058 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201702_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201702_D_GLOBAL.out deleted file mode 100644 index 58ee8013ab541983514709c6c3d3c157ea7e9e93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.12545003096262614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201702_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201702_H_GLOBAL.out deleted file mode 100644 index 4020c05ed423928d6692a233389ec3d35e9c593e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.1259743531545003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201702_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201702_M_GLOBAL.out deleted file mode 100644 index 2c62a826616b976fd382b24cb015d8c4519dcd9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.13359158436457316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201703_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201703_D_GLOBAL.out deleted file mode 100644 index 1a268a96a644e66a84ca5a1d0d3bf1aeedd72c40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.12010852893193563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201703_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201703_H_GLOBAL.out deleted file mode 100644 index 3d7f8a91547f83bd3fc6a405d8b0b29651a11578..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.13308688402175903 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201703_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201703_M_GLOBAL.out deleted file mode 100644 index 48f0b0272bd4c3a9404666013dbf85a0e51baa33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.11902294158935547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201704_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201704_D_GLOBAL.out deleted file mode 100644 index a4111c1c808443c2fccdf8ef1a52e57096a2c0f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.12674051523208618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201704_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201704_H_GLOBAL.out deleted file mode 100644 index 7adf817f588730562c13ef8b7fc23e46d9d88649..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.12790416876475016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201704_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201704_M_GLOBAL.out deleted file mode 100644 index 7dd456f01234aa492bb82fcb8f079ce8f7897e6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.13008445501327515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201705_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201705_D_GLOBAL.out deleted file mode 100644 index 60c9d79d93d684fef05cad078fbc2551243aaffb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.13282835086186726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201705_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201705_H_GLOBAL.out deleted file mode 100644 index 5536fb0665d4ad18f539e2e7bde6e678d297956c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.1305690288543701 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201705_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201705_M_GLOBAL.out deleted file mode 100644 index a3078eaca5301a007687d06b041ceeec51617737..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.11761333147684733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201706_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201706_D_GLOBAL.out deleted file mode 100644 index 4d8c9ede5b3082c27bc3b2f7a930f99720677d13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.1259377121925354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201706_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201706_H_GLOBAL.out deleted file mode 100644 index 0c3e697e5fd1d08bb3d796624a884df7fe636db3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.12793080806732177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201706_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201706_M_GLOBAL.out deleted file mode 100644 index d97d06dc74061939a4a5df66a052de527b94c291..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.13573052485783896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201707_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201707_D_GLOBAL.out deleted file mode 100644 index 086b14ada81d5c846e750fc24314546bfda4c8db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.14090903202692667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201707_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201707_H_GLOBAL.out deleted file mode 100644 index 3ff4c126675f305dc2abea49f85e5638be64c0a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.12464109261830648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201707_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201707_M_GLOBAL.out deleted file mode 100644 index fe9cefb47e6462e6db799d3bc36eee2711fb9ffa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.13903069893519085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201708_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201708_D_GLOBAL.out deleted file mode 100644 index c9bf0349b3f149875dc173b3f967ae566f2529dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.15044135649998983 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201708_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201708_H_GLOBAL.out deleted file mode 100644 index 65ac7eb0590898097c939e1ba1906a661378fb72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.12041230201721191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201708_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201708_M_GLOBAL.out deleted file mode 100644 index f09e43870bc5d89f8008cda660607d1bd21f35c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.1553383191426595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201709_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201709_D_GLOBAL.out deleted file mode 100644 index 9676e9065aabf1e60093d94c8033a32fcb2f243b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.13158372243245442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201709_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201709_H_GLOBAL.out deleted file mode 100644 index 629cf2fa91dd1b30345186c5a029ea6202a65e9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.12644098997116088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201709_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201709_M_GLOBAL.out deleted file mode 100644 index 8b066854d2c3b27192a0cbf8f485a48fc33de85f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.13379934231440227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201710_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201710_D_GLOBAL.out deleted file mode 100644 index 270d4e588af5295b5b0630a2468ca11510323b43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.1325840950012207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201710_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201710_H_GLOBAL.out deleted file mode 100644 index 09c32d008e41ba06bb18cddb449466858f68b130..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.1381222446759542 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201710_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201710_M_GLOBAL.out deleted file mode 100644 index fd8f127dfa5c2495775f406bf2d930b155ddd090..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.14931596517562867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201711_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201711_D_GLOBAL.out deleted file mode 100644 index 69fea654d039e68d56d976509ef38dc89ca2b199..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.18583877086639405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201711_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201711_H_GLOBAL.out deleted file mode 100644 index 7da63c91ef335ac9cd21f0d1733fc9fcf6ef7c19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.17271756728490192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201711_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201711_M_GLOBAL.out deleted file mode 100644 index 61758a9a7e2e7a0b359e7d2edc28b593be9b4c86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.15053563515345256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201712_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201712_D_GLOBAL.out deleted file mode 100644 index 4c97b10d0146c465223474c58ca56bdd548f1820..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.1486838181813558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201712_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201712_H_GLOBAL.out deleted file mode 100644 index 284ff871bc84e4bc81a7f386a27484923f9069c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.1352467934290568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201712_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201712_M_GLOBAL.out deleted file mode 100644 index 31f2209a651c2a91ff5cab0ac906eda003ee349e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.140735920270284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201801_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201801_D_GLOBAL.out deleted file mode 100644 index 1a3f7b666a2fe2fad8ff5e7c46d376956be39c6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.14500654141108196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201801_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201801_H_GLOBAL.out deleted file mode 100644 index ba4bfd353a49d412b956cf35a131a52b8b9f0078..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.1306728959083557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201801_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201801_M_GLOBAL.out deleted file mode 100644 index 893b529d0ee8a93b14c900a48ae82eb894a7c5d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.15683230956395466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201802_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201802_D_GLOBAL.out deleted file mode 100644 index 2f921b4961ea73ee68234882555c561476329409..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.1434425751368205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201802_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201802_H_GLOBAL.out deleted file mode 100644 index 90334438a873b4cf43ba0a32ccd700f42d75c903..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.15237839619318644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201802_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201802_M_GLOBAL.out deleted file mode 100644 index 5164c55117b98156305b4c749ea1da54b05f6395..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.1477794051170349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201803_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201803_D_GLOBAL.out deleted file mode 100644 index 9d2075e456069edd91d027f4c3a94e545d009659..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.13728758494059246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201803_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201803_H_GLOBAL.out deleted file mode 100644 index 3eeb1d10ba69e25f076226b57360b9015a722730..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.1250483751296997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201803_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201803_M_GLOBAL.out deleted file mode 100644 index 3703e534584c47c6e926beda5c5bb3d3fba1fabd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.14021111726760865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201804_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201804_D_GLOBAL.out deleted file mode 100644 index b9f3bded1616f505f3b1286ce6aa40a1c0417307..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.1462187965710958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201804_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201804_H_GLOBAL.out deleted file mode 100644 index 02902a53f541a721b2e7b6c2e15e719b9c5060cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.1375197966893514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201804_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201804_M_GLOBAL.out deleted file mode 100644 index d7076999fc408a7c1dffad5fad4b796075681192..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.13702536424001058 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201805_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201805_D_GLOBAL.out deleted file mode 100644 index d9a52b639e132a81c8e66c3a259fad6b2cc93a48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.15222315788269042 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201805_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201805_H_GLOBAL.out deleted file mode 100644 index 80ceed78695cb2976338c316c09e4dbdd947b6ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.13940067291259767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201805_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201805_M_GLOBAL.out deleted file mode 100644 index 5019022f2a17499f90e307651e4af1f84b8efcee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.16676570177078248 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201806_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201806_D_GLOBAL.out deleted file mode 100644 index 9300f3aaf6e6cf4c78256629b3835706420bc520..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.14103713432947795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201806_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201806_H_GLOBAL.out deleted file mode 100644 index 1f5b48a90d85b4f68dcbffcadf0b9fdd58346d1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.12922235329945883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201806_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201806_M_GLOBAL.out deleted file mode 100644 index f9427fc78234cc9b235f2d582dc386c3c19e58d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.14492922623952229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201807_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201807_D_GLOBAL.out deleted file mode 100644 index 5042921a4152bccf204069ca7d0dd5f447551c59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.13947807947794597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201807_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201807_H_GLOBAL.out deleted file mode 100644 index f4686829135cbaaeed85a1d9f3ab583721a86b65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.14754936297734578 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201807_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201807_M_GLOBAL.out deleted file mode 100644 index 8a1425cbfcfbe845a72a37a9fa03988bc962bd27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.1412996768951416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201808_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201808_D_GLOBAL.out deleted file mode 100644 index cb367f5b8f74f1fd98b5f5f9b5c9e7ce87c134f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.15008407831192017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201808_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201808_H_GLOBAL.out deleted file mode 100644 index a8ed892a9aa9c933dfb0defc45716e43dd3699f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.15205029646555582 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201808_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201808_M_GLOBAL.out deleted file mode 100644 index b32a896e787bd59d5c885e7311559147d88a0264..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.14758455753326416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201809_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201809_D_GLOBAL.out deleted file mode 100644 index beb2f6fd4edf22d960f8b346c265c8c160799a08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.15599868297576905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201809_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201809_H_GLOBAL.out deleted file mode 100644 index df2b51c697d3e470e84c685e6372686a39907a73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.14628568490346272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201809_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201809_M_GLOBAL.out deleted file mode 100644 index 0a624fa3ab1ca568831b0ecd20dad68bcea3fb86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.13422303597132365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201810_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201810_D_GLOBAL.out deleted file mode 100644 index 98aa82544fff8314050ac44aefad8cd90286b150..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.14710322221120198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201810_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201810_H_GLOBAL.out deleted file mode 100644 index fd1f3d62ab46ea9bdbba1e81936b74c951e3e433..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.13794679641723634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201810_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201810_M_GLOBAL.out deleted file mode 100644 index 290e45bf7bda05ac9921312b0d0c0116e8aa2022..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.14017439285914104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201811_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201811_D_GLOBAL.out deleted file mode 100644 index 4e58bb31b102ee41af32c944582741471061ab12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.1346940795580546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201811_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201811_H_GLOBAL.out deleted file mode 100644 index 0b3d2198b324f1ca1682534eaeb741b86f354c3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.14407715400060017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201811_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201811_M_GLOBAL.out deleted file mode 100644 index ce7fb087d4dd928945d6e16585c746fa3c840562..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.1513402263323466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201812_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201812_D_GLOBAL.out deleted file mode 100644 index 468c51a1bed6f4e9a65cf4f468ab1aeb8f50e356..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.12494914531707764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201812_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201812_H_GLOBAL.out deleted file mode 100644 index ba48d1e1e3d0ac89ec1ed525f104ddef43733244..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.1350227912267049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201812_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201812_M_GLOBAL.out deleted file mode 100644 index 8f606366c030f9d43cac4e0a2ca36b490b66d4c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.1441969354947408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index 758fb18a30dce9652bda0079ee1ab34f42b7e05e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.16321197350819905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index 2324434f79e96687df1f516f3e4e31d9da86cd78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.16670556465784708 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index 2034ee8ec886e35034761d6e6f7b23f929bfd8c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.14925702412923178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index 563dfe74183dfd98c4c2db68094906be1ab11bd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.18409219185511272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index fdb6e8ef7f14f99195b19a7608678c70e360f2e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.19389691352844238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index 273ed8adfb15412f0130cba71873e211121c7e57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.19806174834569296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index 9039e5a85cf502ae17df707f5fa6e10c2130c431..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.1768320600191752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index d003e270c2946fd472ea4b5a60f6bb7e3914f64c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.19479305346806844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index 136918c699054215c6c29239129d0f942c083f80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.18179707129796346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index bbac6c9ede7361b0f5d1909b0a312130f6c10d8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.17474215825398762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index 0da3c1b5288189dd1366cce26787ade960da7efd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.1765021244684855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index 8bbd20ba86ae6c7052083c846af6b617bf293e38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.172597603003184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index b7286404c9dd0c9ebd8631c15f5d85273a0ac8e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.1959187110265096 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index 5641de16e6412767b13abd5410c9f68d6fa87041..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.18505086104075114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index 560a396d63f37809744878a17f4ecc900f6c9cb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.19774445295333862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index b4ca89ece20bf74b9dac1f7eb10a975fc231b0ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.20532833337783812 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index 09a702e9ce08b7c96267545d299d8e629d5be726..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.17054406801859537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index 2c1f4d259ebd1e678e670070e4b7e9c942256b75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.18601239522298177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202006_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202006_D_GLOBAL.out deleted file mode 100644 index 03cfb1da3776f893161a9544d061eaaaf97ad4eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.17175872325897218 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202006_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202006_H_GLOBAL.out deleted file mode 100644 index cf0c9bf8b96a19b0606aae5acfb5d317e4c0c3b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.15395681460698446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202006_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202006_M_GLOBAL.out deleted file mode 100644 index b834ba896cbd3275f277e0d8857c06d0001cdf1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.1617934823036194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202007_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202007_D_GLOBAL.out deleted file mode 100644 index 5f59fed883049fe626184be496c2e86d7dec9b30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.17539049784342448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202007_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202007_H_GLOBAL.out deleted file mode 100644 index 5adca4e6f0864cfa470a675267fce7ee2a9c5fec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.155459992090861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202007_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202007_M_GLOBAL.out deleted file mode 100644 index 479f7b3627e11fe2bb0521ef8b97acc5af1f006d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.16250302791595458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202008_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202008_D_GLOBAL.out deleted file mode 100644 index 1981eed9b6046189d7bf1c03236c8c3e6f86e17d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.15744526386260987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202008_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202008_H_GLOBAL.out deleted file mode 100644 index 85905703bd375c461363d38570b7bcdb3935c3bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.1603985826174418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202008_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202008_M_GLOBAL.out deleted file mode 100644 index 6b6db4489b162279ba359f718498dd153fd6a5b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.15662195682525634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202009_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202009_D_GLOBAL.out deleted file mode 100644 index 613ea18693fae6f49d11fb6caec6ba2bb03965a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.15519940853118896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202009_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202009_H_GLOBAL.out deleted file mode 100644 index 2bf723f5b013bbe265460501c7bf5db0a86555c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.17927191654841104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202009_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202009_M_GLOBAL.out deleted file mode 100644 index d54c9206daf78020043d831a1c78cf084860e281..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.1591539184252421 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202010_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202010_D_GLOBAL.out deleted file mode 100644 index 9d56ff49be0fbb93323df341dd375f5ca8cc34d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.16616973876953126 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202010_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202010_H_GLOBAL.out deleted file mode 100644 index 6b0334b1a6e9b49255a0a68b953a1d0934971581..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.14817468325297037 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202010_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202010_M_GLOBAL.out deleted file mode 100644 index 4c6400775e9c566c9376939b974f92b2c82168bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.15416033267974855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202011_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202011_D_GLOBAL.out deleted file mode 100644 index ff838197170464c2d36f623c1812dac193af7d1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.15816406011581421 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202011_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202011_H_GLOBAL.out deleted file mode 100644 index 1933c0c88ed523bdb908e759e4e67d812fa9e054..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.17585362593332926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202011_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202011_M_GLOBAL.out deleted file mode 100644 index b855551c00deeafc07d5b0cbbe99bda1febb156c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.15487929185231528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202012_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202012_D_GLOBAL.out deleted file mode 100644 index 774db4a42398b9a9fb5a8ebb793e57300532319f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.1585469126701355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202012_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202012_H_GLOBAL.out deleted file mode 100644 index 151d96685109647f3769a2646f6e3dffeda2ed9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.16666417519251506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202012_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202012_M_GLOBAL.out deleted file mode 100644 index c358e2435ef275e74b92a923e203c8904259439d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.17185632387797037 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202101_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202101_D_GLOBAL.out deleted file mode 100644 index 95199f59d22763e075bdc8b7b4e248fdcce34fba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.04704653024673462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202101_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202101_H_GLOBAL.out deleted file mode 100644 index 2fd13dd16584fa754dd61a08bc0b6acc765f397e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.036856631437937416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202101_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202101_M_GLOBAL.out deleted file mode 100644 index 8e0a43a54afc6299d0d12f248fb9531131a2cd52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.04089150826136271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202102_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202102_D_GLOBAL.out deleted file mode 100644 index 4679c0f0b666a890f632b652501c39a52b4cdfa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.04953451156616211 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202102_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202102_H_GLOBAL.out deleted file mode 100644 index 8de9de6db76e2fd22504d170bd2c1d5aeaf736c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.04316858053207397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202102_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202102_M_GLOBAL.out deleted file mode 100644 index 5d30e74cf47056c07b2cc8f36a24d0a9836891d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.038639648755391436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202103_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202103_D_GLOBAL.out deleted file mode 100644 index 12121bf0c552e6e31364f88451d36a52dcb73c85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.044664653142293294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202103_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202103_H_GLOBAL.out deleted file mode 100644 index b66c3986221e5fcdf6a2e7b3241de629a421eb6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.052896674474080405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202103_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202103_M_GLOBAL.out deleted file mode 100644 index d6fb2d9c9f68102f11399a61e0b08089d8235bb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.031850898265838624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202104_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202104_D_GLOBAL.out deleted file mode 100644 index 8a0cd92640b82910246b3f08655b5cf13a8bdd11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.02837730646133423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202104_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202104_H_GLOBAL.out deleted file mode 100644 index 1d5fa31468a4df83634539fc9e911ae39afe2017..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.03549286127090454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202104_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202104_M_GLOBAL.out deleted file mode 100644 index 082d38f1465ccbb491f5ad8af2cbe6a89b7a0b63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.03153761227925619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202105_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202105_D_GLOBAL.out deleted file mode 100644 index 2a7157b5e75977b600df57c01b420f6b5464edf9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.03290450970331828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202105_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202105_H_GLOBAL.out deleted file mode 100644 index f198efc41f9100c1ff48e186b85e5d15dbe48af7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.030186724662780762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202105_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202105_M_GLOBAL.out deleted file mode 100644 index 3efcb198dceac5f65ea33fad87faa4d0de6402da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.030166061719258626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202106_D_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202106_D_GLOBAL.out deleted file mode 100644 index 368ae412488923b1e5cadc8c3132e6465b8e0781..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.0377770185470581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202106_H_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202106_H_GLOBAL.out deleted file mode 100644 index 5a25266514c3f6cc9202079efaeeaa55b68a8603..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.03532427946726481 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM10/T2/0_202106_M_GLOBAL.out b/run/stage_logs/NAPMD_PM10/T2/0_202106_M_GLOBAL.out deleted file mode 100644 index f18f1f72f9eee7a9888d126b8a07296714e1cb97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM10/T2/0_202106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.04721165895462036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_1996.out b/run/stage_logs/NAPMD_PM2.5/S1/0_1996.out deleted file mode 100644 index 632fa678bb237d8bd85fc9322f23ed04b7144918..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_1996.out +++ /dev/null @@ -1,10 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1996/PM2.5_1996.csv -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.045745360851287845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_1997.out b/run/stage_logs/NAPMD_PM2.5/S1/0_1997.out deleted file mode 100644 index 2a1cc1d60a4840a4cad30c14494cd0198b6295b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_1997.out +++ /dev/null @@ -1,12 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1997/PM2.5_1997.csv -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -0.08509081204732259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_1998.out b/run/stage_logs/NAPMD_PM2.5/S1/0_1998.out deleted file mode 100644 index 36e59bcebd1bfc22f6c3f34716959cb0319b326c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_1998.out +++ /dev/null @@ -1,15 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1998/PM2.5_1998.csv -13 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.11361919641494751 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_1999.out b/run/stage_logs/NAPMD_PM2.5/S1/0_1999.out deleted file mode 100644 index 890aee1fee2e52c6f016e64d249f6bcfab5dcd9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_1999.out +++ /dev/null @@ -1,15 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1999/PM2.5_1999.csv -13 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.11794097423553467 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2000.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2000.out deleted file mode 100644 index 93440127c83a174308752e0c38e8c2ec610f35c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2000.out +++ /dev/null @@ -1,20 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2000/PM2.5_2000.csv -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -331 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2000/PM2.5_2000.csv -13 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.11952663660049438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2001.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2001.out deleted file mode 100644 index 0e8057c0f832c0628edde5b9ae3c36e0234a8f61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2001.out +++ /dev/null @@ -1,20 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2001/PM2.5_2001.csv -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -331 -- PARSING RAW DATA -339 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2001/PM2.5_2001.csv -13 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.1209474245707194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2002.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2002.out deleted file mode 100644 index e6341f97ab63a04abf6f0b5017735a7b2512a22e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2002.out +++ /dev/null @@ -1,22 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2002/PM2.5_2002.csv -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -331 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2002/PM2.5_2002.csv -13 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -28 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.12354493141174316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2003.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2003.out deleted file mode 100644 index f4868c892c17b24bceb1d9f95a5176401a0cd27c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2003.out +++ /dev/null @@ -1,23 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2003/PM2.5_2003.csv -325 -- PARSING RAW DATA -327 -- PARSING RAW DATA -331 -- PARSING RAW DATA -335 -- PARSING RAW DATA -339 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2003/PM2.5_2003.csv -13 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -360 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.12504716714223227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2004.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2004.out deleted file mode 100644 index d5f786c4161d682febbae70f6e4e141e3137a063..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2004.out +++ /dev/null @@ -1,20 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2004/PM2.5_2004.csv -3 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2004/PM2.5_2004.csv -13 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.11540329058965047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2005.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2005.out deleted file mode 100644 index 4e3d0e788728d7f8a532509ac28d983eac346d3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2005.out +++ /dev/null @@ -1,17 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2005/PM2.5_2005.csv -3 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2005/PM2.5_2005.csv -13 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -354 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.10829797188440958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2006.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2006.out deleted file mode 100644 index f4a8ffcadf08f6b07dd55638739ca19712267cbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2006.out +++ /dev/null @@ -1,21 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2006/PM2.5_2006.csv -3 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2006/PM2.5_2006.csv -13 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.12337329387664794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2007.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2007.out deleted file mode 100644 index 8b991cad7176f0e19e41763bddb5b03e256405eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2007.out +++ /dev/null @@ -1,20 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2007/PM2.5_2007.csv -3 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2007/PM2.5_2007.csv -13 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.12281258106231689 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2008.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2008.out deleted file mode 100644 index 68ee102346893b6d35ff77138bb2176422233a8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2008.out +++ /dev/null @@ -1,20 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2008/PM2.5_2008.csv -3 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2008/PM2.5_2008.csv -13 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.12321000893910726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2009.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2009.out deleted file mode 100644 index ce353cb5e88dd1a2be4f021d4bca47280a09b87c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2009.out +++ /dev/null @@ -1,20 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2009/PM2.5_2009.csv -3 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2009/PM2.5_2009.csv -13 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -45 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -0.1223758339881897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2010.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2010.out deleted file mode 100644 index 8233ed36c159111b6cd62a0ec11f85acb643ddd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2010.out +++ /dev/null @@ -1,50 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2010/PM2.5_2010.csv -289 -- PARSING RAW DATA -293 -- PARSING RAW DATA -294 -- PARSING RAW DATA -3 -- PARSING RAW DATA -304 -- PARSING RAW DATA -305 -- PARSING RAW DATA -306 -- PARSING RAW DATA -307 -- PARSING RAW DATA -308 -- PARSING RAW DATA -309 -- PARSING RAW DATA -310 -- PARSING RAW DATA -315 -- PARSING RAW DATA -318 -- PARSING RAW DATA -320 -- PARSING RAW DATA -321 -- PARSING RAW DATA -322 -- PARSING RAW DATA -325 -- PARSING RAW DATA -328 -- PARSING RAW DATA -331 -- PARSING RAW DATA -346 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2010/PM2.5_2010.csv -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -45 -- PARSING RAW DATA -48 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -76 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -0.20075039466222128 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2011.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2011.out deleted file mode 100644 index efd2abd461ee9091a96ce353035e429edee15c29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2011.out +++ /dev/null @@ -1,55 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2011/PM2.5_2011.csv -289 -- PARSING RAW DATA -291 -- PARSING RAW DATA -292 -- PARSING RAW DATA -293 -- PARSING RAW DATA -294 -- PARSING RAW DATA -3 -- PARSING RAW DATA -304 -- PARSING RAW DATA -305 -- PARSING RAW DATA -306 -- PARSING RAW DATA -307 -- PARSING RAW DATA -308 -- PARSING RAW DATA -309 -- PARSING RAW DATA -310 -- PARSING RAW DATA -315 -- PARSING RAW DATA -320 -- PARSING RAW DATA -321 -- PARSING RAW DATA -322 -- PARSING RAW DATA -325 -- PARSING RAW DATA -328 -- PARSING RAW DATA -331 -- PARSING RAW DATA -346 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2011/PM2.5_2011.csv -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -17 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -45 -- PARSING RAW DATA -48 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -76 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -94 -- PARSING RAW DATA -0.255666975180308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2012.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2012.out deleted file mode 100644 index d1e456628530274b1d76aa40a996d52600b0e43c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2012.out +++ /dev/null @@ -1,58 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2012/PM2.5_2012.csv -289 -- PARSING RAW DATA -291 -- PARSING RAW DATA -292 -- PARSING RAW DATA -293 -- PARSING RAW DATA -294 -- PARSING RAW DATA -3 -- PARSING RAW DATA -304 -- PARSING RAW DATA -305 -- PARSING RAW DATA -306 -- PARSING RAW DATA -307 -- PARSING RAW DATA -308 -- PARSING RAW DATA -309 -- PARSING RAW DATA -310 -- PARSING RAW DATA -311 -- PARSING RAW DATA -315 -- PARSING RAW DATA -316 -- PARSING RAW DATA -320 -- PARSING RAW DATA -321 -- PARSING RAW DATA -322 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2012/PM2.5_2012.csv -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -45 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -76 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -94 -- PARSING RAW DATA -0.2511347532272339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2013.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2013.out deleted file mode 100644 index d85625d6750cbad9941f4babe5fb33a1cca52465..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2013.out +++ /dev/null @@ -1,67 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2013/PM2.5_2013.csv -289 -- PARSING RAW DATA -290 -- PARSING RAW DATA -291 -- PARSING RAW DATA -292 -- PARSING RAW DATA -293 -- PARSING RAW DATA -294 -- PARSING RAW DATA -296 -- PARSING RAW DATA -298 -- PARSING RAW DATA -299 -- PARSING RAW DATA -3 -- PARSING RAW DATA -300 -- PARSING RAW DATA -301 -- PARSING RAW DATA -302 -- PARSING RAW DATA -303 -- PARSING RAW DATA -304 -- PARSING RAW DATA -305 -- PARSING RAW DATA -306 -- PARSING RAW DATA -307 -- PARSING RAW DATA -308 -- PARSING RAW DATA -309 -- PARSING RAW DATA -310 -- PARSING RAW DATA -311 -- PARSING RAW DATA -315 -- PARSING RAW DATA -316 -- PARSING RAW DATA -318 -- PARSING RAW DATA -319 -- PARSING RAW DATA -320 -- PARSING RAW DATA -321 -- PARSING RAW DATA -322 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2013/PM2.5_2013.csv -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -45 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -0.3026726762453715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2014.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2014.out deleted file mode 100644 index 8eab9f2af6a16461704d3c4ee00f18f0da4b62b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2014.out +++ /dev/null @@ -1,83 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2014/PM2.5_2014.csv -289 -- PARSING RAW DATA -290 -- PARSING RAW DATA -291 -- PARSING RAW DATA -292 -- PARSING RAW DATA -293 -- PARSING RAW DATA -294 -- PARSING RAW DATA -296 -- PARSING RAW DATA -298 -- PARSING RAW DATA -299 -- PARSING RAW DATA -3 -- PARSING RAW DATA -300 -- PARSING RAW DATA -301 -- PARSING RAW DATA -302 -- PARSING RAW DATA -303 -- PARSING RAW DATA -304 -- PARSING RAW DATA -305 -- PARSING RAW DATA -306 -- PARSING RAW DATA -307 -- PARSING RAW DATA -308 -- PARSING RAW DATA -309 -- PARSING RAW DATA -310 -- PARSING RAW DATA -311 -- PARSING RAW DATA -313 -- PARSING RAW DATA -315 -- PARSING RAW DATA -316 -- PARSING RAW DATA -318 -- PARSING RAW DATA -319 -- PARSING RAW DATA -320 -- PARSING RAW DATA -321 -- PARSING RAW DATA -322 -- PARSING RAW DATA -325 -- PARSING RAW DATA -331 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2014/PM2.5_2014.csv -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -274 -- PARSING RAW DATA -286 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -325 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -45 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -52 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -90 -- PARSING RAW DATA -95 -- PARSING RAW DATA -0.39669590393702187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2015.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2015.out deleted file mode 100644 index a813c66a3a28bd00712ca1ff12de5ac4e42d1a08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2015.out +++ /dev/null @@ -1,94 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2015/PM2.5_2015.csv -289 -- PARSING RAW DATA -290 -- PARSING RAW DATA -291 -- PARSING RAW DATA -292 -- PARSING RAW DATA -293 -- PARSING RAW DATA -294 -- PARSING RAW DATA -296 -- PARSING RAW DATA -299 -- PARSING RAW DATA -3 -- PARSING RAW DATA -300 -- PARSING RAW DATA -301 -- PARSING RAW DATA -302 -- PARSING RAW DATA -303 -- PARSING RAW DATA -304 -- PARSING RAW DATA -305 -- PARSING RAW DATA -306 -- PARSING RAW DATA -307 -- PARSING RAW DATA -308 -- PARSING RAW DATA -309 -- PARSING RAW DATA -310 -- PARSING RAW DATA -311 -- PARSING RAW DATA -313 -- PARSING RAW DATA -315 -- PARSING RAW DATA -316 -- PARSING RAW DATA -318 -- PARSING RAW DATA -319 -- PARSING RAW DATA -320 -- PARSING RAW DATA -321 -- PARSING RAW DATA -322 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2015/PM2.5_2015.csv -1 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -271 -- PARSING RAW DATA -274 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -286 -- PARSING RAW DATA -30 -- PARSING RAW DATA -325 -- PARSING RAW DATA -329 -- PARSING RAW DATA -331 -- PARSING RAW DATA -334 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -52 -- PARSING RAW DATA -53 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -90 -- PARSING RAW DATA -93 -- PARSING RAW DATA -95 -- PARSING RAW DATA -98 -- PARSING RAW DATA -0.4031432112058004 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2016.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2016.out deleted file mode 100644 index 7f718f6ca0eba3f8ec43ef4f2276a8270420c974..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2016.out +++ /dev/null @@ -1,106 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2016/PM2.5_2016.csv -289 -- PARSING RAW DATA -290 -- PARSING RAW DATA -291 -- PARSING RAW DATA -292 -- PARSING RAW DATA -293 -- PARSING RAW DATA -294 -- PARSING RAW DATA -296 -- PARSING RAW DATA -298 -- PARSING RAW DATA -299 -- PARSING RAW DATA -300 -- PARSING RAW DATA -301 -- PARSING RAW DATA -302 -- PARSING RAW DATA -303 -- PARSING RAW DATA -304 -- PARSING RAW DATA -305 -- PARSING RAW DATA -306 -- PARSING RAW DATA -307 -- PARSING RAW DATA -308 -- PARSING RAW DATA -309 -- PARSING RAW DATA -310 -- PARSING RAW DATA -311 -- PARSING RAW DATA -312 -- PARSING RAW DATA -313 -- PARSING RAW DATA -314 -- PARSING RAW DATA -315 -- PARSING RAW DATA -316 -- PARSING RAW DATA -317 -- PARSING RAW DATA -318 -- PARSING RAW DATA -319 -- PARSING RAW DATA -320 -- PARSING RAW DATA -321 -- PARSING RAW DATA -322 -- PARSING RAW DATA -323 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2016/PM2.5_2016.csv -1 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -26 -- PARSING RAW DATA -271 -- PARSING RAW DATA -273 -- PARSING RAW DATA -274 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -285 -- PARSING RAW DATA -30 -- PARSING RAW DATA -325 -- PARSING RAW DATA -329 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -334 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -43 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -53 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -85 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -90 -- PARSING RAW DATA -93 -- PARSING RAW DATA -95 -- PARSING RAW DATA -98 -- PARSING RAW DATA -0.5100939432779948 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2017.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2017.out deleted file mode 100644 index 24387b232c146e60ef768118b34039d272b22be5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2017.out +++ /dev/null @@ -1,145 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2017/PM2.5_2017.csv -289 -- PARSING RAW DATA -290 -- PARSING RAW DATA -291 -- PARSING RAW DATA -292 -- PARSING RAW DATA -293 -- PARSING RAW DATA -294 -- PARSING RAW DATA -296 -- PARSING RAW DATA -298 -- PARSING RAW DATA -299 -- PARSING RAW DATA -300 -- PARSING RAW DATA -301 -- PARSING RAW DATA -302 -- PARSING RAW DATA -303 -- PARSING RAW DATA -304 -- PARSING RAW DATA -305 -- PARSING RAW DATA -306 -- PARSING RAW DATA -307 -- PARSING RAW DATA -308 -- PARSING RAW DATA -309 -- PARSING RAW DATA -310 -- PARSING RAW DATA -311 -- PARSING RAW DATA -312 -- PARSING RAW DATA -313 -- PARSING RAW DATA -314 -- PARSING RAW DATA -315 -- PARSING RAW DATA -316 -- PARSING RAW DATA -317 -- PARSING RAW DATA -318 -- PARSING RAW DATA -319 -- PARSING RAW DATA -320 -- PARSING RAW DATA -321 -- PARSING RAW DATA -322 -- PARSING RAW DATA -323 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2017/PM2.5_2017.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -103 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -24 -- PARSING RAW DATA -26 -- PARSING RAW DATA -271 -- PARSING RAW DATA -273 -- PARSING RAW DATA -274 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -285 -- PARSING RAW DATA -288 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -329 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -334 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -341 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -39 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -454 -- PARSING RAW DATA -455 -- PARSING RAW DATA -456 -- PARSING RAW DATA -457 -- PARSING RAW DATA -458 -- PARSING RAW DATA -459 -- PARSING RAW DATA -46 -- PARSING RAW DATA -460 -- PARSING RAW DATA -461 -- PARSING RAW DATA -462 -- PARSING RAW DATA -463 -- PARSING RAW DATA -465 -- PARSING RAW DATA -466 -- PARSING RAW DATA -467 -- PARSING RAW DATA -468 -- PARSING RAW DATA -469 -- PARSING RAW DATA -471 -- PARSING RAW DATA -472 -- PARSING RAW DATA -473 -- PARSING RAW DATA -474 -- PARSING RAW DATA -475 -- PARSING RAW DATA -476 -- PARSING RAW DATA -477 -- PARSING RAW DATA -478 -- PARSING RAW DATA -479 -- PARSING RAW DATA -48 -- PARSING RAW DATA -480 -- PARSING RAW DATA -481 -- PARSING RAW DATA -482 -- PARSING RAW DATA -483 -- PARSING RAW DATA -484 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -529 -- PARSING RAW DATA -53 -- PARSING RAW DATA -531 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -85 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -98 -- PARSING RAW DATA -0.5614428877830505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2018.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2018.out deleted file mode 100644 index 4ffe91f7ac730e586d5d1c60393abda253987caa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2018.out +++ /dev/null @@ -1,124 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2018/PM2.5_2018.csv -289 -- PARSING RAW DATA -290 -- PARSING RAW DATA -291 -- PARSING RAW DATA -292 -- PARSING RAW DATA -293 -- PARSING RAW DATA -294 -- PARSING RAW DATA -295 -- PARSING RAW DATA -296 -- PARSING RAW DATA -297 -- PARSING RAW DATA -298 -- PARSING RAW DATA -299 -- PARSING RAW DATA -300 -- PARSING RAW DATA -301 -- PARSING RAW DATA -302 -- PARSING RAW DATA -303 -- PARSING RAW DATA -304 -- PARSING RAW DATA -305 -- PARSING RAW DATA -306 -- PARSING RAW DATA -307 -- PARSING RAW DATA -308 -- PARSING RAW DATA -309 -- PARSING RAW DATA -310 -- PARSING RAW DATA -311 -- PARSING RAW DATA -312 -- PARSING RAW DATA -313 -- PARSING RAW DATA -314 -- PARSING RAW DATA -315 -- PARSING RAW DATA -316 -- PARSING RAW DATA -317 -- PARSING RAW DATA -318 -- PARSING RAW DATA -319 -- PARSING RAW DATA -320 -- PARSING RAW DATA -321 -- PARSING RAW DATA -322 -- PARSING RAW DATA -323 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2018/PM2.5_2018.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -103 -- PARSING RAW DATA -107 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -24 -- PARSING RAW DATA -26 -- PARSING RAW DATA -271 -- PARSING RAW DATA -273 -- PARSING RAW DATA -274 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -288 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -329 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -334 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -341 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -356 -- PARSING RAW DATA -360 -- PARSING RAW DATA -37 -- PARSING RAW DATA -370 -- PARSING RAW DATA -371 -- PARSING RAW DATA -375 -- PARSING RAW DATA -39 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -457 -- PARSING RAW DATA -46 -- PARSING RAW DATA -462 -- PARSING RAW DATA -463 -- PARSING RAW DATA -465 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -529 -- PARSING RAW DATA -53 -- PARSING RAW DATA -531 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -73 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -98 -- PARSING RAW DATA -0.611575170358022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2019.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2019.out deleted file mode 100644 index 1d9afae9debd2ace9884e8052bebfdc2d862431c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2019.out +++ /dev/null @@ -1,38 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2019/PM2.5_2019.csv -289 -- PARSING RAW DATA -290 -- PARSING RAW DATA -291 -- PARSING RAW DATA -292 -- PARSING RAW DATA -293 -- PARSING RAW DATA -294 -- PARSING RAW DATA -295 -- PARSING RAW DATA -296 -- PARSING RAW DATA -297 -- PARSING RAW DATA -298 -- PARSING RAW DATA -299 -- PARSING RAW DATA -300 -- PARSING RAW DATA -301 -- PARSING RAW DATA -302 -- PARSING RAW DATA -303 -- PARSING RAW DATA -304 -- PARSING RAW DATA -305 -- PARSING RAW DATA -306 -- PARSING RAW DATA -307 -- PARSING RAW DATA -308 -- PARSING RAW DATA -309 -- PARSING RAW DATA -310 -- PARSING RAW DATA -311 -- PARSING RAW DATA -312 -- PARSING RAW DATA -313 -- PARSING RAW DATA -314 -- PARSING RAW DATA -315 -- PARSING RAW DATA -316 -- PARSING RAW DATA -317 -- PARSING RAW DATA -318 -- PARSING RAW DATA -319 -- PARSING RAW DATA -320 -- PARSING RAW DATA -321 -- PARSING RAW DATA -322 -- PARSING RAW DATA -323 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/PM2.5_2019.csv -0.40236664613087975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2020.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2020.out deleted file mode 100644 index 7d66cd2a8b01c0e9a24f584ca5a5b9f92fd181ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2020.out +++ /dev/null @@ -1,184 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/2020/PM2.5_2020.csv -289 -- PARSING RAW DATA -290 -- PARSING RAW DATA -291 -- PARSING RAW DATA -292 -- PARSING RAW DATA -293 -- PARSING RAW DATA -294 -- PARSING RAW DATA -295 -- PARSING RAW DATA -296 -- PARSING RAW DATA -297 -- PARSING RAW DATA -298 -- PARSING RAW DATA -299 -- PARSING RAW DATA -300 -- PARSING RAW DATA -301 -- PARSING RAW DATA -302 -- PARSING RAW DATA -303 -- PARSING RAW DATA -304 -- PARSING RAW DATA -305 -- PARSING RAW DATA -306 -- PARSING RAW DATA -307 -- PARSING RAW DATA -308 -- PARSING RAW DATA -309 -- PARSING RAW DATA -310 -- PARSING RAW DATA -311 -- PARSING RAW DATA -312 -- PARSING RAW DATA -313 -- PARSING RAW DATA -314 -- PARSING RAW DATA -315 -- PARSING RAW DATA -316 -- PARSING RAW DATA -317 -- PARSING RAW DATA -318 -- PARSING RAW DATA -319 -- PARSING RAW DATA -320 -- PARSING RAW DATA -321 -- PARSING RAW DATA -322 -- PARSING RAW DATA -323 -- PARSING RAW DATA -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/PM2.5_2020.csv -1 -- PARSING RAW DATA -10 -- PARSING RAW DATA -103 -- PARSING RAW DATA -108 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -117 -- PARSING RAW DATA -118 -- PARSING RAW DATA -119 -- PARSING RAW DATA -12 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -17 -- PARSING RAW DATA -18 -- PARSING RAW DATA -2 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -23 -- PARSING RAW DATA -24 -- PARSING RAW DATA -26 -- PARSING RAW DATA -271 -- PARSING RAW DATA -273 -- PARSING RAW DATA -274 -- PARSING RAW DATA -278 -- PARSING RAW DATA -279 -- PARSING RAW DATA -28 -- PARSING RAW DATA -288 -- PARSING RAW DATA -3 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -329 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -334 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -341 -- PARSING RAW DATA -35 -- PARSING RAW DATA -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -356 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -363 -- PARSING RAW DATA -364 -- PARSING RAW DATA -365 -- PARSING RAW DATA -366 -- PARSING RAW DATA -368 -- PARSING RAW DATA -369 -- PARSING RAW DATA -37 -- PARSING RAW DATA -370 -- PARSING RAW DATA -371 -- PARSING RAW DATA -372 -- PARSING RAW DATA -373 -- PARSING RAW DATA -374 -- PARSING RAW DATA -375 -- PARSING RAW DATA -39 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -41 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -453 -- PARSING RAW DATA -454 -- PARSING RAW DATA -455 -- PARSING RAW DATA -456 -- PARSING RAW DATA -457 -- PARSING RAW DATA -458 -- PARSING RAW DATA -459 -- PARSING RAW DATA -46 -- PARSING RAW DATA -460 -- PARSING RAW DATA -461 -- PARSING RAW DATA -462 -- PARSING RAW DATA -463 -- PARSING RAW DATA -464 -- PARSING RAW DATA -465 -- PARSING RAW DATA -466 -- PARSING RAW DATA -467 -- PARSING RAW DATA -468 -- PARSING RAW DATA -469 -- PARSING RAW DATA -471 -- PARSING RAW DATA -473 -- PARSING RAW DATA -474 -- PARSING RAW DATA -475 -- PARSING RAW DATA -476 -- PARSING RAW DATA -477 -- PARSING RAW DATA -478 -- PARSING RAW DATA -479 -- PARSING RAW DATA -48 -- PARSING RAW DATA -480 -- PARSING RAW DATA -481 -- PARSING RAW DATA -482 -- PARSING RAW DATA -483 -- PARSING RAW DATA -485 -- PARSING RAW DATA -486 -- PARSING RAW DATA -487 -- PARSING RAW DATA -488 -- PARSING RAW DATA -489 -- PARSING RAW DATA -490 -- PARSING RAW DATA -5 -- PARSING RAW DATA -51 -- PARSING RAW DATA -52 -- PARSING RAW DATA -53 -- PARSING RAW DATA -530 -- PARSING RAW DATA -531 -- PARSING RAW DATA -534 -- PARSING RAW DATA -540 -- PARSING RAW DATA -543 -- PARSING RAW DATA -544 -- PARSING RAW DATA -546 -- PARSING RAW DATA -547 -- PARSING RAW DATA -549 -- PARSING RAW DATA -550 -- PARSING RAW DATA -553 -- PARSING RAW DATA -554 -- PARSING RAW DATA -56 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -70 -- PARSING RAW DATA -73 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -81 -- PARSING RAW DATA -83 -- PARSING RAW DATA -84 -- PARSING RAW DATA -89 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -98 -- PARSING RAW DATA -99 -- PARSING RAW DATA -0.753134016195933 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S1/0_2021.out b/run/stage_logs/NAPMD_PM2.5/S1/0_2021.out deleted file mode 100644 index 16bc468ac3c3301e7f90b7b8d18144bd65741188..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S1/0_2021.out +++ /dev/null @@ -1,12 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2021/PM2.5_2021.csv -350 -- PARSING RAW DATA -351 -- PARSING RAW DATA -352 -- PARSING RAW DATA -354 -- PARSING RAW DATA -355 -- PARSING RAW DATA -356 -- PARSING RAW DATA -357 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -544 -- PARSING RAW DATA -0.060459975401560465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_103_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_103_BA.out deleted file mode 100644 index 39bd2f66a4c053d34be8fa8ae75c1b051934c4f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_103_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -103_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00515596071879069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_107_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_107_BA.out deleted file mode 100644 index 41128805ba70de025434897bb2c56422954c1fb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_107_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -107_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02564957141876221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_108_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_108_BA.out deleted file mode 100644 index d2639d7c272580dbc4e04e71d80577f07a37e14a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_108_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -108_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.030036600430806477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_109_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_109_BA.out deleted file mode 100644 index 033259fe6dd601cbce5ee6286edbe551076c6f72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_109_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -109_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02806926965713501 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_10_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_10_BA.out deleted file mode 100644 index 83f1030c3f9383bc9551fdb187008d1ed648ca00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_10_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -10_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.014307796955108643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_110_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_110_BA.out deleted file mode 100644 index eb913c011f44bb62a0370f85266cb0b2bd338360..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_110_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -110_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.027644789218902587 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_113_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_113_BA.out deleted file mode 100644 index 4a7fa2db75cae82d0912746c0d1fbc9cfb721e9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_113_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -113_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.024917276700337727 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_117_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_117_BA.out deleted file mode 100644 index 81730e28718525dce1457e935d63fae7313d5575..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_117_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -117_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002597522735595703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_118_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_118_BA.out deleted file mode 100644 index 65a7601b43fe4911b75e957cb320e010a4bb58bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_118_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -118_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016941614945729575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_119_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_119_BA.out deleted file mode 100644 index 443468eff59bf4d3f025fc3775517a1a40d9fc77..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_119_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -119_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02369644244511922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_11_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_11_BA.out deleted file mode 100644 index 64adb55867831baba6ccd5e00b3103495c0cfddd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_11_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -11_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01252354383468628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_120_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_120_BA.out deleted file mode 100644 index f82ccef8141e6a824557ce6257204badef705598..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_120_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -120_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01564203898111979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_12_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_12_BA.out deleted file mode 100644 index 29d4b1637a4c4dc9cd10e8e198e0dd9fa9acb9d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_12_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -12_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010579828421274822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_13_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_13_BA.out deleted file mode 100644 index 7646aadc10152cf69ba5f703871237b260fc751c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_13_BA.out +++ /dev/null @@ -1,30 +0,0 @@ -13_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1998-02-23 13:00:00 1998-12-31 12:00:00 1050397260 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1050397260_1050845040.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-11-13 01:00:00 1051370640 1051827900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1051370640_1051827900.npz'] -2001-02-20 16:00:00 2001-12-31 12:00:00 1051971360 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1051971360_1052423280.npz'] -2001-12-31 12:00:00 2002-12-22 08:00:00 1052423280 1052935680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1052423280_1052935680.npz'] -2003-01-02 01:00:00 2003-12-31 12:00:00 1052951100 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1052951100_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 11:00:00 1056105360 1056630900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1056105360_1056630900.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/13_BA_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1573517402013143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_15_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_15_BA.out deleted file mode 100644 index 77d4a57e9d392dbf5c7d86e46b6f1fb8da0995a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_15_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -15_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011581746737162273 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_17_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_17_BA.out deleted file mode 100644 index 8fcb2732411838e69e58e3987bc1c26a10562956..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_17_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -17_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.029007538159688314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_18_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_18_BA.out deleted file mode 100644 index e06ae396fde7d94ff8dddfc29b12317f574bb4b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_18_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -18_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.029859928290049235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_1_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_1_BA.out deleted file mode 100644 index afe219ecd52b8a625f7873ac0fa6e1bc8958eac8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_1_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -1_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011677038669586182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_20_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_20_BA.out deleted file mode 100644 index f28897e1f6d2696bf6350b80faa0ae8a3467fd69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_20_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -20_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011813847223917644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_21_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_21_BA.out deleted file mode 100644 index bba00e1729cc8b67324b405fba8f353bf0177c2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_21_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -21_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01459442377090454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_22_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_22_BA.out deleted file mode 100644 index c9ce6e273b149eab40f48c1e0ab337395eecea0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_22_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -22_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04612026214599609 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_23_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_23_BA.out deleted file mode 100644 index 65fc95e40346c78f03bf30172cbb15f3177a493a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_23_BA.out +++ /dev/null @@ -1,32 +0,0 @@ -23_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-07-30 13:00:00 1996-12-31 12:00:00 1049572140 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1049572140_1049793840.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-30 04:00:00 1050319440 1050843120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1050319440_1050843120.npz'] -1999-01-11 03:00:00 1999-12-31 12:00:00 1050860340 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1050860340_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/23_BA_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1888447880744934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_24_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_24_BA.out deleted file mode 100644 index feb579288672f9f673b5f6f15f3ba84a963fdc14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_24_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -24_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.014139143625895183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_26_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_26_BA.out deleted file mode 100644 index b350f14221635a3a5e864fd15d5c633a01fa6910..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_26_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -26_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01344312032063802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_271_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_271_BA.out deleted file mode 100644 index c5e54e0d4f644bced5fcc416d4667a6edddc6ffd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_271_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -271_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006441732247670491 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_273_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_273_BA.out deleted file mode 100644 index 0d31c91d7d2afd792dff3e94127284dc773b23a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_273_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -273_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01565094788869222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_274_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_274_BA.out deleted file mode 100644 index 14db874e0c46a261efd0705d01cf7b88f7cafaeb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_274_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -274_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0433083176612854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_278_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_278_BA.out deleted file mode 100644 index 61bd47d46f1a9ff0dfe99d6bcab1c87c772b7dd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_278_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -278_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013006901741027832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_279_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_279_BA.out deleted file mode 100644 index 4670fa564bd48f70a0698a9aa5f71814e0925df1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_279_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -279_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.015484841664632161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_285_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_285_BA.out deleted file mode 100644 index e7ad6a6ed741c12d59b1cf00f6a67e1cebb24058..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_285_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -285_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004958327611287435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_286_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_286_BA.out deleted file mode 100644 index 13dec4ce4081154d701130a20d61016b0df3885a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_286_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -286_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003335607051849365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_288_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_288_BA.out deleted file mode 100644 index 730eb8891778cae3b708b95a673b0594ecc5b7fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_288_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -288_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00909948746363322 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_289_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_289_BA.out deleted file mode 100644 index 694e6cf70c833735527c13ef0a00f859f24b0566..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_289_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -289_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011911046504974366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_28_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_28_BA.out deleted file mode 100644 index 65573473b121a2f9408a7148528665e813c79d69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_28_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -28_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016171983877817788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_290_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_290_BA.out deleted file mode 100644 index 6d9c330db5af40696806eceae015f987b366e0c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_290_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -290_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00836785634358724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_291_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_291_BA.out deleted file mode 100644 index ebdddefdf6db7436a1073034e07f8c85ac2104f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_291_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -291_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008024259408315023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_292_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_292_BA.out deleted file mode 100644 index 46a682535491b1375a07df383b44ae0cc4277090..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_292_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -292_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011674280961354573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_293_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_293_BA.out deleted file mode 100644 index e601bc9ee7b275b6c07433a094a9e074bab237a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_293_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -293_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013136486212412516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_294_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_294_BA.out deleted file mode 100644 index d9ec4b850dedeafca0cb9854af15a03bf2dea5e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_294_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -294_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011054615179697672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_295_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_295_BA.out deleted file mode 100644 index fb969fce581ca1c2986e1af6f22b641f10acafc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_295_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -295_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007785216967264811 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_296_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_296_BA.out deleted file mode 100644 index e01b16e4cea0c0f9fa9f94126a1bd1c9fc548e26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_296_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -296_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01167758305867513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_297_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_297_BA.out deleted file mode 100644 index e6bba0bf68fb0f528d4cd38407ad4cb2cc0122d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_297_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -297_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007922867933909098 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_298_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_298_BA.out deleted file mode 100644 index 4071da8a4b59adc09036a93cf3e90925df044f89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_298_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -298_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011678457260131836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_299_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_299_BA.out deleted file mode 100644 index fa87d99aab43a266e6fc4962c099ba988455f399..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_299_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -299_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011706419785817464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_2_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_2_BA.out deleted file mode 100644 index 263fa4d193e3f59ae176a48061b0bbb68eb69f0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_2_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -2_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.025948015848795573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_300_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_300_BA.out deleted file mode 100644 index 749d30eba86ac4478743ef58d22c152f4b30f1c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_300_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -300_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009532463550567628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_301_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_301_BA.out deleted file mode 100644 index 1d85a055e5d950a2722b379183ec7c0dc44d1fd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_301_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -301_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009356327851613363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_302_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_302_BA.out deleted file mode 100644 index 5491e8490c0c6a9fc6cabf88f5a39ead35615f89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_302_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -302_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013570821285247803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_303_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_303_BA.out deleted file mode 100644 index b3a26c8d74fb02fd068a2f1beddec9009ddacd52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_303_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -303_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0038156509399414062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_304_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_304_BA.out deleted file mode 100644 index f79e2cd9bd1ac347cfba2d99e9d71820062f15f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_304_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -304_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005667412281036377 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_305_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_305_BA.out deleted file mode 100644 index 2b5d12842bc2f19314c81889e9203ccc1a81b67c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_305_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -305_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0054220159848531084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_306_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_306_BA.out deleted file mode 100644 index 0f722802b5262a81ece93f4f98c64bac91209eb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_306_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -306_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006180783112843831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_307_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_307_BA.out deleted file mode 100644 index e1670afe640d475e78c09146069190f68dd52496..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_307_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -307_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004876915613810221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_308_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_308_BA.out deleted file mode 100644 index 163a3999c9866f6651174cdfabbdaf60545ac549..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_308_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -308_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005392642815907797 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_309_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_309_BA.out deleted file mode 100644 index ec7bec868b4856ebe06f72a0e9bbad6cc18bcab6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_309_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -309_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011635573705037434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_30_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_30_BA.out deleted file mode 100644 index 80e0e678d37bb141f58a7a1dff3236556b39b944..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_30_BA.out +++ /dev/null @@ -1,31 +0,0 @@ -30_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1997-12-30 13:00:00 1997-12-31 03:00:00 1050318060 1050318900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1050318060_1050318900.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1998-02-22 04:00:00 1998-12-31 12:00:00 1050395280 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1050395280_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-27 10:00:00 1057682160 1058203320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1057682160_1058203320.npz'] -2013-01-03 06:00:00 2013-12-31 12:00:00 1058213160 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1058213160_1058734800.npz'] -2013-12-31 13:00:00 2014-12-28 19:00:00 1058734860 1059256500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1058734860_1059256500.npz'] -2015-01-06 11:00:00 2015-12-31 12:00:00 1059268980 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1059268980_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1060838700_1061364300.npz'] -2020-01-02 06:00:00 2020-12-31 13:00:00 1061892360 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/30_BA_1061892360_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16826765934626262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_310_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_310_BA.out deleted file mode 100644 index bc1300edd00907bd005531f167803380fa8d784a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_310_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -310_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01212619145711263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_311_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_311_BA.out deleted file mode 100644 index 7495f9bfa1ac88b729a05143331a64a2fc842e4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_311_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -311_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011351676781972249 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_312_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_312_BA.out deleted file mode 100644 index d47d82be4f028abc26bb22f9294c7f8754996b78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_312_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -312_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002475591500600179 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_313_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_313_BA.out deleted file mode 100644 index 80c7923288a7cffb831fb73c65837a276969f92a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_313_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -313_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0035733977953592935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_314_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_314_BA.out deleted file mode 100644 index 03b54ec3e373cc54d9982569cf38a9e80ade8c46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_314_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -314_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0031315207481384276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_315_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_315_BA.out deleted file mode 100644 index 8b625e416d5957f0ddf1c9884b9fcb1bb36a919b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_315_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -315_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009392789999643962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_316_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_316_BA.out deleted file mode 100644 index b2f6563ac9308a2ad9e4da972ced9cf4befef20b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_316_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -316_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004893314838409424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_317_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_317_BA.out deleted file mode 100644 index 3c964a037a22d420b38a79b32a82fac09919f280..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_317_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -317_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00901577075322469 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_318_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_318_BA.out deleted file mode 100644 index 16939dae31dfd525d3849fe515d51ae4c1b8e973..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_318_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -318_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012313298384348552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_319_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_319_BA.out deleted file mode 100644 index 5bfdd6351578b0aa92d9748599b7a94a623a1f04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_319_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -319_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010628763834635417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_320_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_320_BA.out deleted file mode 100644 index 741e1f60f8fdaf9f51dd978aae1fb16355fae9d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_320_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -320_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0064468860626220705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_321_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_321_BA.out deleted file mode 100644 index 32038ccdeb7aeb7ce1781e1cabba95b4a1dd6c1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_321_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -321_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006682125727335612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_322_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_322_BA.out deleted file mode 100644 index e1cfc395303ce47006bd7edd02919aa7f4f5f99b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_322_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -322_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013847287495930989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_323_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_323_BA.out deleted file mode 100644 index 9088227a47e58db86ea5e304e2459322a7794b93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_323_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -323_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008846016724904378 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_325_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_325_BA.out deleted file mode 100644 index 1ceead56a2c283ec02ef3184a399c7dd26d408cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_325_BA.out +++ /dev/null @@ -1,462 +0,0 @@ -325_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1999-12-31 00:00:00 2000-12-31 00:00:00 1051369920 1051896960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1051369920_1051896960.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2000-12-31 00:00:00 2001-12-31 00:00:00 1051896960 1052422560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1051896960_1052422560.npz'] -2001-12-31 00:00:00 2002-12-31 00:00:00 1052422560 1052948160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1052422560_1052948160.npz'] -2002-12-31 00:00:00 2003-12-31 00:00:00 1052948160 1053473760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1052948160_1053473760.npz'] -2003-12-31 00:00:00 2004-12-31 00:00:00 1053473760 1054000800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1053473760_1054000800.npz'] -2004-12-31 00:00:00 2005-12-31 00:00:00 1054000800 1054526400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1054000800_1054526400.npz'] -2005-12-31 00:00:00 2006-12-31 00:00:00 1054526400 1055052000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1054526400_1055052000.npz'] -2006-12-31 00:00:00 2007-12-31 00:00:00 1055052000 1055577600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1055052000_1055577600.npz'] -2007-12-31 00:00:00 2008-12-31 00:00:00 1055577600 1056104640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1055577600_1056104640.npz'] -2008-12-31 00:00:00 2009-12-31 00:00:00 1056104640 1056630240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1056104640_1056630240.npz'] -2009-12-31 00:00:00 2010-12-31 00:00:00 1056630240 1057155840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1056630240_1057155840.npz'] -2010-12-31 00:00:00 2011-12-31 00:00:00 1057155840 1057681440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1057155840_1057681440.npz'] -2011-12-31 00:00:00 2012-12-31 00:00:00 1057681440 1058208480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1057681440_1058208480.npz'] -2012-12-31 00:00:00 2013-12-31 00:00:00 1058208480 1058734080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058208480_1058734080.npz'] -2014-01-02 00:00:00 2014-01-27 00:00:00 1058736960 1058772960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz'] -2014-01-28 02:00:00 2014-01-28 03:00:00 1058774520 1058774580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-01-29 00:00:00 2014-01-30 00:00:00 1058775840 1058777280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-01-30 00:00:00 2014-02-01 00:00:00 1058777280 1058780160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-02-01 00:00:00 2014-02-02 00:00:00 1058780160 1058781600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-02-02 00:00:00 2014-02-04 00:00:00 1058781600 1058784480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-02-04 00:00:00 2014-02-05 00:00:00 1058784480 1058785920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-02-05 00:00:00 2014-02-07 00:00:00 1058785920 1058788800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-02-07 00:00:00 2014-02-08 00:00:00 1058788800 1058790240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-02-08 00:00:00 2014-02-10 00:00:00 1058790240 1058793120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-02-10 00:00:00 2014-02-11 00:00:00 1058793120 1058794560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-02-11 00:00:00 2014-02-13 00:00:00 1058794560 1058797440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-02-13 00:00:00 2014-02-14 00:00:00 1058797440 1058798880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-02-14 00:00:00 2014-02-16 00:00:00 1058798880 1058801760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-02-16 00:00:00 2014-02-17 00:00:00 1058801760 1058803200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-02-17 00:00:00 2014-02-19 00:00:00 1058803200 1058806080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-02-19 00:00:00 2014-02-20 00:00:00 1058806080 1058807520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-02-20 00:00:00 2014-02-22 00:00:00 1058807520 1058810400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-02-22 00:00:00 2014-02-23 00:00:00 1058810400 1058811840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-02-23 00:00:00 2014-02-25 00:00:00 1058811840 1058814720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-02-25 00:00:00 2014-02-26 00:00:00 1058814720 1058816160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-02-26 00:00:00 2014-02-28 00:00:00 1058816160 1058819040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-02-28 00:00:00 2014-03-01 00:00:00 1058819040 1058820480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-03-01 00:00:00 2014-03-03 00:00:00 1058820480 1058823360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-03-03 00:00:00 2014-03-04 00:00:00 1058823360 1058824800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-03-04 00:00:00 2014-03-06 00:00:00 1058824800 1058827680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-03-06 00:00:00 2014-03-07 00:00:00 1058827680 1058829120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-03-07 00:00:00 2014-03-09 00:00:00 1058829120 1058832000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-03-09 00:00:00 2014-03-10 00:00:00 1058832000 1058833440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-03-10 00:00:00 2014-03-12 00:00:00 1058833440 1058836320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-03-12 00:00:00 2014-03-13 00:00:00 1058836320 1058837760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-03-13 00:00:00 2014-03-15 00:00:00 1058837760 1058840640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-03-15 00:00:00 2014-03-16 00:00:00 1058840640 1058842080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-03-16 00:00:00 2014-03-18 00:00:00 1058842080 1058844960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-03-18 00:00:00 2014-03-19 00:00:00 1058844960 1058846400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-03-19 00:00:00 2014-03-21 00:00:00 1058846400 1058849280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-03-21 00:00:00 2014-03-22 00:00:00 1058849280 1058850720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-03-22 00:00:00 2014-03-24 00:00:00 1058850720 1058853600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-03-24 00:00:00 2014-03-25 00:00:00 1058853600 1058855040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-03-25 00:00:00 2014-03-27 00:00:00 1058855040 1058857920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-03-27 00:00:00 2014-03-28 00:00:00 1058857920 1058859360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-03-28 00:00:00 2014-03-30 00:00:00 1058859360 1058862240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-03-30 00:00:00 2014-03-31 00:00:00 1058862240 1058863680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-03-31 00:00:00 2014-04-02 00:00:00 1058863680 1058866560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-04-02 00:00:00 2014-04-03 00:00:00 1058866560 1058868000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-04-03 00:00:00 2014-04-05 00:00:00 1058868000 1058870880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-04-05 00:00:00 2014-04-06 00:00:00 1058870880 1058872320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-04-06 00:00:00 2014-04-08 00:00:00 1058872320 1058875200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-04-08 00:00:00 2014-04-09 00:00:00 1058875200 1058876640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-04-09 00:00:00 2014-04-11 00:00:00 1058876640 1058879520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-04-11 00:00:00 2014-04-12 00:00:00 1058879520 1058880960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-04-12 00:00:00 2014-04-14 00:00:00 1058880960 1058883840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-04-14 00:00:00 2014-04-15 00:00:00 1058883840 1058885280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-04-15 00:00:00 2014-04-17 00:00:00 1058885280 1058888160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-04-17 00:00:00 2014-04-18 00:00:00 1058888160 1058889600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-04-18 00:00:00 2014-04-20 00:00:00 1058889600 1058892480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-04-20 00:00:00 2014-04-21 00:00:00 1058892480 1058893920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-04-21 00:00:00 2014-04-23 00:00:00 1058893920 1058896800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-04-23 00:00:00 2014-04-24 00:00:00 1058896800 1058898240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-04-24 00:00:00 2014-04-26 00:00:00 1058898240 1058901120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-04-26 00:00:00 2014-04-27 00:00:00 1058901120 1058902560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-04-27 00:00:00 2014-04-29 00:00:00 1058902560 1058905440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-04-29 00:00:00 2014-04-30 00:00:00 1058905440 1058906880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-04-30 00:00:00 2014-05-02 00:00:00 1058906880 1058909760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-05-02 00:00:00 2014-05-03 00:00:00 1058909760 1058911200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-05-03 00:00:00 2014-05-05 00:00:00 1058911200 1058914080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-05-05 00:00:00 2014-05-06 00:00:00 1058914080 1058915520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-05-06 00:00:00 2014-05-08 00:00:00 1058915520 1058918400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-05-08 00:00:00 2014-05-09 00:00:00 1058918400 1058919840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-05-09 00:00:00 2014-05-11 00:00:00 1058919840 1058922720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-05-11 00:00:00 2014-05-12 00:00:00 1058922720 1058924160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-05-12 00:00:00 2014-05-14 00:00:00 1058924160 1058927040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-05-14 00:00:00 2014-05-15 00:00:00 1058927040 1058928480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-05-15 00:00:00 2014-05-17 00:00:00 1058928480 1058931360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-05-17 00:00:00 2014-05-18 00:00:00 1058931360 1058932800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-05-18 00:00:00 2014-05-20 00:00:00 1058932800 1058935680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-05-20 00:00:00 2014-05-21 00:00:00 1058935680 1058937120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-05-21 00:00:00 2014-05-23 00:00:00 1058937120 1058940000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-05-23 00:00:00 2014-05-24 00:00:00 1058940000 1058941440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-05-24 00:00:00 2014-05-26 00:00:00 1058941440 1058944320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-05-26 00:00:00 2014-05-27 00:00:00 1058944320 1058945760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-05-27 00:00:00 2014-05-29 00:00:00 1058945760 1058948640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-05-29 00:00:00 2014-05-30 00:00:00 1058948640 1058950080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-05-30 00:00:00 2014-06-01 00:00:00 1058950080 1058952960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-06-01 00:00:00 2014-06-02 00:00:00 1058952960 1058954400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-06-02 00:00:00 2014-06-03 03:00:00 1058954400 1058956020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-06-04 00:00:00 2014-06-05 00:00:00 1058957280 1058958720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-06-05 00:00:00 2014-06-07 00:00:00 1058958720 1058961600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-06-07 00:00:00 2014-06-08 00:00:00 1058961600 1058963040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-06-08 00:00:00 2014-06-10 00:00:00 1058963040 1058965920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-06-10 00:00:00 2014-06-11 00:00:00 1058965920 1058967360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-06-11 00:00:00 2014-06-13 00:00:00 1058967360 1058970240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-06-13 00:00:00 2014-06-14 00:00:00 1058970240 1058971680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-06-14 00:00:00 2014-06-16 00:00:00 1058971680 1058974560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-06-16 00:00:00 2014-06-17 00:00:00 1058974560 1058976000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-06-17 00:00:00 2014-06-19 00:00:00 1058976000 1058978880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-06-19 00:00:00 2014-06-20 00:00:00 1058978880 1058980320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-06-20 00:00:00 2014-06-22 00:00:00 1058980320 1058983200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-06-22 00:00:00 2014-06-23 00:00:00 1058983200 1058984640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-06-23 00:00:00 2014-06-25 00:00:00 1058984640 1058987520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-06-25 00:00:00 2014-06-26 00:00:00 1058987520 1058988960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-06-26 00:00:00 2014-06-28 00:00:00 1058988960 1058991840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-06-28 00:00:00 2014-06-29 00:00:00 1058991840 1058993280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-06-29 00:00:00 2014-07-01 00:00:00 1058993280 1058996160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-07-01 00:00:00 2014-07-02 00:00:00 1058996160 1058997600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-07-02 00:00:00 2014-07-04 00:00:00 1058997600 1059000480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-07-04 00:00:00 2014-07-05 00:00:00 1059000480 1059001920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-07-05 00:00:00 2014-07-07 00:00:00 1059001920 1059004800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-07-07 00:00:00 2014-07-08 00:00:00 1059004800 1059006240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-07-08 00:00:00 2014-07-16 00:00:00 1059006240 1059017760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-07-16 00:00:00 2014-07-17 00:00:00 1059017760 1059019200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-07-17 00:00:00 2014-07-19 00:00:00 1059019200 1059022080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-07-19 00:00:00 2014-07-20 00:00:00 1059022080 1059023520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-07-20 00:00:00 2014-07-22 00:00:00 1059023520 1059026400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-07-22 00:00:00 2014-07-23 00:00:00 1059026400 1059027840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-07-23 00:00:00 2014-07-25 00:00:00 1059027840 1059030720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-07-25 00:00:00 2014-07-26 00:00:00 1059030720 1059032160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-07-26 00:00:00 2014-07-28 00:00:00 1059032160 1059035040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-07-28 00:00:00 2014-07-29 00:00:00 1059035040 1059036480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-07-29 00:00:00 2014-07-31 00:00:00 1059036480 1059039360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-07-31 00:00:00 2014-08-01 00:00:00 1059039360 1059040800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-08-01 00:00:00 2014-08-03 00:00:00 1059040800 1059043680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-08-03 00:00:00 2014-08-04 00:00:00 1059043680 1059045120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-08-04 00:00:00 2014-08-06 00:00:00 1059045120 1059048000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-08-06 00:00:00 2014-08-07 00:00:00 1059048000 1059049440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-08-07 00:00:00 2014-08-09 00:00:00 1059049440 1059052320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-08-09 00:00:00 2014-08-10 00:00:00 1059052320 1059053760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-08-10 00:00:00 2014-08-12 00:00:00 1059053760 1059056640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-08-12 00:00:00 2014-08-13 00:00:00 1059056640 1059058080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-08-13 00:00:00 2014-08-15 00:00:00 1059058080 1059060960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-08-15 00:00:00 2014-08-16 00:00:00 1059060960 1059062400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-08-16 00:00:00 2014-08-18 00:00:00 1059062400 1059065280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-08-18 00:00:00 2014-08-19 00:00:00 1059065280 1059066720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-08-19 00:00:00 2014-08-21 00:00:00 1059066720 1059069600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-08-21 00:00:00 2014-08-22 00:00:00 1059069600 1059071040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-08-22 00:00:00 2014-08-24 00:00:00 1059071040 1059073920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-08-24 00:00:00 2014-08-25 00:00:00 1059073920 1059075360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-08-25 00:00:00 2014-08-27 00:00:00 1059075360 1059078240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-08-27 00:00:00 2014-08-28 00:00:00 1059078240 1059079680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-08-28 00:00:00 2014-08-30 00:00:00 1059079680 1059082560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-08-30 00:00:00 2014-08-31 00:00:00 1059082560 1059084000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-08-31 00:00:00 2014-09-05 00:00:00 1059084000 1059091200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-09-05 00:00:00 2014-09-06 00:00:00 1059091200 1059092640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-09-06 00:00:00 2014-09-06 05:00:00 1059092640 1059092940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-09-08 00:00:00 2014-09-09 00:00:00 1059095520 1059096960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-09-09 00:00:00 2014-09-11 00:00:00 1059096960 1059099840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-09-11 00:00:00 2014-09-12 00:00:00 1059099840 1059101280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-09-12 00:00:00 2014-09-14 00:00:00 1059101280 1059104160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-09-14 00:00:00 2014-09-15 00:00:00 1059104160 1059105600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-09-15 00:00:00 2014-09-17 00:00:00 1059105600 1059108480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-09-17 00:00:00 2014-09-18 00:00:00 1059108480 1059109920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-09-18 00:00:00 2014-09-20 00:00:00 1059109920 1059112800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-09-20 00:00:00 2014-09-21 00:00:00 1059112800 1059114240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-09-21 00:00:00 2014-09-23 00:00:00 1059114240 1059117120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-09-23 00:00:00 2014-09-24 00:00:00 1059117120 1059118560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-09-24 00:00:00 2014-09-26 00:00:00 1059118560 1059121440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-09-26 00:00:00 2014-09-27 00:00:00 1059121440 1059122880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-09-27 00:00:00 2014-09-29 00:00:00 1059122880 1059125760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-09-29 00:00:00 2014-09-30 00:00:00 1059125760 1059127200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-09-30 00:00:00 2014-10-02 00:00:00 1059127200 1059130080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-10-02 00:00:00 2014-10-03 00:00:00 1059130080 1059131520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-10-03 00:00:00 2014-10-05 00:00:00 1059131520 1059134400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-10-05 00:00:00 2014-10-06 00:00:00 1059134400 1059135840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-10-06 00:00:00 2014-10-08 00:00:00 1059135840 1059138720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-10-08 00:00:00 2014-10-09 00:00:00 1059138720 1059140160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-10-09 00:00:00 2014-10-11 00:00:00 1059140160 1059143040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-10-11 00:00:00 2014-10-12 00:00:00 1059143040 1059144480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-10-12 00:00:00 2014-10-14 00:00:00 1059144480 1059147360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-10-14 00:00:00 2014-10-15 00:00:00 1059147360 1059148800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-10-15 00:00:00 2014-10-17 00:00:00 1059148800 1059151680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-10-17 00:00:00 2014-10-18 00:00:00 1059151680 1059153120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-10-18 00:00:00 2014-10-20 00:00:00 1059153120 1059156000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-10-20 00:00:00 2014-10-21 00:00:00 1059156000 1059157440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-10-21 00:00:00 2014-10-23 00:00:00 1059157440 1059160320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-10-23 00:00:00 2014-10-24 00:00:00 1059160320 1059161760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-10-24 00:00:00 2014-10-26 00:00:00 1059161760 1059164640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-10-26 00:00:00 2014-10-27 00:00:00 1059164640 1059166080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-10-27 00:00:00 2014-10-29 00:00:00 1059166080 1059168960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-10-29 00:00:00 2014-10-30 00:00:00 1059168960 1059170400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-10-30 00:00:00 2014-11-01 00:00:00 1059170400 1059173280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-11-01 00:00:00 2014-11-02 00:00:00 1059173280 1059174720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-11-02 00:00:00 2014-11-04 00:00:00 1059174720 1059177600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-11-04 00:00:00 2014-11-05 00:00:00 1059177600 1059179040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-11-05 00:00:00 2014-11-07 00:00:00 1059179040 1059181920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-11-07 00:00:00 2014-11-08 00:00:00 1059181920 1059183360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-11-08 00:00:00 2014-11-10 00:00:00 1059183360 1059186240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-11-10 00:00:00 2014-11-11 00:00:00 1059186240 1059187680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-11-11 00:00:00 2014-11-13 00:00:00 1059187680 1059190560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-11-13 00:00:00 2014-11-14 00:00:00 1059190560 1059192000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-11-14 00:00:00 2014-11-16 00:00:00 1059192000 1059194880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-11-16 00:00:00 2014-11-17 00:00:00 1059194880 1059196320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-11-17 00:00:00 2014-11-19 00:00:00 1059196320 1059199200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-11-19 00:00:00 2014-11-20 00:00:00 1059199200 1059200640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-11-20 00:00:00 2014-11-22 00:00:00 1059200640 1059203520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-11-22 00:00:00 2014-11-23 00:00:00 1059203520 1059204960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-11-23 00:00:00 2014-11-25 00:00:00 1059204960 1059207840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-11-25 00:00:00 2014-11-26 00:00:00 1059207840 1059209280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-11-26 00:00:00 2014-11-28 00:00:00 1059209280 1059212160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-11-28 00:00:00 2014-11-29 00:00:00 1059212160 1059213600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-11-29 00:00:00 2014-12-01 00:00:00 1059213600 1059216480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-12-01 00:00:00 2014-12-02 00:00:00 1059216480 1059217920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-12-02 00:00:00 2014-12-04 00:00:00 1059217920 1059220800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-12-04 00:00:00 2014-12-05 00:00:00 1059220800 1059222240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-12-05 00:00:00 2014-12-07 00:00:00 1059222240 1059225120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-12-07 00:00:00 2014-12-08 00:00:00 1059225120 1059226560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-12-08 00:00:00 2014-12-10 00:00:00 1059226560 1059229440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-12-10 00:00:00 2014-12-11 00:00:00 1059229440 1059230880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-12-11 00:00:00 2014-12-13 00:00:00 1059230880 1059233760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-12-13 00:00:00 2014-12-14 00:00:00 1059233760 1059235200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-12-14 00:00:00 2014-12-15 17:00:00 1059235200 1059237660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-12-16 00:00:00 2014-12-17 00:00:00 1059238080 1059239520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-12-17 00:00:00 2014-12-19 00:00:00 1059239520 1059242400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-12-19 00:00:00 2014-12-20 00:00:00 1059242400 1059243840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-12-20 00:00:00 2014-12-22 00:00:00 1059243840 1059246720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-12-22 00:00:00 2014-12-23 00:00:00 1059246720 1059248160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-12-23 00:00:00 2014-12-25 00:00:00 1059248160 1059251040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-12-25 00:00:00 2014-12-26 00:00:00 1059251040 1059252480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-12-26 00:00:00 2014-12-28 00:00:00 1059252480 1059255360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-12-28 00:00:00 2014-12-29 00:00:00 1059255360 1059256800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058736960_1059256800.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz -2014-12-29 00:00:00 2014-12-31 13:00:00 1059256800 1059260460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1058774520_1059260460.npz'] -2014-12-31 13:00:00 2015-12-31 13:00:00 1059260460 1059786060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1059260460_1059786060.npz'] -2015-12-31 13:00:00 2016-12-31 13:00:00 1059786060 1060313100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1059786060_1060313100.npz'] -2016-12-31 13:00:00 2017-12-31 13:00:00 1060313100 1060838700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1060313100_1060838700.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1060838700_1061364300.npz'] -2020-03-02 21:00:00 2020-12-31 13:00:00 1061979660 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/325_BA_1061979660_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.20430961847305298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_327_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_327_BA.out deleted file mode 100644 index f4eadeb59e2e8a7cc898c450be0343839c06d4b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_327_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -327_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0023999770482381185 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_328_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_328_BA.out deleted file mode 100644 index 22322ca8fb31382263a6589d38afec4ba5f528ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_328_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -328_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003311888376871745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_329_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_329_BA.out deleted file mode 100644 index 93ef6326f6605dfeb618ceffb1c8a3000d1e9003..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_329_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -329_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01195743481318156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_32_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_32_BA.out deleted file mode 100644 index 34adaebfd8dc69d51d775a3074370603844dc451..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_32_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -32_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011937105655670166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_331_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_331_BA.out deleted file mode 100644 index c5ee0fa93eb6d610f6430c37a5c3d5f34f23fe9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_331_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -331_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.019634652137756347 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_332_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_332_BA.out deleted file mode 100644 index 3b875a4101e64aeb983d92c2c5915633a87bb4cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_332_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -332_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00900203784306844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_334_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_334_BA.out deleted file mode 100644 index 25333debc8c37c8f15d19df044616b8694ad46af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_334_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -334_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.017485618591308594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_335_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_335_BA.out deleted file mode 100644 index 8dc0244283f1cad6b6bba1016c9007735b22a5cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_335_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -335_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009089569250742594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_336_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_336_BA.out deleted file mode 100644 index e3418fa205e3f6fe24b21cef51f039748f7ac78d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_336_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -336_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01115571657816569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_337_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_337_BA.out deleted file mode 100644 index 9e84fd6fe4c901b825a1534ed45d63405a93d11e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_337_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -337_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016164135932922364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_339_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_339_BA.out deleted file mode 100644 index f7373547d5cbf97455f8c0c8b506b05ff2f8d799..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_339_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -339_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0016998807589213053 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_340_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_340_BA.out deleted file mode 100644 index d44f4f1f386e0ab72974c80a87ac9593034c5c2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_340_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -340_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.023740128676096598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_341_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_341_BA.out deleted file mode 100644 index 2489ba02a22b20e729e257219cad2f19c5a72798..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_341_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -341_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006307375431060791 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_346_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_346_BA.out deleted file mode 100644 index 181ffbe3b92f5bdb255d3dcc2e4a5de50ac80efb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_346_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -346_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008261303106943766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_34_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_34_BA.out deleted file mode 100644 index 49d1dadc8a6aa27156dfddfce84d9ceb061850b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_34_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -34_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020997472604115806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_350_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_350_BA.out deleted file mode 100644 index e8bd125cb78783b85d04a9a940dc0325e887a2ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_350_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -350_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06186283032099406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_351_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_351_BA.out deleted file mode 100644 index 36f80f52012bf04c8a9f249fb550abfc2f8526fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_351_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -351_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.042368002732594806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_352_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_352_BA.out deleted file mode 100644 index 65a97aa1f644a188b1a33eb26de05fce55fe5148..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_352_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -352_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.07120289007822672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_354_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_354_BA.out deleted file mode 100644 index 6065970d7ab6b4de80bbd4870e399764465e4dd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_354_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -354_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06909676790237426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_355_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_355_BA.out deleted file mode 100644 index 25f6d193e3e6fd84245b8f77c2238d7b7d7a99d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_355_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -355_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003942322731018066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_356_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_356_BA.out deleted file mode 100644 index e826100381c13d408d874b7292e56f28983e6c54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_356_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -356_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011614084243774414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_357_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_357_BA.out deleted file mode 100644 index 38a683c44617a6a95282f8787b1e48f0b33d1377..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_357_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -357_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008966553211212158 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_358_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_358_BA.out deleted file mode 100644 index c152202270f427a1b71961847f149ad1df9f11cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_358_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -358_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03502861261367798 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_35_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_35_BA.out deleted file mode 100644 index ed38507b67470f003f6fed7a94b78a23bb115fe2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_35_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -35_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007585450013478597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_360_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_360_BA.out deleted file mode 100644 index ea2ca73573b8c0a1e245cee3ae5ca39dc0b4e089..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_360_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -360_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04357961018880208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_363_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_363_BA.out deleted file mode 100644 index 39e3f10bd3cbfa38c889b78a4080444196784aa8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_363_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -363_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008377643426259358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_364_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_364_BA.out deleted file mode 100644 index 044f24d3ca57aaf79143d6d95d499500c590f711..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_364_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -364_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0030998110771179197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_365_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_365_BA.out deleted file mode 100644 index c99da4e9e342bd1e246e46a55363b8eaa9e91c52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_365_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -365_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009665199120839437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_366_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_366_BA.out deleted file mode 100644 index b0d6de4aeaede7ef4780cfbb3d8b4f8aca0bc372..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_366_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -366_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002928582827250163 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_368_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_368_BA.out deleted file mode 100644 index e656f4d5b7e8690261a74b08a998e019c7c9868c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_368_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -368_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0060956478118896484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_369_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_369_BA.out deleted file mode 100644 index f49109537cb74825a356ff355f00cd2dfc327f49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_369_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -369_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0064178466796875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_370_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_370_BA.out deleted file mode 100644 index 462256b4f67b6396908721b5807e2f461355fe46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_370_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -370_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00480271577835083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_371_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_371_BA.out deleted file mode 100644 index de12e857817ba9201e1f6aff69438c0f37f16e87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_371_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -371_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0063347975413004555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_372_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_372_BA.out deleted file mode 100644 index 9144214afe0e3dc71b9e8c0e64aefba98321af04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_372_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -372_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002158192793528239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_373_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_373_BA.out deleted file mode 100644 index ab1c8348743c00087ad74480ec57cdf2176ad0fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_373_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -373_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010195048650105794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_374_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_374_BA.out deleted file mode 100644 index 4ab875fb3b309c3b415b96aab4b2929d06f2cc35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_374_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -374_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009263900915781657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_375_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_375_BA.out deleted file mode 100644 index 642d9d63054562ea357e90aedf463ce0e35224e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_375_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -375_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009361461798350016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_37_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_37_BA.out deleted file mode 100644 index 2b619ffaa12ae704d6950280ad4b6271992028a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_37_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -37_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03041807810465495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_39_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_39_BA.out deleted file mode 100644 index 5a2afb323816fafc404b4edca8bcc86e91093f0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_39_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -39_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0063931862513224285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_3_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_3_BA.out deleted file mode 100644 index e044070217cae3d6b529de22843afa673b80bfef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_3_BA.out +++ /dev/null @@ -1,99 +0,0 @@ -3_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2004-01-05 00:00:00 2004-12-31 00:00:00 1053480960 1054000800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1053480960_1054000800.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2004-12-31 00:00:00 2005-12-31 00:00:00 1054000800 1054526400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1054000800_1054526400.npz'] -2005-12-31 00:00:00 2006-12-31 00:00:00 1054526400 1055052000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1054526400_1055052000.npz'] -2006-12-31 00:00:00 2007-12-29 00:00:00 1055052000 1055574720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1055052000_1055574720.npz'] -2007-12-31 00:00:00 2008-08-09 00:00:00 1055577600 1055897280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1055577600_1055897280.npz'] -2009-02-23 00:00:00 2009-12-29 00:00:00 1056182400 1056627360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1056182400_1056627360.npz'] -2010-01-03 00:00:00 2010-12-31 00:00:00 1056634560 1057155840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1056634560_1057155840.npz'] -2010-12-31 00:00:00 2011-12-31 00:00:00 1057155840 1057681440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1057155840_1057681440.npz'] -2011-12-31 00:00:00 2012-12-31 00:00:00 1057681440 1058208480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1057681440_1058208480.npz'] -2012-12-31 00:00:00 2013-04-01 00:00:00 1058208480 1058339520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058208480_1058734080.npz'] -2013-04-01 00:00:00 2013-04-11 00:00:00 1058339520 1058353920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058208480_1058734080.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz -2013-04-11 00:00:00 2013-05-28 00:00:00 1058353920 1058421600 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058208480_1058734080.npz'] -2013-05-28 00:00:00 2013-06-04 00:00:00 1058421600 1058431680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058208480_1058734080.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz -2013-06-04 00:00:00 2013-06-05 00:00:00 1058431680 1058433120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058208480_1058734080.npz'] -2013-06-05 00:00:00 2013-06-16 00:00:00 1058433120 1058448960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058208480_1058734080.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz -2013-06-16 00:00:00 2013-06-16 23:00:00 1058448960 1058450340 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz'] -2013-06-17 00:00:00 2013-08-04 00:00:00 1058450400 1058519520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058208480_1058734080.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz -2013-08-04 02:00:00 2013-08-04 23:00:00 1058519640 1058520900 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz'] -2013-08-05 00:00:00 2013-08-27 00:00:00 1058520960 1058552640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058208480_1058734080.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz -2013-08-27 00:00:00 2013-09-24 00:00:00 1058552640 1058592960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058208480_1058734080.npz'] -2013-09-24 00:00:00 2013-11-24 00:00:00 1058592960 1058680800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058208480_1058734080.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz -2013-11-24 00:00:00 2013-11-24 23:00:00 1058680800 1058682180 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz'] -2013-11-25 00:00:00 2013-12-31 00:00:00 1058682240 1058734080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058208480_1058734080.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz -2013-12-31 00:00:00 2014-01-01 00:00:00 1058734080 1058735520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058340000_1058734860.npz -2014-01-01 00:00:00 2014-01-27 00:00:00 1058735520 1058772960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-01-27 00:00:00 2014-01-29 00:00:00 1058772960 1058775840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-01-29 00:00:00 2014-04-14 00:00:00 1058775840 1058883840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-04-14 00:00:00 2014-04-17 00:00:00 1058883840 1058888160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-04-17 00:00:00 2014-04-20 00:00:00 1058888160 1058892480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-04-20 00:00:00 2014-04-21 00:00:00 1058892480 1058893920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-04-21 00:00:00 2014-04-27 00:00:00 1058893920 1058902560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-04-27 00:00:00 2014-05-06 00:00:00 1058902560 1058915520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-05-06 00:00:00 2014-05-25 00:00:00 1058915520 1058942880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-05-25 00:00:00 2014-05-26 00:00:00 1058942880 1058944320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-05-26 00:00:00 2014-06-15 00:00:00 1058944320 1058973120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-06-15 00:00:00 2014-06-18 00:00:00 1058973120 1058977440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-06-18 00:00:00 2014-06-22 00:00:00 1058977440 1058983200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-06-22 00:00:00 2014-06-29 00:00:00 1058983200 1058993280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-06-29 00:00:00 2014-07-09 00:00:00 1058993280 1059007680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-07-09 00:00:00 2014-07-19 23:00:00 1059007680 1059023460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-07-20 00:00:00 2014-07-23 00:00:00 1059023520 1059027840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-07-23 00:00:00 2014-07-25 00:00:00 1059027840 1059030720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-07-25 00:00:00 2014-08-07 00:00:00 1059030720 1059049440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-08-07 00:00:00 2014-08-08 00:00:00 1059049440 1059050880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-08-08 00:00:00 2014-08-17 00:00:00 1059050880 1059063840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-08-17 00:00:00 2014-08-18 00:00:00 1059063840 1059065280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-08-18 00:00:00 2014-08-24 00:00:00 1059065280 1059073920 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-08-24 00:00:00 2014-08-25 00:00:00 1059073920 1059075360 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -2014-08-25 00:00:00 2014-09-04 00:00:00 1059075360 1059089760 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz'] -OVERLAP RESOLVED BY "RANKING ALGORITHM" CHECK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058735220_1059088800.npz -2014-09-04 00:00:00 2014-12-31 00:00:00 1059089760 1059259680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1058734080_1059259680.npz'] -2014-12-31 00:00:00 2015-12-31 00:00:00 1059259680 1059785280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1059259680_1059785280.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/3_BA_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.038392496109008786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_40_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_40_BA.out deleted file mode 100644 index e4ebd86ba2d2292c93cdf8e9998b58f193cc4946..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_40_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -40_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016340219974517824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_41_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_41_BA.out deleted file mode 100644 index f77062422b8c0b94b0bdea81b91540f9340c54ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_41_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -41_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.015579136212666829 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_42_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_42_BA.out deleted file mode 100644 index 70febeb91ece74748bc9cef1eca9529f3cd195b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_42_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -42_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011876261234283448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_43_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_43_BA.out deleted file mode 100644 index 21c1d4861ef6629530eeca10ca7da6a433678757..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_43_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -43_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.019976711273193358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_44_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_44_BA.out deleted file mode 100644 index 1a3949e77077b2b725f7ef9613c80c094f517f10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_44_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -44_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011277969678243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_453_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_453_BA.out deleted file mode 100644 index 5c41bcf56f8f59df3ed9de35260ea10339394647..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_453_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -453_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009032849470774333 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_454_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_454_BA.out deleted file mode 100644 index 01a7b70a0d0dc801cb858629de29d479a0a59317..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_454_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -454_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010439451535542805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_455_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_455_BA.out deleted file mode 100644 index d2c32e4f65a515b61bf87f48cdfe3afb52a230f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_455_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -455_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012527998288472493 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_456_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_456_BA.out deleted file mode 100644 index b6b6d9e925338b62bcab8ceedcf9619bb0e718f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_456_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -456_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009945837656656902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_457_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_457_BA.out deleted file mode 100644 index 4daab0ee19ec10bc55f9119c56ce7c6e90c217d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_457_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -457_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012057018280029298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_458_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_458_BA.out deleted file mode 100644 index 5e991ac2dd8c81ec6e451d796fda0a690751cf9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_458_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -458_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011331407229105632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_459_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_459_BA.out deleted file mode 100644 index b6cc9433f15f01df75b4fe5c0b5e89bd73c7c864..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_459_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -459_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007944178581237794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_45_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_45_BA.out deleted file mode 100644 index 11a4b6be36bd602a8d461eed2ec631b75ce4de4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_45_BA.out +++ /dev/null @@ -1,32 +0,0 @@ -45_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-05-06 04:00:00 1996-12-31 12:00:00 1049449200 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1049449200_1049793840.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-29 23:00:00 1051897680 1052421060 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1051897680_1052421060.npz'] -2002-01-03 03:00:00 2002-12-29 21:00:00 1052427060 1052946540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1052427060_1052946540.npz'] -2003-01-07 05:00:00 2003-12-31 12:00:00 1052958540 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1052958540_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 08:00:00 1054001520 1054526880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1054001520_1054526880.npz'] -2005-12-31 12:00:00 2006-12-29 03:00:00 1054527120 1055049300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1054527120_1055049300.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 11:00:00 1057156560 1057682100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1057156560_1057682100.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/45_BA_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.11938246488571166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_460_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_460_BA.out deleted file mode 100644 index 6df717a6a7403d8536897a716eaac11432682d0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_460_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -460_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009249866008758545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_461_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_461_BA.out deleted file mode 100644 index 45122082d4721cf92746fd46c34dcbfe9b45685f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_461_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -461_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009137097994486492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_462_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_462_BA.out deleted file mode 100644 index 6983b0716d5146676d6a1f862987c8c0f981f3ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_462_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -462_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007880874474843343 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_463_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_463_BA.out deleted file mode 100644 index 3e7a63e281ae69a32b91b65735cda23b1890aba4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_463_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -463_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012528316179911295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_464_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_464_BA.out deleted file mode 100644 index 827ba4c0efbcf6eec6bd1ed4aec102324795d65a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_464_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -464_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0017679532368977864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_465_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_465_BA.out deleted file mode 100644 index 9572b727682fba613b0c0532c95c11dee6fb73d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_465_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -465_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012719921271006266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_466_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_466_BA.out deleted file mode 100644 index b3cea97d20dd1445ccaf75cb91ad0ccec4a6ee3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_466_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -466_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010817718505859376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_467_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_467_BA.out deleted file mode 100644 index 5882a4c4fe1caccb1fd8fe4441c7145f5ae2fbeb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_467_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -467_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012355581919352213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_468_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_468_BA.out deleted file mode 100644 index a1ec8971b635c64cb194a0896effe5027d4243d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_468_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -468_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0018084923426310222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_469_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_469_BA.out deleted file mode 100644 index d0b66b12db2ef50cbf5d944131a7908138ccf761..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_469_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -469_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002920083204905192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_46_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_46_BA.out deleted file mode 100644 index 0af4efe7bbcb73e6d747931ab6f1798d09da116d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_46_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -46_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.019371279080708823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_471_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_471_BA.out deleted file mode 100644 index 1c18042e7c37a266318aa8a7fb6bf2fe05778146..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_471_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -471_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002559951941172282 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_473_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_473_BA.out deleted file mode 100644 index df3ab583eb7a9dcb90a83171738cb5cf19b79d20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_473_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -473_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007640333970387777 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_474_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_474_BA.out deleted file mode 100644 index 0ebfd1b16311093b854906d36cc9a14e4d624d9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_474_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -474_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009164957205454509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_475_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_475_BA.out deleted file mode 100644 index 6b2662c6a6cab76522c7e31ef7cff8a48a17c50d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_475_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -475_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0030577460924784343 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_476_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_476_BA.out deleted file mode 100644 index 815cd953ce755726f0eb0ce8537775483ae6796e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_476_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -476_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00416175127029419 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_477_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_477_BA.out deleted file mode 100644 index 26d1b255be563a886b9c891d90b7c58f0b2f2f9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_477_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -477_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00885621706644694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_478_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_478_BA.out deleted file mode 100644 index a65cfb4b951cf5b8feb2434b2cfb66bda80d3a2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_478_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -478_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003262531757354736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_479_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_479_BA.out deleted file mode 100644 index f4f72234e8de9c722658cb653ae67d0e31cd0867..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_479_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -479_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004934461911519369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_480_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_480_BA.out deleted file mode 100644 index 2cb786779373b3bba76ed220489d63495b9bf5dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_480_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -480_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01127164363861084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_481_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_481_BA.out deleted file mode 100644 index 0e7c5a523ddf96fca587d2eff1f6b2a6b35a68c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_481_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -481_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003777484099070231 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_482_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_482_BA.out deleted file mode 100644 index c3f69abf85714b6935344d8b1178ec59f2eb2493..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_482_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -482_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011688884099324543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_483_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_483_BA.out deleted file mode 100644 index fb669204350aa23488f3253fc4cd1e82a3701a3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_483_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -483_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008975478013356526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_485_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_485_BA.out deleted file mode 100644 index f064c058266460dc8cd22b749fb9b2694c022eb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_485_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -485_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.003059864044189453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_486_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_486_BA.out deleted file mode 100644 index 851a466f49acfd250d422a0e6d870ab2f53639ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_486_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -486_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009554672241210937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_487_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_487_BA.out deleted file mode 100644 index 3dad358ae77d938dac86f52f1394712ecc8b8875..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_487_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -487_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007489585876464843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_488_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_488_BA.out deleted file mode 100644 index 9020e44416978a78be55b04310a8c85bae6cdf70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_488_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -488_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007141220569610596 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_489_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_489_BA.out deleted file mode 100644 index e7a990edb689fbfe2e200d261aac24aba2404331..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_489_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -489_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0075563788414001465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_48_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_48_BA.out deleted file mode 100644 index af21740efee9420dc22df8a8d5def10531438179..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_48_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -48_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.033242321014404295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_490_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_490_BA.out deleted file mode 100644 index c520f771539a4026ee4149b10ba27338bb6933a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_490_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -490_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009702086448669434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_4_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_4_BA.out deleted file mode 100644 index ac397154fb8aac4b6a7d465a5b3d79ecd3277d76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_4_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -4_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01641783316930135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_51_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_51_BA.out deleted file mode 100644 index 486921e962021d2eeb2acc519c172c376848e98b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_51_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -51_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01249232292175293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_529_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_529_BA.out deleted file mode 100644 index 1f942b6221b48e7f80eb1f403c227cb21818bf05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_529_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -529_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005342268943786621 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_52_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_52_BA.out deleted file mode 100644 index 0fcdbface787428c03a021fff0fecb0b13a4babc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_52_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -52_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0205305814743042 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_530_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_530_BA.out deleted file mode 100644 index 846f2efcbe5964b05ea0e9ce1102c986eabb1910..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_530_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -530_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008651113510131836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_531_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_531_BA.out deleted file mode 100644 index f23c381125380769f0bacdb8df21203b29badafa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_531_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -531_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008700680732727051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_534_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_534_BA.out deleted file mode 100644 index 60de0545a59596b25e0cf5c96c9ffa706752dc20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_534_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -534_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0014109293619791667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_53_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_53_BA.out deleted file mode 100644 index 170219a206ae6f8ac15e6690ac6184602780c698..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_53_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -53_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008781147003173829 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_540_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_540_BA.out deleted file mode 100644 index ed6ddbb5220172adee4e2ae780be862ce4e561f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_540_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -540_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0022345463434855144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_543_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_543_BA.out deleted file mode 100644 index aa92366a3447b454c937a691e21cf359b400f7e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_543_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -543_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.007617719968159993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_546_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_546_BA.out deleted file mode 100644 index 3c2f3dfadc34ee63f5812e40b29a4ad93c351f0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_546_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -546_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0026283939679463703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_549_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_549_BA.out deleted file mode 100644 index 4a9327061369008f0d9532685f6164774bb748d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_549_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -549_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0073600689570109045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_550_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_550_BA.out deleted file mode 100644 index 3c26418d2851b31f567147b4e589760b99eb0df6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_550_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -550_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008788736661275227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_553_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_553_BA.out deleted file mode 100644 index 6c66e3ff8028efc2202002d9fc18053f248b50aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_553_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -553_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0041750907897949215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_554_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_554_BA.out deleted file mode 100644 index f026b03be953ee1d84713534725e8cf791ae98b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_554_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -554_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0028992652893066405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_56_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_56_BA.out deleted file mode 100644 index a9ee06e28b9b15ce2e5111559885cf1d1265980b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_56_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -56_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.027526529630025227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_57_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_57_BA.out deleted file mode 100644 index 69ad69f03e15f6900edbc59e01ccd427cf950d98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_57_BA.out +++ /dev/null @@ -1,32 +0,0 @@ -57_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-05-30 13:00:00 1996-12-31 12:00:00 1049484300 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1049484300_1049793840.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/57_BA_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.16214683055877685 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_59_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_59_BA.out deleted file mode 100644 index 1ec201a0b880fd3053c3f88386fbeaa137c519d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_59_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -59_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.024768495559692384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_5_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_5_BA.out deleted file mode 100644 index 988c53fbc22c02fff7d45ab787087b79e4c39853..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_5_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -5_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016565378506978354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_61_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_61_BA.out deleted file mode 100644 index 7cb46082885b03c19a83452eebb77ac97730c2fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_61_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -61_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.021346628665924072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_62_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_62_BA.out deleted file mode 100644 index 5bc53521d4021a9ba1e527f7f5f4d75c8949217e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_62_BA.out +++ /dev/null @@ -1,31 +0,0 @@ -62_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-02-24 13:00:00 1996-02-25 04:00:00 1049346060 1049346960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1049346060_1049346960.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1998-02-28 13:00:00 1998-12-31 12:00:00 1050404460 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1050404460_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 03:00:00 1059786000 1060312500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1059786000_1060312500.npz'] -2017-01-03 01:00:00 2017-12-31 12:00:00 1060316700 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1060316700_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/pm2p5/temporary_S1/62_BA_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.18175824880599975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_63_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_63_BA.out deleted file mode 100644 index ec7529b3ca8ba83edc25a15fafae9b6aca941122..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_63_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -63_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.024227126439412435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_64_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_64_BA.out deleted file mode 100644 index 09353b146ab52cdb3724fe568d121f50872c6f14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_64_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -64_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.023715869585673014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_65_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_65_BA.out deleted file mode 100644 index a8b68b798a3f07c88c92471fb1a663571a58909d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_65_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -65_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012635966142018637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_6_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_6_BA.out deleted file mode 100644 index 4d790a8734f58aa639050b4e4043fd3d031f292f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_6_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -6_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012299664815266927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_70_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_70_BA.out deleted file mode 100644 index f6837a6e0056320b78c2215eeacb4c62a75d72d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_70_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -70_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0027404904365539553 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_73_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_73_BA.out deleted file mode 100644 index 29e6dfd0609a56f2579650a1d8ce376a3c0f06ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_73_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -73_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005032813549041748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_76_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_76_BA.out deleted file mode 100644 index 2d6a31c31a59f98986568f60279d33bb3f83b1b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_76_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -76_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.011427191893259685 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_79_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_79_BA.out deleted file mode 100644 index ffdf91c85edb2541215a10dbdf7bf73707b57c08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_79_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -79_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.023961230119069418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_80_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_80_BA.out deleted file mode 100644 index 3657ade58f7717c85528263ac106375975513f23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_80_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -80_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03203781048456828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_81_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_81_BA.out deleted file mode 100644 index 77b434e937600c6653138af855448cccc3e66b0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_81_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -81_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00205767552057902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_83_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_83_BA.out deleted file mode 100644 index 325aad5874d3bd8eb3ceaa090e23b648818860b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_83_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -83_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.019917404651641844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_84_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_84_BA.out deleted file mode 100644 index e9f0d9bed1df689e12b04daf3f0bfbe0dfe389ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_84_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -84_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.027197221914927166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_85_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_85_BA.out deleted file mode 100644 index 10f89f4c0a8ccc863f4c1adaad5682a7d772f582..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_85_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -85_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.009860503673553466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_90_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_90_BA.out deleted file mode 100644 index 370a7dd4537eb88774212df5c902271e2e03f61a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_90_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -90_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008509433269500733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_93_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_93_BA.out deleted file mode 100644 index 94c88e5610f17e8d7843860de45aac12a77f029a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_93_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -93_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0031847397486368815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_94_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_94_BA.out deleted file mode 100644 index 2fe1fb14a364b29edfb85127f0e4e279c68d79ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_94_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -94_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0033937692642211914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_95_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_95_BA.out deleted file mode 100644 index 2f8acd02425da2b46514ecb5613ac482e2da8956..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_95_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -95_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01757479508717855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_99_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_99_BA.out deleted file mode 100644 index 7494c8ef23501d35686003181daa64bc13d88f7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_99_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -99_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0059120376904805505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/0_9_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/0_9_BA.out deleted file mode 100644 index 98a3a33849c41b78e885b4aba878b9d8610a23d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/0_9_BA.out +++ /dev/null @@ -1,4 +0,0 @@ -9_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01824566920598348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/1_472_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/1_472_BA.out deleted file mode 100644 index fcbccf22770418f8bc060ef60f1584283dfe568e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/1_472_BA.out +++ /dev/null @@ -1,5 +0,0 @@ -472_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -NO VALID DATA TO WRITE OUT AFTER REMOVING UNIQUE STATION DATA WITH EXTENT < 31 DAYS. -STATION WILL NOT CONTINUE IN PIPELINE. \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/1_484_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/1_484_BA.out deleted file mode 100644 index 39841e5a8ed4972a1492d99cb2b63271e9408f35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/1_484_BA.out +++ /dev/null @@ -1,5 +0,0 @@ -484_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -NO VALID DATA TO WRITE OUT AFTER REMOVING UNIQUE STATION DATA WITH EXTENT < 31 DAYS. -STATION WILL NOT CONTINUE IN PIPELINE. \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/1_544_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/1_544_BA.out deleted file mode 100644 index d86343ba3eefce8594d8467e85630411d60bf311..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/1_544_BA.out +++ /dev/null @@ -1,3 +0,0 @@ -544_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/1_547_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/1_547_BA.out deleted file mode 100644 index 1b80a9cf60f3b5f7ce559619b8dc501e3c851513..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/1_547_BA.out +++ /dev/null @@ -1,3 +0,0 @@ -547_BA -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/1_89_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/1_89_BA.out deleted file mode 100644 index 30f6c67e7778da3734298c1b226281c2394b8472..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/1_89_BA.out +++ /dev/null @@ -1,3 +0,0 @@ -89_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S2/1_98_BA.out b/run/stage_logs/NAPMD_PM2.5/S2/1_98_BA.out deleted file mode 100644 index 329fcf97e911c2fa65cf1af7acd9a6022edf06a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S2/1_98_BA.out +++ /dev/null @@ -1,3 +0,0 @@ -98_BA -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -ALL OF LONGITUDE VALUES ARE NaN. STATION REMOVED FROM FURTHER PROCESSING IN PIPELINE \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_103_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_103_BA.out deleted file mode 100644 index 63c271dfd491c3d5c7e1b65759525c9f57df97cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_103_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -103_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7094391266504922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_107_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_107_BA.out deleted file mode 100644 index dc8eb65079a0ef78893170d59cba548ae59f13b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_107_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -107_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.024326737721761 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_108_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_108_BA.out deleted file mode 100644 index fbd70b3c9afad63685741fc29f37e12305d62931..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_108_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -108_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.403129764397939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_109_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_109_BA.out deleted file mode 100644 index 17845e43ca4d563f997ff83385a5e60f5a947dda..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_109_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -109_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4028728604316711 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_10_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_10_BA.out deleted file mode 100644 index 528d552f33a00ae092c31602afdc73a1685d7f46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_10_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -10_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7826983054478964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_110_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_110_BA.out deleted file mode 100644 index 3f29a9b2305b62d7f7329128a1c4101e80b348da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_110_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -110_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5730549613634746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_113_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_113_BA.out deleted file mode 100644 index e1fd7bee11a0d228ac8cc69c38cd5626667b64ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_113_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -113_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.0783097664515178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_117_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_117_BA.out deleted file mode 100644 index 7c0072a6e7689e7290ddbfe916b4c7d60e6c9f36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_117_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -117_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9719801982243855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_118_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_118_BA.out deleted file mode 100644 index d64510d57f2d287f2b0a6290d728d88ae0daff69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_118_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -118_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9271294474601746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_119_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_119_BA.out deleted file mode 100644 index 73faad9950ff0037cadb77221e94b7d1cdda4033..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_119_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -119_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.143085459868113 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_11_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_11_BA.out deleted file mode 100644 index 86517d8e678f5e1fa75342078f341b83bd22323f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_11_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -11_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1657822330792744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_120_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_120_BA.out deleted file mode 100644 index 664b02b1b2c13ce64cd503de277dae64c6825cd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_120_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -120_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2007660746574402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_12_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_12_BA.out deleted file mode 100644 index 6bda3eef0a7698eb5a4b53998ac04e422a68482a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_12_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -12_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8516085306803385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_13_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_13_BA.out deleted file mode 100644 index fa900ec58290d394734d98bd26efea400390c10a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_13_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -13_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.7013266841570536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_15_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_15_BA.out deleted file mode 100644 index 30f62718b553c5c96a767677d44ba808a0096ebc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_15_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -15_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9261404037475586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_17_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_17_BA.out deleted file mode 100644 index e68f79c2945e6f95d2b87f70ce27be0e54213f2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_17_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -17_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.070066487789154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_18_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_18_BA.out deleted file mode 100644 index eb43f1a5a8f3675043b7a6db21f865b938240aec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_18_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -18_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4871227184931437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_1_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_1_BA.out deleted file mode 100644 index 8e1fb6cbfb77f471a997912c5632ad2fb882741c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_1_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -1_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8242534637451172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_20_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_20_BA.out deleted file mode 100644 index e6c4d2407969f48e6f1115801dfdb71af3ef4d31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_20_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -20_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8197912851969401 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_21_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_21_BA.out deleted file mode 100644 index 3973797118a72a2fd52412f30083b805c6954aea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_21_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -21_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.316591501235962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_22_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_22_BA.out deleted file mode 100644 index 0b7072d7e12268cfd219a3f0f31ff3fa6a077ebf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_22_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -22_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1507378737131755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_23_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_23_BA.out deleted file mode 100644 index 3494f712758ec9163555f21ff81cc597cbfeaff7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_23_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -23_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.117008582750956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_24_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_24_BA.out deleted file mode 100644 index a366dd774e4b0782711a628c59a7b95b8e50f9a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_24_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -24_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1530729850133261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_26_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_26_BA.out deleted file mode 100644 index d8327738ee81d22349d2e367cdaca1c154f8dd2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_26_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -26_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3597706278165183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_271_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_271_BA.out deleted file mode 100644 index 1ccff4abafce9a7e24c56f2c5807fd1b991d6b52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_271_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -271_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3218603094418844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_273_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_273_BA.out deleted file mode 100644 index 61cd6f585a30a73229977fe8afb899fe8773c01c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_273_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -273_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9011726339658102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_274_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_274_BA.out deleted file mode 100644 index 89f5a59c40c18482781f3be63320ea3adcef51cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_274_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -274_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.4978054682413737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_278_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_278_BA.out deleted file mode 100644 index 6aefbdb37e5f760ddfa1f3dab2681d32a3275894..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_278_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -278_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7277983466784159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_279_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_279_BA.out deleted file mode 100644 index f8311a5110a90df46964f3a67ea25b94cc5b67fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_279_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -279_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8579617023468018 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_285_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_285_BA.out deleted file mode 100644 index eb156cb8166c8ef21c655523437f3aeacf75879c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_285_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -285_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8099938193957011 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_286_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_286_BA.out deleted file mode 100644 index 45fbe903b804dca8808ceb8e4518ae875b58f2a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_286_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -286_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6598414659500123 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_288_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_288_BA.out deleted file mode 100644 index a94b796d927ab23347d69fa5c1aa9f1bdd021e51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_288_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -288_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8012983679771424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_289_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_289_BA.out deleted file mode 100644 index c5fa42c5cd01e14a5388195b0cc88e1d7cbfb7eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_289_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -289_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0185778697331747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_28_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_28_BA.out deleted file mode 100644 index 8ef92f20433004e8b5130e840009b3305c456509..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_28_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -28_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0464428146680196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_290_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_290_BA.out deleted file mode 100644 index 9a4ac41f16a47085a37d68ec6a5ade84400df73e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_290_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -290_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.121353562672933 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_291_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_291_BA.out deleted file mode 100644 index d7d8f1256f112004cf431241c840a1738f2571ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_291_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -291_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6657704075177511 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_292_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_292_BA.out deleted file mode 100644 index 0eb5e6bcc1eaecdb88620da48ddcebac5d34357b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_292_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -292_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8263364553451538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_293_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_293_BA.out deleted file mode 100644 index 7aadb6b4cae88995a5d61e047763bfb69f559075..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_293_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -293_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8365014314651489 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_294_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_294_BA.out deleted file mode 100644 index 4eb5fe840c9b7500377c0758fc15aae6d962e603..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_294_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -294_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9217424194018046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_295_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_295_BA.out deleted file mode 100644 index 6d6044bd0517479d961f6e4c25ad7f1c4c8572af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_295_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -295_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6397292852401734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_296_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_296_BA.out deleted file mode 100644 index c27d91899cd5e174fa7740438d9e262d3f21ed6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_296_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -296_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4788727243741353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_297_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_297_BA.out deleted file mode 100644 index 99404f11dc88f7a285e281bf3b366b6d3a699d5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_297_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -297_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.187678050994873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_298_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_298_BA.out deleted file mode 100644 index d1c5a21e902470bb6b55f870ec79aeda833dc275..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_298_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -298_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.693257999420166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_299_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_299_BA.out deleted file mode 100644 index 3cb48556b3fe473ef3fa2b69b1deb7a8e54a503b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_299_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -299_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6586164077123007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_2_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_2_BA.out deleted file mode 100644 index 668f2b6e58195d9d31fea67a996044a38eba331b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_2_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -2_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9808099071184794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_300_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_300_BA.out deleted file mode 100644 index d02e24adb683b6747a008d968dd45e2d247bab04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_300_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -300_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0608878135681152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_301_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_301_BA.out deleted file mode 100644 index 26c0465cfaf09a7228b776ad7e3f62a32d8b29b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_301_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -301_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.241607936223348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_302_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_302_BA.out deleted file mode 100644 index 9f49e8dedaf4cc756f0b557cfa327acbf8e8e639..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_302_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -302_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9787546912829082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_303_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_303_BA.out deleted file mode 100644 index b4fac5c85771f5fc5e4a02108858696d5ff7146e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_303_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -303_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.950796922047933 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_304_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_304_BA.out deleted file mode 100644 index 17673bfda0a4b582ee154f7fe90dc3c36b9a32fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_304_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -304_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9718596140543619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_305_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_305_BA.out deleted file mode 100644 index 055ffd30c95edae65fb586c2261a5edde66ee2da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_305_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -305_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7033372203509013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_306_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_306_BA.out deleted file mode 100644 index be73997658f6510a8039207b76a64c02ed068fb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_306_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -306_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.257167363166809 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_307_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_307_BA.out deleted file mode 100644 index 4ee31106d8f69f6755bfb00bf8fabb4e29314f43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_307_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -307_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6966000119845073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_308_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_308_BA.out deleted file mode 100644 index 58bd3892fc7d2f58839d5cbc7b632deda5ab9f2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_308_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -308_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.987387220064799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_309_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_309_BA.out deleted file mode 100644 index 9e269ff729fc7511d6eef5dee0d2ba73e069e1e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_309_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -309_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6852250734965006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_30_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_30_BA.out deleted file mode 100644 index 9d1802cfb1b3dae404b841d7003433062fda7c9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_30_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -30_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.745759598414103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_310_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_310_BA.out deleted file mode 100644 index 4a788f853739d95022aa0a055de653a9a47764bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_310_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -310_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7056474049886068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_311_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_311_BA.out deleted file mode 100644 index 9f0255a99be2010717a007d2730d283262adc892..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_311_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -311_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.672799809773763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_312_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_312_BA.out deleted file mode 100644 index 87f5e80d6390c46a7b2023a7ead75d4e81c30740..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_312_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -312_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6458724498748779 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_313_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_313_BA.out deleted file mode 100644 index 63a7cba1e2a40a315b1ea71d996e47efd07ddc2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_313_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -313_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1303250630696615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_314_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_314_BA.out deleted file mode 100644 index 6355ec8e83d3b9b614463b3a84113f3796135e6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_314_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -314_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6493291020393371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_315_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_315_BA.out deleted file mode 100644 index 1fd86924afc1a97ecbdb8092eaa16f253c5159b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_315_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -315_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6761583646138509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_316_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_316_BA.out deleted file mode 100644 index a76e8cbaba298965e3fcfdc8d44e14bd1f2e4dd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_316_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -316_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5191059827804565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_317_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_317_BA.out deleted file mode 100644 index 6e2d48b3cdb028ca08cde05d4eb661dffc656246..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_317_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -317_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6126102288564046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_318_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_318_BA.out deleted file mode 100644 index 6c996bc0f58e461eff23b0194971866a68263e0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_318_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -318_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6579014897346496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_319_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_319_BA.out deleted file mode 100644 index a412cac03f9b210cbc1e4886cc808c3f5e90d5d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_319_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -319_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7905857602755229 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_320_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_320_BA.out deleted file mode 100644 index 23ff31896718ccc3e4a537dc288bf954448ad473..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_320_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -320_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6665315707524617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_321_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_321_BA.out deleted file mode 100644 index 09e19770d40c5fe6f857f1f7fff228cf5eb0b2a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_321_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -321_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1902259866396585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_322_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_322_BA.out deleted file mode 100644 index b9bfcc0d9ec894e7846d9f05ca90ae53ef455f09..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_322_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -322_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7014193177223205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_323_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_323_BA.out deleted file mode 100644 index 56e0f8c38777ac5379d6c3585e519f0b0b1813be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_323_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -323_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0460997343063354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_325_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_325_BA.out deleted file mode 100644 index 3f77f27d435a52ecf73d2b027283db439e3eb80e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_325_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -325_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9518465598424275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_327_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_327_BA.out deleted file mode 100644 index f368abc2a500189f7aa30a8ce2c4d5031d9cdf3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_327_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -327_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6590301871299744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_328_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_328_BA.out deleted file mode 100644 index 608a5a568b7f5e781ed3f3a5f7b7c586b60bb88f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_328_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -328_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6682634353637695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_329_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_329_BA.out deleted file mode 100644 index 892c553abf6f1547b4a22831bb068e95d76951c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_329_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -329_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2847031195958456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_32_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_32_BA.out deleted file mode 100644 index 0200dc0ce27a6a2cf31e97bafc3211b8762502f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_32_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -32_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2599617838859558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_331_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_331_BA.out deleted file mode 100644 index 9456c0c7366ba5f3bd2375b6a02dbac8bdb6e9f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_331_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -331_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4760089238484702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_332_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_332_BA.out deleted file mode 100644 index cbc1837de069d5024da5cbeb542f2680a604fb7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_332_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -332_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.794639511903127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_334_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_334_BA.out deleted file mode 100644 index c79b521d2e46840384243f68e2ba0792c8a096e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_334_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -334_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8724441488583883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_335_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_335_BA.out deleted file mode 100644 index aa391bd45b1f8bfc06a6e3445f193092ae3a7c42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_335_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -335_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6450863043467203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_336_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_336_BA.out deleted file mode 100644 index 6f0ab2f1214021d27abfe571d98c6bb3b0b50efc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_336_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -336_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8032988468805949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_337_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_337_BA.out deleted file mode 100644 index 192789a92df6a7f49631af390e061ca39f85412a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_337_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -337_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9323699434598287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_339_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_339_BA.out deleted file mode 100644 index 2c2cd6c67c5a233e9a35535b8fe7e06af5898e83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_339_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -339_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6755396564801535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_340_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_340_BA.out deleted file mode 100644 index de4b5d995bcb56bde2d94cebe6e3623702f5174e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_340_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -340_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2466236432393392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_341_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_341_BA.out deleted file mode 100644 index 0f251c8fc012f84b16522b43fb4743027a7e87d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_341_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -341_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7728916684786479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_346_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_346_BA.out deleted file mode 100644 index f27665236727e76f94de747f768f4024fd42f207..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_346_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -346_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7311706026395162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_34_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_34_BA.out deleted file mode 100644 index 2ebe200151226478d13a75683d8d5ac66c365073..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_34_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -34_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1594666798909505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_350_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_350_BA.out deleted file mode 100644 index d6ac40d688533e7827bfaab09db1e2b4314ecda4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_350_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -350_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.8736576636632285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_351_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_351_BA.out deleted file mode 100644 index 59b1f7d805e1c527fe87a7d843c557ab64104efa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_351_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -351_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.720802660783132 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_352_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_352_BA.out deleted file mode 100644 index 695f552b1947308103fe5ded75ee4640d6e69425..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_352_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -352_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.110882536570231 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_354_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_354_BA.out deleted file mode 100644 index 7abfc9dbeb7c80f7a0afefbf381fca6b5eec30af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_354_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -354_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.8826593001683554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_355_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_355_BA.out deleted file mode 100644 index f853d8fdffd0c00df5bb3c7d1abb6d119a2e3afa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_355_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -355_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.74750812848409 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_356_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_356_BA.out deleted file mode 100644 index fd7bce8750c842568fbfe7844b6cf755efa1ab7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_356_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -356_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0656872987747192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_357_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_357_BA.out deleted file mode 100644 index 45a44e1cf14c372640a9bc8d84502a54ca3582d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_357_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -357_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2349335471789042 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_358_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_358_BA.out deleted file mode 100644 index 1f5c0a150eda5dbc6e019624c4f964b49a7df0c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_358_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -358_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.303440749645233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_35_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_35_BA.out deleted file mode 100644 index 127ac023616443a53d2dee83d352a551c1394954..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_35_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -35_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6280952374140422 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_360_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_360_BA.out deleted file mode 100644 index 1fa5cde8330341d336dee2d6b4d39a93b87bb0d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_360_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -360_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.52347282965978 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_363_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_363_BA.out deleted file mode 100644 index 80d57a1637716a81feb9f54df4c0d2c766bd0963..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_363_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -363_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6975249687830607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_364_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_364_BA.out deleted file mode 100644 index 213e50567e829c18adb51e5b09727dd489dc4c17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_364_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -364_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7603510936101278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_365_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_365_BA.out deleted file mode 100644 index ddc6845469fda84f149b786adf5500415c65af2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_365_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -365_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2302995920181274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_366_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_366_BA.out deleted file mode 100644 index 3580f70db308142926b76be5802ea32e8a75f1d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_366_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -366_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.140281359354655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_368_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_368_BA.out deleted file mode 100644 index bcaf4446dffb65bac6b2e6c9c70b2e7842487be2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_368_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -368_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.141898238658905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_369_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_369_BA.out deleted file mode 100644 index 9d07bd69f6c9c22a43d87a70d86514499e20e8d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_369_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -369_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1855774680773417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_370_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_370_BA.out deleted file mode 100644 index 979b4c78d23ba83b7a39a2aab9d9a23fab0d5463..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_370_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -370_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.753547747929891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_371_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_371_BA.out deleted file mode 100644 index 8c790bd26c9b3f807eee4a6d6114a2a1e4392f95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_371_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -371_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1855516632397969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_372_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_372_BA.out deleted file mode 100644 index 0a925a0f6894b07d3a9ab2a7681021102880d83e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_372_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -372_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9849728425343831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_373_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_373_BA.out deleted file mode 100644 index 1accbdf56edaf123933d71c74120ebb852e13e5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_373_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -373_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6696255763371786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_374_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_374_BA.out deleted file mode 100644 index 449b18a169e3a061897ed9cc8b0fd2d1aedec4e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_374_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -374_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6839098453521728 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_375_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_375_BA.out deleted file mode 100644 index 092d21024419505835198538e06bf0b518e4fdf5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_375_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -375_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7135339816411336 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_37_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_37_BA.out deleted file mode 100644 index 235eb4c98393e42352a647cbb8c759fb406aeeb1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_37_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -37_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1403307994206746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_39_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_39_BA.out deleted file mode 100644 index 6485689c05aec0ac75379d7e1e069a880f732985..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_39_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -39_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7671652714411417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_3_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_3_BA.out deleted file mode 100644 index c5020a05db917bbe1e3c98b0f221d61a74a1c395..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_3_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -3_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8162996212641398 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_40_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_40_BA.out deleted file mode 100644 index 2bef9d98090ec86c14f88f964a331faffcbd8111..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_40_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -40_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9554024497667948 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_41_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_41_BA.out deleted file mode 100644 index cc5fb578d9991cc749a75a5a43d5109e41219a81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_41_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -41_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7485989411671956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_42_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_42_BA.out deleted file mode 100644 index 999e9411be9fa45f580c9afd4b84408c86d8a0e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_42_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -42_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.766572618484497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_43_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_43_BA.out deleted file mode 100644 index e77725d966f9aca1e70d12d8a7f38c97d3190e8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_43_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -43_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.588946278889974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_44_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_44_BA.out deleted file mode 100644 index c53ee05d328d61534d2b398fa1e7b5203ade1579..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_44_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -44_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7177097002665201 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_453_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_453_BA.out deleted file mode 100644 index ac4819b1bc7f998585ed8aab359f738bbb0cf170..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_453_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -453_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6876885374387105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_454_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_454_BA.out deleted file mode 100644 index 09ddc3108ce20fa3bd39befc58262560b8802eb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_454_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -454_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7068079789479573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_455_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_455_BA.out deleted file mode 100644 index 3bed7515bc3c3e715f3b358d64664eb2fddde3e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_455_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -455_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8184477766354878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_456_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_456_BA.out deleted file mode 100644 index 11722235e7665b56419f3716b0182e4a91629f44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_456_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -456_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7260878483454387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_457_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_457_BA.out deleted file mode 100644 index 1eec5029b52f8041ab4e3c3fff7f1f9f4b2c9269..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_457_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -457_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7487204829851786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_458_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_458_BA.out deleted file mode 100644 index 4841953355c8ef2bd7dc258428ae6b45c2293127..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_458_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -458_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6555424571037292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_459_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_459_BA.out deleted file mode 100644 index 463c5f61c3b147bd1c89f7f102ef1b0105a8fbb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_459_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -459_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.823708697160085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_45_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_45_BA.out deleted file mode 100644 index b613d09b20ecea7e512b545f8dba2826dc1473c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_45_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -45_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.7785974303881327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_460_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_460_BA.out deleted file mode 100644 index fbebf1e26b09d501d5f0806c9795c876394b00dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_460_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -460_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.685292410850525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_461_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_461_BA.out deleted file mode 100644 index 5ff8f15864f2466610cbde65c333bd4985e73d40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_461_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -461_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6464588165283203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_462_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_462_BA.out deleted file mode 100644 index 893659585a9a70dbf2c931943d039ae44d6433ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_462_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -462_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7024634838104248 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_463_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_463_BA.out deleted file mode 100644 index e82b01754244eb320863a1fd419007fbb2dd4640..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_463_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -463_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7852103193600972 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_464_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_464_BA.out deleted file mode 100644 index df3480e01477cabd7d469f530ee6f6810a6c6a6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_464_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -464_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9810887654622396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_465_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_465_BA.out deleted file mode 100644 index 498205e7e4983cd78883485464ec48b54dcc3fb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_465_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -465_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1798206647237142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_466_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_466_BA.out deleted file mode 100644 index 44e4eb294644824b88a783563139c291f3812489..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_466_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -466_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6854038079579672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_467_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_467_BA.out deleted file mode 100644 index 1eeef70f1e95d4b075265fa805f6949055d02ce1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_467_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -467_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.080549124876658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_468_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_468_BA.out deleted file mode 100644 index 072c4c2ac634ba3d1df6699a1f8c92022ce0a535..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_468_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -468_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5061354915301005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_469_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_469_BA.out deleted file mode 100644 index a29cef36da679acf170eb9622be3dc25847b4ab6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_469_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -469_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6588907758394877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_46_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_46_BA.out deleted file mode 100644 index 97ddfaaf33d5188caf3e016bea6ecbc4b9eb7b95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_46_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -46_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2230691949526469 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_471_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_471_BA.out deleted file mode 100644 index e61ef0d73432d58b46a878e7c3ad67e5f427e60e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_471_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -471_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6360373616218566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_473_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_473_BA.out deleted file mode 100644 index 18224e9a936ba8abf3f504f19db17fee9ebd41af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_473_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -473_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0080092867215475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_474_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_474_BA.out deleted file mode 100644 index d6b7c629da67068e8ca120350a54c9e7ee44e696..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_474_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -474_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8086017409960429 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_475_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_475_BA.out deleted file mode 100644 index 2a68a410498d76dac1719d2f98116406d8979762..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_475_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -475_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7190792401631673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_476_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_476_BA.out deleted file mode 100644 index 357fde72e1bb8a533ab1c01c54b225c190fbfc36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_476_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -476_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7505961616834005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_477_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_477_BA.out deleted file mode 100644 index 4e3fe9b63d5e1459746b8aece7de6bac906e24a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_477_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -477_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1078885356585184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_478_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_478_BA.out deleted file mode 100644 index fc516be69b14861aeb2f4b579af665ff395bf854..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_478_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -478_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0462727348009746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_479_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_479_BA.out deleted file mode 100644 index d990df41be639801c20b5fc9f4c441552e5cfba1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_479_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -479_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7896719455718995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_480_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_480_BA.out deleted file mode 100644 index 06c96365ce2a640fb1147a6d85c19fb5d69a3078..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_480_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -480_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6517593065897623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_481_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_481_BA.out deleted file mode 100644 index bf0ba6da5d7bfa37e6e511cc7e331a9ba6879f11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_481_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -481_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6306805690129598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_482_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_482_BA.out deleted file mode 100644 index 9164ca808548e204031e7e42cd2425e41c4e60a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_482_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -482_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7250349442164103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_483_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_483_BA.out deleted file mode 100644 index 7d1d598e6bc24316cdbce3935e9292e830e5a97b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_483_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -483_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0512762387593588 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_485_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_485_BA.out deleted file mode 100644 index 5b91a026dba4a26101d51d6ec676aab287eb7506..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_485_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -485_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6810020605723064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_486_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_486_BA.out deleted file mode 100644 index 97098970d5c3b49d055996f15eede825e7c550b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_486_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -486_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6526342590649923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_487_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_487_BA.out deleted file mode 100644 index 73f2ec72a7f318946e4c2a30cf4acf07126fd7f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_487_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -487_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0558337171872456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_488_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_488_BA.out deleted file mode 100644 index f52e75bb96e129c2b8804ce2e59d40ddef48d050..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_488_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -488_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6554142355918884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_489_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_489_BA.out deleted file mode 100644 index 7426a28cb045f345324cf6e3e5e2cbaf9596e87a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_489_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -489_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.196893302599589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_48_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_48_BA.out deleted file mode 100644 index e7babb1d4755fa80199012c7ffeff9f3e4a0f27d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_48_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -48_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.426322333017985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_490_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_490_BA.out deleted file mode 100644 index 70d883c44d131b40b32c55337c7a44b3df9c3fec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_490_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -490_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.62328652938207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_4_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_4_BA.out deleted file mode 100644 index d43bb28edafefb0cb9ec9065dd3637feaf6663b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_4_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -4_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0063165267308554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_51_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_51_BA.out deleted file mode 100644 index 2e9d39aa10efc0ba03aecbe9e285e30eb0934258..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_51_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -51_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6676399747530619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_529_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_529_BA.out deleted file mode 100644 index ba4b24d64b0f79c10f1131be2bf82767c3bb2f1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_529_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -529_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1219621499379475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_52_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_52_BA.out deleted file mode 100644 index 4403de45631d571f6bd87c62f95404dd0ce0c57e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_52_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -52_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9665679097175598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_530_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_530_BA.out deleted file mode 100644 index 74e1199a16eb76b9bc0754bd9f352b7373cb744f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_530_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -530_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6785609722137451 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_531_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_531_BA.out deleted file mode 100644 index 7a79d4a4c3efed51d36a7120d2efa44dd311aed2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_531_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -531_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2852117697397867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_534_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_534_BA.out deleted file mode 100644 index 1a2f60d2188fddafb8da9f99787e9bea99d0451c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_534_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -534_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7293430447578431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_53_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_53_BA.out deleted file mode 100644 index f5ae5806c4d800bc30e010d7c348a423de69d4f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_53_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -53_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0398407896359763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_540_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_540_BA.out deleted file mode 100644 index d8de985323feff04db947b0afcb146a8099c42df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_540_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -540_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.4987256169319153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_543_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_543_BA.out deleted file mode 100644 index dbcdb9719b9e52c50f7ddd4406c38f7c10f8993f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_543_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -543_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6509922424952189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_546_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_546_BA.out deleted file mode 100644 index 491f5dae06d9434420d3b1f215a8cc6fe9a20654..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_546_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -546_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9964711189270019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_549_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_549_BA.out deleted file mode 100644 index d8be8615f46098962226c8ae680ad206e8720987..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_549_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -549_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7861358284950256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_550_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_550_BA.out deleted file mode 100644 index b1c87d2a87bdd0608c1d99b219e27c6c205880ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_550_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -550_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0308689634005228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_553_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_553_BA.out deleted file mode 100644 index 86fb49eda5d4da50a3ca47977d63659b08260924..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_553_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -553_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5473985155423482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_554_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_554_BA.out deleted file mode 100644 index c8316df4992149e3d75cae0e121d02060a479406..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_554_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -554_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.712924631436666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_56_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_56_BA.out deleted file mode 100644 index 95e793bbe252eeb39ccb46bb8b8a968b6f745178..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_56_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -56_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3546245098114014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_57_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_57_BA.out deleted file mode 100644 index d93d1206b7fecd44abef997597d4f4c17f855347..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_57_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -57_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.8456641912460325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_59_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_59_BA.out deleted file mode 100644 index 4cc176d8c1af10d5e577ccacc5d2e9e99a43c286..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_59_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -59_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.1272789597511292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_5_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_5_BA.out deleted file mode 100644 index 0ac8d03cf4b3dba7091fc89e235f453b24f3248c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_5_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -5_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8722668568293254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_61_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_61_BA.out deleted file mode 100644 index 6cc6edf99318a8d2b6580550ded5a14f590ab9f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_61_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -61_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.951901892820994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_62_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_62_BA.out deleted file mode 100644 index 25743c151d16a3b7e3056ac88e3723d274487060..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_62_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -62_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.685539988676707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_63_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_63_BA.out deleted file mode 100644 index bdc433c99cd98a857668d2fdc6bc8d0b43d0c13f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_63_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -63_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.962281839052836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_64_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_64_BA.out deleted file mode 100644 index e15c59b4648868b769621d90936d40baa8b6f21a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_64_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -64_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.4863918781280518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_65_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_65_BA.out deleted file mode 100644 index 4d6958e3f077f94cbde8be8d0b593578a9dff23d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_65_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -65_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.099811033407847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_6_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_6_BA.out deleted file mode 100644 index c7d502770645b874233a59b3c9ed87b7692bad9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_6_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -6_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6113650600115458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_70_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_70_BA.out deleted file mode 100644 index ec0e63fb04651da5da933bbb1852f6847cb41623..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_70_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -70_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6519898494084676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_73_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_73_BA.out deleted file mode 100644 index 0ab12819ce95d80de91694669af803d8235f3565..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_73_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -73_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6981799642244975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_76_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_76_BA.out deleted file mode 100644 index 5137a7e664b1b62a0fb7abd5648725488171fe01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_76_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -76_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7150481462478637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_79_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_79_BA.out deleted file mode 100644 index 113a0def0cb5b385a7f2f27bd15de95c451b1365..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_79_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -79_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.08401784102122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_80_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_80_BA.out deleted file mode 100644 index 28d7e915c29b5526470084be5d37ec480316c89e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_80_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -80_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.0699739257494607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_81_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_81_BA.out deleted file mode 100644 index df68e1fcfb20223479e469a83ada2d39ada684d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_81_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -81_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.706382421652476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_83_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_83_BA.out deleted file mode 100644 index 5c2c031b370428ad0e3b96f67ef6c91d7ed456b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_83_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -83_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3837836861610413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_84_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_84_BA.out deleted file mode 100644 index 55021fc53f6d8ae8addabc6ab828f31bf1d4e031..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_84_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -84_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.384427583217621 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_85_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_85_BA.out deleted file mode 100644 index 8e44104cbba8bc3e416c84c3186a84cb2fd8336d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_85_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -85_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1468457659085591 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_90_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_90_BA.out deleted file mode 100644 index 98e547e675d78251daf93475c56b1894c5df9771..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_90_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -90_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1931745489438375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_93_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_93_BA.out deleted file mode 100644 index d3751b1e1d94e8ea3a400141614b8cb3dfeec09e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_93_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -93_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.69021075963974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_94_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_94_BA.out deleted file mode 100644 index 6dba355bf1ab5c594a34b7a79ea8e9b46234a0d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_94_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -94_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8077980995178222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_95_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_95_BA.out deleted file mode 100644 index d1a855d12ec525fe8cf250f0fe3faec777dc4929..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_95_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -95_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8354735255241394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_99_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_99_BA.out deleted file mode 100644 index dfa35f7120d45f62bf622082bee55c44adc616ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_99_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -99_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.701013441880544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/S3/0_9_BA.out b/run/stage_logs/NAPMD_PM2.5/S3/0_9_BA.out deleted file mode 100644 index b5d40a9c798dcd5997a04187ea5e28c602409940..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/S3/0_9_BA.out +++ /dev/null @@ -1,23 +0,0 @@ -9_BA -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6646039446194967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_103_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_103_BA_D_GLOBAL.out deleted file mode 100644 index a394d206329e1af5ed4b565061dfeeea9c089e60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_103_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4124178647994995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_103_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_103_BA_H_GLOBAL.out deleted file mode 100644 index af05f1870d5c318f3bccf58ee1a7fb3c229446da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_103_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3952292720476786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_103_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_103_BA_M_GLOBAL.out deleted file mode 100644 index 3f44a14cd2f77f4238b66d3dee1c05568772bdb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_103_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.25634492238362633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_107_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_107_BA_D_GLOBAL.out deleted file mode 100644 index 36fa572d3f53d15612bb1f30ae9e8b6f6ffa0e03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_107_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6059083779652914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_107_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_107_BA_H_GLOBAL.out deleted file mode 100644 index 68214208cd8f3b05a815eb3d7692cc3b515aaab7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_107_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.680221951007843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_107_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_107_BA_M_GLOBAL.out deleted file mode 100644 index cf26f0aec72370b203b1b993ca24e4565b5de5e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_107_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -107_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7128657619158427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_108_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_108_BA_D_GLOBAL.out deleted file mode 100644 index df73a986afa63b56bd2fd675a5542f675fc7d89c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_108_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8674238721529642 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_108_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_108_BA_H_GLOBAL.out deleted file mode 100644 index aeddb980503c42c0d8500d9e7eb3e165b5af3d95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_108_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.070766254266103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_108_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_108_BA_M_GLOBAL.out deleted file mode 100644 index 4706c5c79c8dffce8266d9b9b807d383ce4dc703..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_108_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -108_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8205613573392232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_109_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_109_BA_D_GLOBAL.out deleted file mode 100644 index 868d9e59483861ad906aca2b414c4ea0c750f4da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_109_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6070633729298909 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_109_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_109_BA_H_GLOBAL.out deleted file mode 100644 index 6c07c1903d2cf93dc3efcd2b2fea131fc4589a86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_109_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0230878869692486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_109_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_109_BA_M_GLOBAL.out deleted file mode 100644 index 4b1aa22fea4976dd752c8ab07e8e0e2af731ca64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_109_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3873063564300536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_10_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_10_BA_D_GLOBAL.out deleted file mode 100644 index e773ec9da6f5201a6ec0682f7dd4c771cbb4bc14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_10_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -10_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5356890002886454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_10_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_10_BA_H_GLOBAL.out deleted file mode 100644 index 6df6c1cf24015d9ac891d725d61ab1b8b976b31c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_10_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -10_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6016263484954834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_10_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_10_BA_M_GLOBAL.out deleted file mode 100644 index cd2fcdfb5480881d6b7380437e69899e2832111c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_10_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -10_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6751234491666158 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_110_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_110_BA_D_GLOBAL.out deleted file mode 100644 index a5579df1b9600d268a587a66c4effbb0c73637f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_110_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.731693116823832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_110_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_110_BA_H_GLOBAL.out deleted file mode 100644 index 3479726bce2a4c822ec09543d70e8030e425ad41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_110_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.033534753322601 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_110_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_110_BA_M_GLOBAL.out deleted file mode 100644 index 9e5cacd3eefe8befba65a10b5c2de23077b0704c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_110_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8733558336893718 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_113_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_113_BA_D_GLOBAL.out deleted file mode 100644 index e1abc5c12269c73aceffd0996fd2bbdd2c2c5f12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_113_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8165404160817464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_113_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_113_BA_H_GLOBAL.out deleted file mode 100644 index 4556c1f04cfae223d4f5d7cb07e5ac094137ebff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_113_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0072349150975546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_113_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_113_BA_M_GLOBAL.out deleted file mode 100644 index 79cb4c9b12ebecd78e4cac9d27d902d03f3cac24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_113_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8454263369242351 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_117_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_117_BA_D_GLOBAL.out deleted file mode 100644 index 0420546d90e677fc63d203f9bb68736be42ef168..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_117_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -117_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12937580744425456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_117_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_117_BA_H_GLOBAL.out deleted file mode 100644 index ebd195608f894d8d7ffed6780ddae7d7cb383922..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_117_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -117_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.29544410308202107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_117_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_117_BA_M_GLOBAL.out deleted file mode 100644 index c9b9bc116847a91accb890aeca2f4f40174410de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_117_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -117_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11997882922490438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_118_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_118_BA_D_GLOBAL.out deleted file mode 100644 index 540316c2e9b4e373fd80bf641b9369abe2049047..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_118_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2199375987052918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_118_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_118_BA_H_GLOBAL.out deleted file mode 100644 index 66f7d641d5c207f13a28d94bb86d74b8ad14d71c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_118_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4066292643547058 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_118_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_118_BA_M_GLOBAL.out deleted file mode 100644 index 91cc83a09f142379231613503edb3b9b4cb03c4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_118_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -118_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9585291783014933 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_119_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_119_BA_D_GLOBAL.out deleted file mode 100644 index c03fab88c3552d30c803b91e7d4385c321f737a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_119_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8018316666285197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_119_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_119_BA_H_GLOBAL.out deleted file mode 100644 index 61b68bc9956ed28876b74048cdce20504c8bdf6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_119_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0486947258313495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_119_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_119_BA_M_GLOBAL.out deleted file mode 100644 index 7c50a0050c03ed31abf6c1f3e2cc56e2cea796ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_119_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8384607076644898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_11_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_11_BA_D_GLOBAL.out deleted file mode 100644 index 43af345f2e513fe1736a68e0137be87d1bfcd5c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_11_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4022477149963379 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_11_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_11_BA_H_GLOBAL.out deleted file mode 100644 index 642711de0db43dd3d421462eb124a1c933362111..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_11_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7921762108802796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_11_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_11_BA_M_GLOBAL.out deleted file mode 100644 index 0af457d655acaf324b4bc26860bc4f7ef4c81b79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_11_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3846922993659973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_120_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_120_BA_D_GLOBAL.out deleted file mode 100644 index 4d650c1f4ceac87688506583db79cd38b8715f73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_120_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -120_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2012327512105305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_120_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_120_BA_H_GLOBAL.out deleted file mode 100644 index 08cbb33cc98657197140409c98b60c665615746f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_120_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -120_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4178807854652404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_120_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_120_BA_M_GLOBAL.out deleted file mode 100644 index 6a038c6fc375ac6d482bda633ba43e5019dad41c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_120_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -120_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6287057677904765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_12_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_12_BA_D_GLOBAL.out deleted file mode 100644 index 8c1021ac86c89173514990130e34436e55158bd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_12_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -12_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9181715369224548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_12_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_12_BA_H_GLOBAL.out deleted file mode 100644 index 6bff20ce7497827b98b5c8ed3bf3c9bed134eb13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_12_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -12_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9096839348475139 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_12_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_12_BA_M_GLOBAL.out deleted file mode 100644 index bee898521aeac013ac66a4fbe48eba1fe13fe110..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_12_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -12_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8168280283610027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_13_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_13_BA_D_GLOBAL.out deleted file mode 100644 index 04a5f20999485e1c77b88034c1ea166c1c84f289..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_13_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3643823146820067 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_13_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_13_BA_H_GLOBAL.out deleted file mode 100644 index 862aa53340d3a093a29c03b4bf755b04c50accf9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_13_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.829521648089091 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_13_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_13_BA_M_GLOBAL.out deleted file mode 100644 index 22dcebdbe1a33c49d285ccd139a89a02cf8f59e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_13_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.584594742457072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_15_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_15_BA_D_GLOBAL.out deleted file mode 100644 index e3071645afd2e10fb96dd9d42bc4b5f043ad039c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_15_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8783792893091837 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_15_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_15_BA_H_GLOBAL.out deleted file mode 100644 index 8b19b12674f7a0b4f749b0b88c0cbe02aa849d22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_15_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6291207234064738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_15_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_15_BA_M_GLOBAL.out deleted file mode 100644 index 4ab94b469a7d7e8e67467988cbefff624ee20b08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_15_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3829313556353251 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_17_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_17_BA_D_GLOBAL.out deleted file mode 100644 index a1dcc38b7a69e68e4cf7274ed65e575f83baa49f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_17_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -17_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8192596435546875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_17_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_17_BA_H_GLOBAL.out deleted file mode 100644 index e1a74bc1c9f228d62ca42062444b26b5e6e647f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_17_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -17_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5412227233250937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_17_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_17_BA_M_GLOBAL.out deleted file mode 100644 index ddfa137753c01dfeb37c1429be1d1270913cb4d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_17_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -17_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5368059794108073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_18_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_18_BA_D_GLOBAL.out deleted file mode 100644 index ee7324586872a2d17ad9046185195c503c1bafd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_18_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7807522853215535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_18_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_18_BA_H_GLOBAL.out deleted file mode 100644 index 39a01a0278774ba5bde63bf177a701d3640a7790..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_18_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9876072684923808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_18_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_18_BA_M_GLOBAL.out deleted file mode 100644 index 837c9d5a0af6fe5020176cba4ae576267e263370..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_18_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -18_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7681555628776551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_1_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_1_BA_D_GLOBAL.out deleted file mode 100644 index 9b255e31d1d7d4df1f2e202f99e0730d134c7050..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_1_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9325926740964253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_1_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_1_BA_H_GLOBAL.out deleted file mode 100644 index 2b1ddc8e682be3bfb4c464d445376de36ca52af4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_1_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2767388184865316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_1_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_1_BA_M_GLOBAL.out deleted file mode 100644 index f2dc862481e60ad59c15d3acd5a9bc1e482650ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_1_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -1_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5484521746635437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_20_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_20_BA_D_GLOBAL.out deleted file mode 100644 index 5278f78e99e1e1ac77fee9f34967c40717cf3d36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_20_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0458465655644735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_20_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_20_BA_H_GLOBAL.out deleted file mode 100644 index 074f3dea4afe8769326c091ea1a2ffe58ae2fe91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_20_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.174534591039022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_20_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_20_BA_M_GLOBAL.out deleted file mode 100644 index 5d8a5e15bce7aacae212fcd6d45793cc586c0799..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_20_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.512371317545573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_21_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_21_BA_D_GLOBAL.out deleted file mode 100644 index 50fcff2bbbcdb9cc9901cd3424c325e38d77fe60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_21_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.659880785147349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_21_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_21_BA_H_GLOBAL.out deleted file mode 100644 index 528a4bc098b76995648e0aa00a5efe82ead32617..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_21_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7871599952379863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_21_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_21_BA_M_GLOBAL.out deleted file mode 100644 index 96e29bd3ce079a3f88a3489e4990a98e6d8a8c61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_21_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4903035124142965 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_22_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_22_BA_D_GLOBAL.out deleted file mode 100644 index 7add0b686165f3da4876d443aae5eb566b560599..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_22_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0174302021662394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_22_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_22_BA_H_GLOBAL.out deleted file mode 100644 index b930c9097e5c56944f81e6585d2c2813b5f47c7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_22_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.62847638130188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_22_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_22_BA_M_GLOBAL.out deleted file mode 100644 index 9c267d124c283f8f3f83f017ed67d631c13aed5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_22_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.184636163711548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_23_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_23_BA_D_GLOBAL.out deleted file mode 100644 index 55eea5fa9bf3304d88e3946852c8fa43a8ab3667..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_23_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.680492118994395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_23_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_23_BA_H_GLOBAL.out deleted file mode 100644 index 0ab25ef61fb9e23e94f17c73550b087a86c4dbce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_23_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.010934901237488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_23_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_23_BA_M_GLOBAL.out deleted file mode 100644 index c575181bc02f5cd51ad550fe3c44575b67b1694f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_23_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -23_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3410070578257245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_24_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_24_BA_D_GLOBAL.out deleted file mode 100644 index c73f8e2bf5ac7bc0c88dd00a63f37214f6137136..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_24_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3948242942492167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_24_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_24_BA_H_GLOBAL.out deleted file mode 100644 index 4f467f1a0cb183a5fd96759e17b3a432208fa96f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_24_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.43183050950368246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_24_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_24_BA_M_GLOBAL.out deleted file mode 100644 index f40fe83223a8d91200262cf504b5b0c025cebb8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_24_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -24_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.548387062549591 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_26_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_26_BA_D_GLOBAL.out deleted file mode 100644 index a9b3c5445d50c97a6f7a492d89cb398af66ea744..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_26_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8677993774414062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_26_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_26_BA_H_GLOBAL.out deleted file mode 100644 index 66abdd2fa5c5db768091186fe37f3f45df67ad63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_26_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8123102982838949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_26_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_26_BA_M_GLOBAL.out deleted file mode 100644 index 78e4c4c08d4750175da809630ef88d93a164fb71..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_26_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -26_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.080770528316498 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_271_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_271_BA_D_GLOBAL.out deleted file mode 100644 index 9a4b9b73df62d24e2e1a451d1980d5515a2857c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_271_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7768942713737488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_271_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_271_BA_H_GLOBAL.out deleted file mode 100644 index c5237b97a2c8a5671348655f8e8c65badb27aeb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_271_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6292561690012614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_271_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_271_BA_M_GLOBAL.out deleted file mode 100644 index 36e189fea1ee7a01250dde966e65b99238d710e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_271_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -271_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7561679601669311 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_273_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_273_BA_D_GLOBAL.out deleted file mode 100644 index 979c278d716727a8a520ba5a00253e112fdb820b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_273_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -273_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.48783597548802693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_273_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_273_BA_H_GLOBAL.out deleted file mode 100644 index 30968559c0e8b7ba71a0033740722b250f89b0ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_273_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -273_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1344332814216613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_273_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_273_BA_M_GLOBAL.out deleted file mode 100644 index a113984052eefd238e57c18d18310b7a5b5c8cb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_273_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -273_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9467002073923747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_274_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_274_BA_D_GLOBAL.out deleted file mode 100644 index 1648373ca797f24c2f5e34369865886386e62f48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_274_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2194287419319152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_274_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_274_BA_H_GLOBAL.out deleted file mode 100644 index d4df1bf91d7259cf61ff899a80854481a8c72292..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_274_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9655389110247294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_274_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_274_BA_M_GLOBAL.out deleted file mode 100644 index 299e2c9088efe53a739ea8e19c201ef5786d5e2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_274_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -274_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0434882124265035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_278_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_278_BA_D_GLOBAL.out deleted file mode 100644 index 73edc02999fc229cf31e80cc9814d68eb6aa5a25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_278_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6485832333564758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_278_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_278_BA_H_GLOBAL.out deleted file mode 100644 index f45c87541f4dbb1c977be62e1920da3435e3cf4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_278_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8699728171030681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_278_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_278_BA_M_GLOBAL.out deleted file mode 100644 index bab10e1928e648b8153ab87cbe5f86873dad702c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_278_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2309497674306233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_279_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_279_BA_D_GLOBAL.out deleted file mode 100644 index 9514c5618957eb54e6f8c19a7192201385818482..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_279_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1205097397168478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_279_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_279_BA_H_GLOBAL.out deleted file mode 100644 index 4fb18f8b2245307c146caa3e8e61540114866118..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_279_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3543003042538961 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_279_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_279_BA_M_GLOBAL.out deleted file mode 100644 index 384cd2409301654400b42d396231443693826cba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_279_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -279_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8570718089739482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_285_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_285_BA_D_GLOBAL.out deleted file mode 100644 index 59a62f975c9b6201533f9ad13b85143d006642ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_285_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -285_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.16058687369028726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_285_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_285_BA_H_GLOBAL.out deleted file mode 100644 index ade62977d7dae00db549eca40156b16e263df90e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_285_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -285_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31687671343485513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_285_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_285_BA_M_GLOBAL.out deleted file mode 100644 index 1689e8b9dba20c7dcd5daf587859b94394c403f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_285_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -285_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11115837494532267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_286_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_286_BA_D_GLOBAL.out deleted file mode 100644 index 2cd89d3cd84d27d63cce3534dd5db68edf642cc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_286_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -286_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17972362438837688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_286_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_286_BA_H_GLOBAL.out deleted file mode 100644 index 39dab22f454fd1fa584f2e8420792691148c4964..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_286_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -286_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3568519870440165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_286_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_286_BA_M_GLOBAL.out deleted file mode 100644 index e47f8ffa3d2a53db5391fbc26288903849c96617..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_286_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -286_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12409037748972575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_288_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_288_BA_D_GLOBAL.out deleted file mode 100644 index 41d756eff5d1b6013825a7b4ff26cd166e3d1619..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_288_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -288_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.30557564496994016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_288_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_288_BA_H_GLOBAL.out deleted file mode 100644 index 77274ebaf5ee8f7291952a48537574956327809f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_288_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -288_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8475211064020792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_288_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_288_BA_M_GLOBAL.out deleted file mode 100644 index 5b9a646d0f4faf3c890606f183b7781e6d78b3d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_288_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -288_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5459558645884196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_289_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_289_BA_D_GLOBAL.out deleted file mode 100644 index 0e6ccb8ce8ef75435218af4b41d7f43352e8a011..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_289_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -289_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0675408204396566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_289_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_289_BA_M_GLOBAL.out deleted file mode 100644 index 5dd447825faf7529eccdbdbfe09be9f5d794c44d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_289_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -289_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6842629114786785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_28_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_28_BA_D_GLOBAL.out deleted file mode 100644 index a8fb8a70942e7e29dc13e2302b1bfce64a386b96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_28_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7472253839174906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_28_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_28_BA_H_GLOBAL.out deleted file mode 100644 index e437ec0a77cb4105f332e697f187d9d1c0ad5b17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_28_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5320903499921164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_28_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_28_BA_M_GLOBAL.out deleted file mode 100644 index 6eeaead190972767dc3c3406cd9c4b8c89d7f4db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_28_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6905691027641296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_290_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_290_BA_D_GLOBAL.out deleted file mode 100644 index d1ce7c7d7fae7c3d6d05cf33cca42f7cb80a8cff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_290_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -290_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4392715334892272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_290_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_290_BA_M_GLOBAL.out deleted file mode 100644 index d11532d6e8bd67a8fe18bf2ab259b3c4cf9fc702..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_290_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -290_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.185837177435557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_291_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_291_BA_D_GLOBAL.out deleted file mode 100644 index beae7424f6500dd5e02443eae4ebc395e1c90c4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_291_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -291_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7431122541427613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_291_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_291_BA_M_GLOBAL.out deleted file mode 100644 index a52ca1738e9b2c38d58a71b5d461247ff3a92892..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_291_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -291_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8389420588811238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_292_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_292_BA_D_GLOBAL.out deleted file mode 100644 index 94cb9cc11e3461c18db53d313fdbc3c41e67c8c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_292_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -292_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6745351155598958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_292_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_292_BA_M_GLOBAL.out deleted file mode 100644 index 43130d5c596aed1f123bc436e1ff9aab50325632..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_292_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -292_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.719276213645935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_293_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_293_BA_D_GLOBAL.out deleted file mode 100644 index 9460e870c1a772a8dcc738b47b43d08140545360..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_293_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -293_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9243991692860921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_293_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_293_BA_M_GLOBAL.out deleted file mode 100644 index 856365dad916dd1ac20a16f0bed1722c2368a711..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_293_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -293_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8944473743438721 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_294_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_294_BA_D_GLOBAL.out deleted file mode 100644 index b0e53c1a9a1a29d106284c0c1f4e1528e3978274..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_294_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -294_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7592887043952943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_294_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_294_BA_M_GLOBAL.out deleted file mode 100644 index 87c3c833b711dd870a34be32acc1fda77e0f2c66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_294_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -294_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9867387453715006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_295_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_295_BA_D_GLOBAL.out deleted file mode 100644 index 8a1e7068b06aaafecd6562d94b1d952ac7fb58dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_295_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -295_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7482027212778727 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_295_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_295_BA_M_GLOBAL.out deleted file mode 100644 index efef0499fc21525c84587d59a8c5f96362a19f95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_295_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -295_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3266731897989909 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_296_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_296_BA_D_GLOBAL.out deleted file mode 100644 index cc7e93289a6e11a1c9a8d974b114f6d7a9bc4d0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_296_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -296_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8471570014953613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_296_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_296_BA_M_GLOBAL.out deleted file mode 100644 index 9a9da57a0943f4d24ab0ffc5deda62cdaf683b29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_296_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -296_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6581176916758219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_297_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_297_BA_D_GLOBAL.out deleted file mode 100644 index cab46f563e1aa1498511accfcf77ac70050463ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_297_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -297_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3911297996838888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_297_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_297_BA_M_GLOBAL.out deleted file mode 100644 index d90e6ab9f0607fc749c70d1523a7292df5c7ee28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_297_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -297_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6832234462102255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_298_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_298_BA_D_GLOBAL.out deleted file mode 100644 index b596bfffd09fc19ef619505ab8caf114bbe2a39e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_298_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -298_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4784194668134054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_298_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_298_BA_M_GLOBAL.out deleted file mode 100644 index 7b71dac93c8d12e7e31cb9792a2219e2d2724ac5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_298_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -298_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3540139158566793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_299_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_299_BA_D_GLOBAL.out deleted file mode 100644 index adaa0b656ea7ab4e4348fb8e3ab7ff5316477193..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_299_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -299_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4251583377520243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_299_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_299_BA_M_GLOBAL.out deleted file mode 100644 index 71526fb970e2da3438ac0f167a397a04962f8db1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_299_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -299_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8394371469815572 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_2_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_2_BA_D_GLOBAL.out deleted file mode 100644 index 0d32483fda1887092f997b671e2d17fba9cfeb3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_2_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2286474227905273 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_2_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_2_BA_H_GLOBAL.out deleted file mode 100644 index cea9978d57d9b87f104e6d43b24212a3b3205972..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_2_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8324123978614807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_2_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_2_BA_M_GLOBAL.out deleted file mode 100644 index 06d3b2d83c29c0b5cd50eced9cdea977aed01436..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_2_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -2_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9840551376342773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_300_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_300_BA_D_GLOBAL.out deleted file mode 100644 index 6c9160f3510991e9000ba2d966d176de2bef6eab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_300_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -300_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1936892747879029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_300_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_300_BA_M_GLOBAL.out deleted file mode 100644 index 040af0fe3cc8abf56a69147ac76c0b94a9b9bf08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_300_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -300_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6026847600936889 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_301_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_301_BA_D_GLOBAL.out deleted file mode 100644 index 0ea56367c3df3bfc0df431658c0147f3406817b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_301_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -301_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4590145349502563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_301_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_301_BA_M_GLOBAL.out deleted file mode 100644 index 7058305a4d47bc24548c7e9e5271922037b9225c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_301_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -301_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8278611302375793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_302_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_302_BA_D_GLOBAL.out deleted file mode 100644 index 841b238f2a2fec46119e3221943f3ecc66893ab1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_302_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -302_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5544761141141257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_302_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_302_BA_M_GLOBAL.out deleted file mode 100644 index 34943662bb083b86623940fc5c596b12d7ec45e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_302_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -302_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6976240714391072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_303_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_303_BA_D_GLOBAL.out deleted file mode 100644 index 0bdfafe3b7c9de66cdda0c7e8250e5cfefc274e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_303_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -303_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3293991009394328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_303_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_303_BA_M_GLOBAL.out deleted file mode 100644 index cfa374ff979297553c26b42f1be3c1c2c097f111..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_303_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -303_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7643111666043599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_304_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_304_BA_D_GLOBAL.out deleted file mode 100644 index decac9561139535fe7663d10d0a7465498156586..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_304_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -304_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.817231051127116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_304_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_304_BA_M_GLOBAL.out deleted file mode 100644 index cf28aad324b815aff7ac596a64a091e560829970..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_304_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -304_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9747682372728984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_305_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_305_BA_D_GLOBAL.out deleted file mode 100644 index 8901956665defc2dc97b72b48133906b93ca0144..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_305_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -305_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0705085794130962 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_305_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_305_BA_M_GLOBAL.out deleted file mode 100644 index 6ac856708d758d180a8f470563b6b49cb12056e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_305_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -305_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.796299982070923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_306_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_306_BA_D_GLOBAL.out deleted file mode 100644 index e93f5429b204bfb553bf5c5d8d36545cc857d4b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_306_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -306_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5039607485135396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_306_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_306_BA_M_GLOBAL.out deleted file mode 100644 index a43fb494490bc5ed22bed3de7da3e284e507181b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_306_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -306_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9116375962893168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_307_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_307_BA_D_GLOBAL.out deleted file mode 100644 index a2557549f8cfb0ac68c5a68ea9514503f15c173a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_307_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -307_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6991300106048584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_307_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_307_BA_M_GLOBAL.out deleted file mode 100644 index 77b5bd7a884afd0c7e4e7362fcda36196574e292..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_307_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -307_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9354411562283833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_308_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_308_BA_D_GLOBAL.out deleted file mode 100644 index a908679333c96b58abb8c70e16428f8b669c21da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_308_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -308_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4946839531262717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_308_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_308_BA_M_GLOBAL.out deleted file mode 100644 index d727e90c967bc6c587e84e9e122793b12b145e62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_308_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -308_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7959566712379456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_309_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_309_BA_D_GLOBAL.out deleted file mode 100644 index 107c7a8fd6ea4418d9b820cb42beb767d2ebeae3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_309_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -309_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9900568842887878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_309_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_309_BA_M_GLOBAL.out deleted file mode 100644 index 234eeb2e876c694511eb04b60bf090c26fa9fa66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_309_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -309_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.697063151995341 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_30_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_30_BA_D_GLOBAL.out deleted file mode 100644 index 899bb46a12c12d47ac21b94e68756e4c8a693ef1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_30_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2981165806452433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_30_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_30_BA_H_GLOBAL.out deleted file mode 100644 index 172568ca239b6de227cb505dec099c956fcd3304..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_30_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9728877266248068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_30_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_30_BA_M_GLOBAL.out deleted file mode 100644 index a5c40b2f6fec68cce63c4016f53ec85f9f4a93b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_30_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.289818894863129 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_310_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_310_BA_D_GLOBAL.out deleted file mode 100644 index 5ecfea98ceee9d3fff4624fd7cf067ae1a52e0f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_310_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -310_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9809104641278584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_310_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_310_BA_M_GLOBAL.out deleted file mode 100644 index a14323c4fd42dc65e990975853082d54e5d15522..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_310_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -310_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7157987038294473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_311_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_311_BA_D_GLOBAL.out deleted file mode 100644 index 70b56f5ad86c9d3a119ac223924a27e20b7a706a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_311_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -311_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8995187362035115 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_311_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_311_BA_M_GLOBAL.out deleted file mode 100644 index b26dc1025eee2b40874c1b5fdf2ee8946d4673b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_311_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -311_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7596339464187623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_312_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_312_BA_D_GLOBAL.out deleted file mode 100644 index e2b98a7d6f1a24308dc7e9d61989f9ce9a0c16f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_312_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -312_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0518551230430604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_312_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_312_BA_M_GLOBAL.out deleted file mode 100644 index 84885c645d062daa3627c56248ab3f55098f2a38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_312_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -312_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0724911570549012 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_313_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_313_BA_D_GLOBAL.out deleted file mode 100644 index ad54b933a7aa09ce1a2f216ac7f4bde053ce6a4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_313_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -313_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6478803515434265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_313_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_313_BA_M_GLOBAL.out deleted file mode 100644 index 24a28e782ab12c9b29189d6c6273b6803aff7640..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_313_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -313_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0791839043299356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_314_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_314_BA_D_GLOBAL.out deleted file mode 100644 index 595b43b5dc1ebd8e72d9e0ed830ea599d85db9a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_314_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -314_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0235190590222676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_314_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_314_BA_M_GLOBAL.out deleted file mode 100644 index 85adda09c40cbef5763f4c32cc7fc2f9e067c2ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_314_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -314_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9993785301844279 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_315_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_315_BA_D_GLOBAL.out deleted file mode 100644 index 71d734d1449f684321f38ddf996b76ed70cc1779..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_315_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -315_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9952187458674113 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_315_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_315_BA_M_GLOBAL.out deleted file mode 100644 index ff21fdd8eeed39bd2892fa8e93613f5a172d239f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_315_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -315_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6747015873591105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_316_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_316_BA_D_GLOBAL.out deleted file mode 100644 index 59e9fc466e875869188d58f2c485dc7875a9b8a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_316_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -316_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.84574982325236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_316_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_316_BA_M_GLOBAL.out deleted file mode 100644 index 3c08d0ea9f2eccf0d42e5618955318eb4c1f7ecc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_316_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -316_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5890159130096435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_317_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_317_BA_D_GLOBAL.out deleted file mode 100644 index f643370d1f1c9b3e8ba53c3171f26c8d98228c84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_317_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -317_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0581246654192606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_317_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_317_BA_M_GLOBAL.out deleted file mode 100644 index bcc5e514f078439107762f1e473135f3e11253b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_317_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -317_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1247698346773782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_318_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_318_BA_D_GLOBAL.out deleted file mode 100644 index 428535ab90712580455ea0ae31a77ba3eb096fbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_318_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -318_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8000815272331238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_318_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_318_BA_M_GLOBAL.out deleted file mode 100644 index 26e85c15a7163001450733058867eee1b37fa1e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_318_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -318_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5530824621518453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_319_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_319_BA_D_GLOBAL.out deleted file mode 100644 index 1bd50050eb5e61f820b9373d89d4d0bb51907f8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_319_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -319_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1926428914070129 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_319_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_319_BA_M_GLOBAL.out deleted file mode 100644 index 6304d9809bb2d0a1e25131426ddfa3e2ee6fe85c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_319_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -319_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7864571253458659 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_320_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_320_BA_D_GLOBAL.out deleted file mode 100644 index 464e9967dfe73cab084ef5f96eacd98e7789f883..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_320_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -320_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9547946373621623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_320_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_320_BA_M_GLOBAL.out deleted file mode 100644 index 46e497f08df54613a49090fc9aaab8b4a55fbced..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_320_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -320_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9784216284751892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_321_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_321_BA_D_GLOBAL.out deleted file mode 100644 index e6a7f02e533a9f9e099ad140a526f69ffcfc7f7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_321_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -321_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0608474334081015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_321_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_321_BA_M_GLOBAL.out deleted file mode 100644 index d5f0c537ed28f31a6c5492be436b743cffd81234..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_321_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -321_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9087985396385192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_322_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_322_BA_D_GLOBAL.out deleted file mode 100644 index 1d1b54fa186c7dfe978c0be3cc6323d2de35326b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_322_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -322_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8625123778978983 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_322_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_322_BA_M_GLOBAL.out deleted file mode 100644 index d8ee3345312fdf26b5fc5f4669a96b51b7288b3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_322_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -322_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8066531459490458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_323_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_323_BA_D_GLOBAL.out deleted file mode 100644 index e648458bc175676b08d9a45ffafea0fa7cfbe653..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_323_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -323_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.028501311937968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_323_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_323_BA_M_GLOBAL.out deleted file mode 100644 index c4b7dea5db74e3743b8d6e2bac4dfbea87eeec22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_323_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -323_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.545802895228068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_325_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_325_BA_D_GLOBAL.out deleted file mode 100644 index 9f4442f9a3a3f026ba724e6c12758acb4e26c5b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_325_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.275343692302704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_325_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_325_BA_H_GLOBAL.out deleted file mode 100644 index 7234e8273cdf83ec1b2302582c516f3b092bf950..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_325_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8856186985969543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_325_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_325_BA_M_GLOBAL.out deleted file mode 100644 index c60fcea26d8096464c5e02a3b438b237608533e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_325_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.465118145942688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_327_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_327_BA_D_GLOBAL.out deleted file mode 100644 index 01c2f68cbfb5c6761d3b76a0d88d8f90a40a231a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_327_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.359666109085083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_327_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_327_BA_M_GLOBAL.out deleted file mode 100644 index 4dc97f004f8fbd7652331dbfc258fbf7de0893c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_327_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -327_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8516423304875692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_328_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_328_BA_D_GLOBAL.out deleted file mode 100644 index cfef0a4aa8d2d6d7e9d776111977ca413aed6033..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_328_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -328_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3665901939074198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_328_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_328_BA_M_GLOBAL.out deleted file mode 100644 index f07eae61eef8efea18bb56af2aec6449d6d97e41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_328_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -328_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3750787576039632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_329_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_329_BA_D_GLOBAL.out deleted file mode 100644 index 7e77896a6f2f011c1a5143b60b4b92f0936f9269..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_329_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -329_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5907637397448222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_329_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_329_BA_H_GLOBAL.out deleted file mode 100644 index d4677435401c5a204f40199abef68863a56dad9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_329_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -329_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.300395147005717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_329_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_329_BA_M_GLOBAL.out deleted file mode 100644 index ec7d31aab1c2cb4249a9e0fe786122898a568078..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_329_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -329_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0706759770711263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_32_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_32_BA_D_GLOBAL.out deleted file mode 100644 index d67a7063598e8bb614074fa92faf7a3687109f50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_32_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6303360184033712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_32_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_32_BA_H_GLOBAL.out deleted file mode 100644 index d55b6455719d23e25a75291924ba0fbc3a42d0df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_32_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5073102792104085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_32_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_32_BA_M_GLOBAL.out deleted file mode 100644 index 0f7f1bed82c19774e78e4907958558331529b5b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_32_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6129212339719137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_331_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_331_BA_D_GLOBAL.out deleted file mode 100644 index 4cb4c9186cf29131e0602cb1c856492de2e85a34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_331_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.12154643535614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_331_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_331_BA_H_GLOBAL.out deleted file mode 100644 index dd096a466a3ec5f1d4d7ebe78eb17d1a71223698..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_331_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.092854110399882 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_331_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_331_BA_M_GLOBAL.out deleted file mode 100644 index 15a51387ffa74cec6fc941c19ec9f213189e15a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_331_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.193384357293447 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_332_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_332_BA_D_GLOBAL.out deleted file mode 100644 index a8ba4a1d87b80c756cb4e483fbf25005a9d6a042..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_332_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3990472435951233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_332_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_332_BA_H_GLOBAL.out deleted file mode 100644 index 8dc3116d1489927800182f999395d4cbc36c86dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_332_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6499671697616577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_332_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_332_BA_M_GLOBAL.out deleted file mode 100644 index 2c778071eecb9de7dd0aa6e9d605dcc7cab52954..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_332_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7605741739273071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_334_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_334_BA_D_GLOBAL.out deleted file mode 100644 index c1e1acee67b1f1a4f92e128e758a0a7d837067a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_334_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -334_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0658582369486491 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_334_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_334_BA_H_GLOBAL.out deleted file mode 100644 index 48b1405de549873058500ed405c7868ee0fcad71..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_334_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -334_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7023699800173442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_334_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_334_BA_M_GLOBAL.out deleted file mode 100644 index 69a89ee6de0040ef9aa776d8564d63db751d0dd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_334_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -334_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3850809534390767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_335_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_335_BA_D_GLOBAL.out deleted file mode 100644 index 104e052de9b290da9c19a44e045b63b59a66ed50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_335_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2795955022176107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_335_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_335_BA_M_GLOBAL.out deleted file mode 100644 index fef9909a02399df4703056528ae52b90e9add721..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_335_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -335_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2545760909716288 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_336_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_336_BA_D_GLOBAL.out deleted file mode 100644 index 75c53f0eb389ed37478d6443a9ede148d31fc63f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_336_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.156999377409617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_336_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_336_BA_H_GLOBAL.out deleted file mode 100644 index 47533240c10117824bf5f1dfac598e2f61b6cd47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_336_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1832303921381633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_336_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_336_BA_M_GLOBAL.out deleted file mode 100644 index 819e2e41dbdfa98c1ba2838393d3aaf49778b1b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_336_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.643886677424113 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_337_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_337_BA_D_GLOBAL.out deleted file mode 100644 index c2e4655f6e136891d3a2998dcada27f2585148a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_337_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1465842405954996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_337_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_337_BA_H_GLOBAL.out deleted file mode 100644 index 6fffae27a3601123960d9943b0edd36884417858..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_337_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8977800567944845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_337_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_337_BA_M_GLOBAL.out deleted file mode 100644 index fe5a6880eca7b1d72cec55d2616d7cae5d048357..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_337_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9395207166671753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_339_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_339_BA_D_GLOBAL.out deleted file mode 100644 index 6143741db32f127b797629dab6d8c5322a336bbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_339_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6698218385378519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_339_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_339_BA_M_GLOBAL.out deleted file mode 100644 index 6d4e965eb278126d3561cec76d5110f5df4eccd7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_339_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.19270160992940266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_340_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_340_BA_D_GLOBAL.out deleted file mode 100644 index 7d3252b282eaf29228d5f8d8204401d5672c5b2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_340_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2093366980552673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_340_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_340_BA_H_GLOBAL.out deleted file mode 100644 index 84e55a1f5f57a0301a3df721adcda1286cf09ca4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_340_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3383447567621867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_340_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_340_BA_M_GLOBAL.out deleted file mode 100644 index cada8131af4f2b858c1ff01b8ec86b7614843656..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_340_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6434543649355571 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_341_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_341_BA_D_GLOBAL.out deleted file mode 100644 index 7cfdbbe596acc2c6cc7c6bf2fd285f289c4cd2af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_341_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -341_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6964279770851135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_341_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_341_BA_H_GLOBAL.out deleted file mode 100644 index 925440ac6c6c45563bdba7118f4d2511f72a9f98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_341_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -341_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.896427039305369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_341_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_341_BA_M_GLOBAL.out deleted file mode 100644 index f4052ae806d9b0616db354e14f55f589fcb36919..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_341_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -341_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3296268502871195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_346_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_346_BA_D_GLOBAL.out deleted file mode 100644 index 9b523c5f2d9bfe2361a18bbb5c30df060517d8b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_346_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -346_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3560666561126709 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_346_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_346_BA_M_GLOBAL.out deleted file mode 100644 index bcf0d02f67ed9f4fefec344310a05f2e18d2d821..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_346_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -346_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.310727592309316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_34_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_34_BA_D_GLOBAL.out deleted file mode 100644 index dab80d6d01894a83e236d116491a9eea9c1dae20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_34_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6168784340222676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_34_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_34_BA_H_GLOBAL.out deleted file mode 100644 index 71c14bf087000f5cd3a96fb9490ebdf334b04a70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_34_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.294536860783895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_34_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_34_BA_M_GLOBAL.out deleted file mode 100644 index 686b5fa874317cf95d23ce259779cd96367643b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_34_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5361969272295634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_350_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_350_BA_D_GLOBAL.out deleted file mode 100644 index 331039b3a1a3044f857c4955fb5575384345358a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_350_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -350_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4103034138679504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_350_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_350_BA_H_GLOBAL.out deleted file mode 100644 index 629bcdcb5941f07725eacf9547aa2686cfeb44aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_350_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -350_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6615962545077005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_350_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_350_BA_M_GLOBAL.out deleted file mode 100644 index 18ca70c0d03d4c0fe3068bbcb7097fb7e257cbe3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_350_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -350_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4738465110460917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_351_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_351_BA_D_GLOBAL.out deleted file mode 100644 index 8575a13f57864271dec62bf99afb6a66cc2622dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_351_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -351_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0082008798917135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_351_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_351_BA_H_GLOBAL.out deleted file mode 100644 index 57ebe764bfce6310f10cf318fc758680959da281..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_351_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -351_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.135000737508138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_351_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_351_BA_M_GLOBAL.out deleted file mode 100644 index 7f92393bc50403b666b3f3cfa9fd67d6a0ee9dd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_351_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -351_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9146863182385763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_352_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_352_BA_D_GLOBAL.out deleted file mode 100644 index 7a155cd6c5cea2afe4b092054c143787df24ae06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_352_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6512611985206602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_352_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_352_BA_H_GLOBAL.out deleted file mode 100644 index cb1000873ffd74b11cd5ffe893b345fb0a212b69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_352_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9566990971565246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_352_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_352_BA_M_GLOBAL.out deleted file mode 100644 index 10d4d65ad952e90d988b60b66b8f33601d4bd821..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_352_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7354761282602946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_354_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_354_BA_D_GLOBAL.out deleted file mode 100644 index 49e31f5fb5094eb64295c76d4150299452a9b90f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_354_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4774322589238484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_354_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_354_BA_H_GLOBAL.out deleted file mode 100644 index d38e1b9d5700e8f48ef1b55dcb9945343b40d392..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_354_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7133477012316387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_354_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_354_BA_M_GLOBAL.out deleted file mode 100644 index 7c767bc5b5b878677475f98a513a46adc083474e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_354_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -354_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4521671414375303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_355_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_355_BA_D_GLOBAL.out deleted file mode 100644 index 63367c6a9af5c8a39465b59122c35df42d4bbae5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_355_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -355_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20578191677729288 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_355_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_355_BA_H_GLOBAL.out deleted file mode 100644 index d81ed9ef41bba80053e85633b352056e32498af0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_355_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -355_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4807145635286967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_355_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_355_BA_M_GLOBAL.out deleted file mode 100644 index e23431de64666932d3bc50af3749c546e0a64afc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_355_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -355_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.25276379187901815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_356_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_356_BA_D_GLOBAL.out deleted file mode 100644 index 9f79f902e2f3ebb8393ad9ad77e9e8b026620db6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_356_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4791431943575541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_356_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_356_BA_H_GLOBAL.out deleted file mode 100644 index 6be8de1cad980c851a9f49a02709e81ce4551551..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_356_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8275317986806233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_356_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_356_BA_M_GLOBAL.out deleted file mode 100644 index e4d0d444b6cd8f7b5b0613c9b47d5c7b3597d1b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_356_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3221013267834981 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_357_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_357_BA_D_GLOBAL.out deleted file mode 100644 index 233f1c2b1471939768eab053ab69614a06a67600..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_357_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.39342050155003866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_357_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_357_BA_H_GLOBAL.out deleted file mode 100644 index ad0d903ef6e17ed24f813980d1c812a3d4e7771a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_357_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6056042472521465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_357_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_357_BA_M_GLOBAL.out deleted file mode 100644 index 6130fd9e0274b760580c17d5d150aaad53d128b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_357_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -357_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.41994060277938844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_358_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_358_BA_D_GLOBAL.out deleted file mode 100644 index a1fd2b427b7158d81c34683ccbba8cc494cdb201..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_358_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.132239369551341 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_358_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_358_BA_H_GLOBAL.out deleted file mode 100644 index 1a536265988157c14810ec64cd9796c1801e6106..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_358_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.240336231390635 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_358_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_358_BA_M_GLOBAL.out deleted file mode 100644 index 151ccfe4058d7eed90a4851724fca8831136321b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_358_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -358_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6341886162757873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_35_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_35_BA_D_GLOBAL.out deleted file mode 100644 index 9b8bca9cd6d0281c2c83811431ca1bd8ab374ffc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_35_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09670426448186238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_35_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_35_BA_H_GLOBAL.out deleted file mode 100644 index ba7f72a55a50a4857d003653381a9a3e3202abb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_35_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2103222688039144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_35_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_35_BA_M_GLOBAL.out deleted file mode 100644 index 9cd5104b2f63f677b481a06f7e069debda2c4eab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_35_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.016742193698883058 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_360_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_360_BA_D_GLOBAL.out deleted file mode 100644 index 187f7b51946eb3d431e132bd13d35662fec7c1ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_360_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1347601850827536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_360_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_360_BA_H_GLOBAL.out deleted file mode 100644 index d032460b26386eb8cb530f349cc05fecbd4b72ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_360_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.088894740740458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_360_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_360_BA_M_GLOBAL.out deleted file mode 100644 index 5ac2b74238317e430cc00ec54761994cad5ff636..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_360_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9659547050793966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_363_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_363_BA_D_GLOBAL.out deleted file mode 100644 index 474176a070ea04dc060fe41d06b5fb265aaee02d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_363_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1503085732460022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_363_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_363_BA_H_GLOBAL.out deleted file mode 100644 index c61d9b9a5eadcb01d64411e5e9d25dfcb0efc4a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_363_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.32022951046625775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_363_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_363_BA_M_GLOBAL.out deleted file mode 100644 index 2ff7fab60c5b41dceb54d5270b061b3a289cc8a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_363_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02241227626800537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_364_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_364_BA_D_GLOBAL.out deleted file mode 100644 index 3516567e245665b7a7bccecbf04b911c29cf4801..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_364_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -364_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10850512981414795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_364_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_364_BA_H_GLOBAL.out deleted file mode 100644 index 9c62ede4920cf47479d17a608e5528fab4aed13c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_364_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -364_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.26816974878311156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_364_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_364_BA_M_GLOBAL.out deleted file mode 100644 index 94244640e4fc8f899ebb88f2d6cedaeb6e10660e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_364_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -364_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0878771146138509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_365_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_365_BA_D_GLOBAL.out deleted file mode 100644 index 9d9dcb198698089c50a0d9439fb5eb644fcade01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_365_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -365_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1437184492746989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_365_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_365_BA_H_GLOBAL.out deleted file mode 100644 index a19140d5ecf2cf6b66d9d6e56390c6f053003e1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_365_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -365_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31751678387324017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_365_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_365_BA_M_GLOBAL.out deleted file mode 100644 index eb1718e4552684649a8c400ca1b8ef018b8a307b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_365_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -365_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20898253917694093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_366_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_366_BA_D_GLOBAL.out deleted file mode 100644 index 0b11de3b23c32a5e0f4feb6768d175b8c1119019..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_366_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.28128629525502524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_366_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_366_BA_H_GLOBAL.out deleted file mode 100644 index 7f8b8c02524a2402a9b9b353bc5365e2a5d855da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_366_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4683720628420512 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_366_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_366_BA_M_GLOBAL.out deleted file mode 100644 index 060a8407c2530a5728aee130a7e76ff5d4fd6540..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_366_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -366_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1161674420038859 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_368_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_368_BA_D_GLOBAL.out deleted file mode 100644 index e73b06b2b3afc807555ef3a714f930c8d59f954a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_368_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03993268013000488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_368_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_368_BA_H_GLOBAL.out deleted file mode 100644 index 621102b0ac5b70a2245b86c4f4bded6b26a95127..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_368_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31629050970077516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_368_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_368_BA_M_GLOBAL.out deleted file mode 100644 index be6307222fa15f99acd18764d38b12dfd2f51cb3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_368_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.017687892913818358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_369_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_369_BA_D_GLOBAL.out deleted file mode 100644 index d2f6aa9b1aa4e75ca2d59b6998986d8f34fff4a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_369_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08759288390477499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_369_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_369_BA_H_GLOBAL.out deleted file mode 100644 index 1247b68270f99651047644ec7462241bce703c30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_369_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.19788791735967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_369_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_369_BA_M_GLOBAL.out deleted file mode 100644 index 7e00cd55de425ed93fea99240359562db9d246eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_369_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.010131545861562093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_370_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_370_BA_D_GLOBAL.out deleted file mode 100644 index eb64b0ac77f5129fc892bef40f5291609f8be82d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_370_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3924212137858073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_370_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_370_BA_H_GLOBAL.out deleted file mode 100644 index 9630c263b37705fb6b8be55857b59857479f21d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_370_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5707725683848063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_370_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_370_BA_M_GLOBAL.out deleted file mode 100644 index 274911d3f9d441ca320f91b5a4d25c068a24ac8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_370_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1784682830174764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_371_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_371_BA_D_GLOBAL.out deleted file mode 100644 index 3ac26a67bcccb9cdec6d089c3e8eebeff5e9b2b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_371_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -371_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.45423566500345863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_371_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_371_BA_H_GLOBAL.out deleted file mode 100644 index 1c4f0c08f81a6c9b10bdd0f04a7fbffb19e4568d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_371_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -371_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4379211703936259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_371_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_371_BA_M_GLOBAL.out deleted file mode 100644 index 7f31f3ab419f67a9f032bb15a6535db9c5b4746d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_371_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -371_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1865512728691101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_372_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_372_BA_D_GLOBAL.out deleted file mode 100644 index 9eac2952bfc958646f7ce305837e8138b66eca7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_372_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2972164591153463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_372_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_372_BA_H_GLOBAL.out deleted file mode 100644 index e290cd264a4cf6c0ffea0462be6e33670bc578cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_372_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.44736591577529905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_372_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_372_BA_M_GLOBAL.out deleted file mode 100644 index 243920d942e2fd9df30a384a024e6d25375a3480..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_372_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2629418214162191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_373_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_373_BA_D_GLOBAL.out deleted file mode 100644 index 13bec25044dae7f94a44e200bc59f89bbf671de2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_373_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.27164869705835976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_373_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_373_BA_H_GLOBAL.out deleted file mode 100644 index 74e00df1413eaa044dc5c1ebe1e5489fd1609261..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_373_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.46216179529825846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_373_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_373_BA_M_GLOBAL.out deleted file mode 100644 index d7f38b3d65b0121bb227b74687490def29b5116e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_373_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.27970439990361534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_374_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_374_BA_D_GLOBAL.out deleted file mode 100644 index 112c4ba035af75f919edb6bd6b9368a08abd10af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_374_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04452135960261027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_374_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_374_BA_H_GLOBAL.out deleted file mode 100644 index 3accf87a534da9746ed6da1d3e144ee54606507d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_374_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.43862481514612833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_374_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_374_BA_M_GLOBAL.out deleted file mode 100644 index 572dea6b96d52f720b8949fec19d0da2f159ff7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_374_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -374_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09927868843078613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_375_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_375_BA_D_GLOBAL.out deleted file mode 100644 index 75cb37700fc0b908b67561f9482bec4d11474f01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_375_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.14491829474767048 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_375_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_375_BA_H_GLOBAL.out deleted file mode 100644 index c18552683a49bc3840ebf7216884aae7cc1d9773..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_375_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3803753654162089 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_375_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_375_BA_M_GLOBAL.out deleted file mode 100644 index 747fce09fecc3067e20170669d94097f956ea0a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_375_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.25520093043645226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_37_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_37_BA_D_GLOBAL.out deleted file mode 100644 index 584ff830115e3d5d09c7a0244d44c2819e67112f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_37_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.378803300857544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_37_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_37_BA_H_GLOBAL.out deleted file mode 100644 index cd0e38e99f0edc3dcb036809d1d49fdeaea7e792..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_37_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8328847448031107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_37_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_37_BA_M_GLOBAL.out deleted file mode 100644 index 4f499aa5aa59a5d1b99a9693dc23c2b0ff2d6873..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_37_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.60893048842748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_39_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_39_BA_D_GLOBAL.out deleted file mode 100644 index f32fd35478067042a23bc3e3e6b6d24737bd8cd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_39_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -39_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17870067755381266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_39_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_39_BA_H_GLOBAL.out deleted file mode 100644 index 822750ae6ad72b6852dd49e3d1fc7fc4ccb0a09e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_39_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -39_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7268719911575318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_39_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_39_BA_M_GLOBAL.out deleted file mode 100644 index 61fc7dc5c1fe3e9820e85ed89ba4dab6f9f61ba1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_39_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -39_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18989155689875284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_3_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_3_BA_D_GLOBAL.out deleted file mode 100644 index b0e5e5a57aad0ad719ea23f97aa3f48351192640..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_3_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8144619901974997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_3_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_3_BA_H_GLOBAL.out deleted file mode 100644 index c99c5415bfbb6b4087a3c4311f429c613d733986..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_3_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8507300416628519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_3_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_3_BA_M_GLOBAL.out deleted file mode 100644 index eb32f28ffcb3c168eb9b055ca2b4fc732df6121d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_3_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -3_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.957756499449412 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_40_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_40_BA_D_GLOBAL.out deleted file mode 100644 index 860d0786f1aeaed7f7439073fffc1db722cb1b22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_40_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6797270019849141 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_40_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_40_BA_H_GLOBAL.out deleted file mode 100644 index 1c5fdc05699138195c09e2f1cc5db65646f8321d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_40_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3863860805829367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_40_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_40_BA_M_GLOBAL.out deleted file mode 100644 index 530017291cc93796f6911a4888c5142433d30689..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_40_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2862429777781168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_41_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_41_BA_D_GLOBAL.out deleted file mode 100644 index d1d97ab32fe6d6297dbd6c36db808a80665ce55d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_41_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5561255733172099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_41_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_41_BA_H_GLOBAL.out deleted file mode 100644 index a8bf19f2872cc6852aed9d550fc06adba4657ac1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_41_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9537289857864379 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_41_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_41_BA_M_GLOBAL.out deleted file mode 100644 index 9993a403d057a82c2d538449e8dabea060145137..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_41_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -41_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7495031793912251 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_42_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_42_BA_D_GLOBAL.out deleted file mode 100644 index 66fb94a2fe6304243afe46115262fbf26de932b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_42_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5485565066337585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_42_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_42_BA_H_GLOBAL.out deleted file mode 100644 index e9f372016bc9cd6fc18ec1120679bbfb980ac33f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_42_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7373074611028035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_42_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_42_BA_M_GLOBAL.out deleted file mode 100644 index 126df27901d8dbf788d180f2689f043772774b7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_42_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.155437699953715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_43_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_43_BA_D_GLOBAL.out deleted file mode 100644 index dea31c21e6f537058f9c825b2f756fc23ebbf13c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_43_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.118990953763326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_43_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_43_BA_H_GLOBAL.out deleted file mode 100644 index e3fac7c13abdf9966a8cead3574b739266b8c5f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_43_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3417210658391316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_43_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_43_BA_M_GLOBAL.out deleted file mode 100644 index 65279160251134dd6b5d353fb6a21ab036235a6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_43_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5888102650642395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_44_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_44_BA_D_GLOBAL.out deleted file mode 100644 index 006fd10581eb69df68977df09f7e80bf108185aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_44_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7096160332361857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_44_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_44_BA_H_GLOBAL.out deleted file mode 100644 index ae369c8e92c8f7b27d2eb36b77167dd8cf871220..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_44_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8961127956708272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_44_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_44_BA_M_GLOBAL.out deleted file mode 100644 index 697b360f7097425bf354de9ddbf55e50ba619dd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_44_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6592595299084981 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_453_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_453_BA_D_GLOBAL.out deleted file mode 100644 index 69b3bb6db078771ae4a15455300b98cf3d502eef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_453_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -453_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12833739519119264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_453_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_453_BA_H_GLOBAL.out deleted file mode 100644 index a412f3db96fe89d46e8457544a73dc910159eba5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_453_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -453_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.46436740159988404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_453_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_453_BA_M_GLOBAL.out deleted file mode 100644 index b1fc644c6feaa5e19234cc084208bb16a865b64c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_453_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -453_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1020201047261556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_454_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_454_BA_D_GLOBAL.out deleted file mode 100644 index 0f347cfc4ae18fb1702d3ff74f5b3efc0c40388c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_454_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -454_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.15678645372390748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_454_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_454_BA_H_GLOBAL.out deleted file mode 100644 index 0290edd29b5060ae98543554d681930afd06cadb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_454_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -454_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4756435950597127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_454_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_454_BA_M_GLOBAL.out deleted file mode 100644 index 132ff2abe1265f90893618e5febb36e62e717d58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_454_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -454_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1079852302869161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_455_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_455_BA_D_GLOBAL.out deleted file mode 100644 index dc319ced243b75894261429a0ec5758b9b8fffbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_455_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -455_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.27491604884465537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_455_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_455_BA_H_GLOBAL.out deleted file mode 100644 index bb228215dd268b97c489c8ec81591eb80b383978..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_455_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -455_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.34806885321935016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_455_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_455_BA_M_GLOBAL.out deleted file mode 100644 index 23b4f3e47ee563a6b9aef32c5591cd4a751ce8d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_455_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -455_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12270017067591349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_456_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_456_BA_D_GLOBAL.out deleted file mode 100644 index a17eeed2060bb8569703205b90539edadbe127b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_456_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -456_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3317341963450114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_456_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_456_BA_H_GLOBAL.out deleted file mode 100644 index 9d95867b2d55fff24467b1099639d4cad2f40294..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_456_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -456_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3295127272605896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_456_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_456_BA_M_GLOBAL.out deleted file mode 100644 index 6089d340e2864f0ccc6321cc810f86e6162921cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_456_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -456_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2995842417081197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_457_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_457_BA_D_GLOBAL.out deleted file mode 100644 index 613627bbf351bb96611f00f6a071f5c044b68a94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_457_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -457_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.49203029870986936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_457_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_457_BA_H_GLOBAL.out deleted file mode 100644 index 66d3ec747333aff30879d763c053fc2fd838e0fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_457_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -457_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4297858198483785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_457_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_457_BA_M_GLOBAL.out deleted file mode 100644 index efd22a97340e5b08b2e18f06d344fe6df4010679..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_457_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -457_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4404925068219503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_458_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_458_BA_D_GLOBAL.out deleted file mode 100644 index 8a70f38d074ddad2663fe904b2169669fd0dc48b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_458_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -458_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.13103160858154297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_458_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_458_BA_H_GLOBAL.out deleted file mode 100644 index 1cb059a81df00ba36723b86b0c4ecdcb6e4a85be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_458_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -458_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.510076892375946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_458_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_458_BA_M_GLOBAL.out deleted file mode 100644 index 90b42a67a64e206ec18baababcea0fb276ab4c8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_458_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -458_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.19790881474812824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_459_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_459_BA_D_GLOBAL.out deleted file mode 100644 index 1a7218f04bf9e99ea04d12fe3c475fde4b945104..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_459_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -459_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03689850966135661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_459_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_459_BA_H_GLOBAL.out deleted file mode 100644 index ca6736a3cf3ad6892a3f08cd799a41b7292540fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_459_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -459_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24920355478922526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_459_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_459_BA_M_GLOBAL.out deleted file mode 100644 index 9d20f39b77445ab7a48c591e473864d523e0e680..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_459_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -459_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.13621323506037394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_45_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_45_BA_D_GLOBAL.out deleted file mode 100644 index 6efff0d5ffb3ef2f25f2b0756e709cf602e1ba2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_45_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.51065536737442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_45_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_45_BA_H_GLOBAL.out deleted file mode 100644 index 944600b6b48b9998f184b3a3a4ed711981c3bc59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_45_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9553585489590963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_45_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_45_BA_M_GLOBAL.out deleted file mode 100644 index d61cfb111bc812a24c3a7f5ecc78d972ac29e48c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_45_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3777569770812987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_460_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_460_BA_D_GLOBAL.out deleted file mode 100644 index 504c0bbcb653e3c42193aed03420c4439dd11e47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_460_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -460_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.14821491638819376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_460_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_460_BA_H_GLOBAL.out deleted file mode 100644 index 45284b8ac0b000898864c6c3f9c8157b46d8b02b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_460_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -460_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2946326772371928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_460_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_460_BA_M_GLOBAL.out deleted file mode 100644 index e83b4e6caf7e823efcec1bc565a8503cd7435b6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_460_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -460_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05999605655670166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_461_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_461_BA_D_GLOBAL.out deleted file mode 100644 index 2caa86c94e907c248ca26e34336bd6e0551a0b69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_461_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -461_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06804114977518717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_461_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_461_BA_H_GLOBAL.out deleted file mode 100644 index 704419134e9eb74fbbe55458c2cab563458afc11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_461_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -461_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3584985097249349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_461_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_461_BA_M_GLOBAL.out deleted file mode 100644 index 626ddbe33fa02df35a4594897d31b8741f6d511c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_461_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -461_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05263845125834147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_462_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_462_BA_D_GLOBAL.out deleted file mode 100644 index 45dcecc60027568e14fad2ca9b6bf987522a7c6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_462_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -462_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5988537907600403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_462_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_462_BA_H_GLOBAL.out deleted file mode 100644 index 750a7f396d44e753bdb8da0d164350db51badd9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_462_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -462_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6645711859067281 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_462_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_462_BA_M_GLOBAL.out deleted file mode 100644 index e2d763fd076757fa7bfc0c1bac635659bf3c033f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_462_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -462_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4714033842086792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_463_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_463_BA_D_GLOBAL.out deleted file mode 100644 index 9c1b84b08f88719b6c2a573f0eee785985f334e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_463_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -463_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.613218116760254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_463_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_463_BA_H_GLOBAL.out deleted file mode 100644 index 5907a8cf1158d6ac342f2e3906bd08f9214330f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_463_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -463_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8372201800346375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_463_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_463_BA_M_GLOBAL.out deleted file mode 100644 index 1db11d4c075255c7ac3db1a3f3d3e51a52051cc3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_463_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -463_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.44001920223236085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_464_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_464_BA_D_GLOBAL.out deleted file mode 100644 index fdb3fa9c1640865a97276884df83b6887edb98ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_464_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -464_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12024803161621093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_464_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_464_BA_H_GLOBAL.out deleted file mode 100644 index 8353ad6676d426bdd58470b5b06f2979a75f76a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_464_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -464_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23524308999379476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_464_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_464_BA_M_GLOBAL.out deleted file mode 100644 index 011c077426621ca9dafc95dafb241aac76361e4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_464_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -464_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.17227197488149007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_465_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_465_BA_D_GLOBAL.out deleted file mode 100644 index 45ea4991420790a56c7a4335b5324893cab804bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_465_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -465_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5573901176452637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_465_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_465_BA_H_GLOBAL.out deleted file mode 100644 index 62a8b630e5e352d5d9cd6f46066f7d5216745347..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_465_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -465_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5905101696650187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_465_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_465_BA_M_GLOBAL.out deleted file mode 100644 index ca27851bff7d5331b028c3521a241f5f15251520..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_465_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -465_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3966860294342041 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_466_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_466_BA_D_GLOBAL.out deleted file mode 100644 index 39f5138178dd5135c010b81ce70e4b9bbdf9550f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_466_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -466_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12808767954508463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_466_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_466_BA_H_GLOBAL.out deleted file mode 100644 index 364344f38dabb0491e0b82ace9441d088479ba90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_466_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -466_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3438640316327413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_466_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_466_BA_M_GLOBAL.out deleted file mode 100644 index 8e8a38da0d408c18f9c4c6f1eb5e281df83f11b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_466_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -466_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3012516180674235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_467_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_467_BA_D_GLOBAL.out deleted file mode 100644 index d300d9033576fa62d6d5171e3b967225c29d5747..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_467_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -467_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.14397840499877929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_467_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_467_BA_H_GLOBAL.out deleted file mode 100644 index c2507eeb528fa336938f57f004c285ac47bf0c0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_467_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -467_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.47609996795654297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_467_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_467_BA_M_GLOBAL.out deleted file mode 100644 index 429dc85375a5418be8fbbc9749580365a8a9ab5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_467_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -467_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.04949773550033569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_468_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_468_BA_D_GLOBAL.out deleted file mode 100644 index 6259376984422f802433c2fc676ffffc9454ef0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_468_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -468_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11131844520568848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_468_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_468_BA_H_GLOBAL.out deleted file mode 100644 index 7177ff6c83314e27760de066d2892ef48682fc66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_468_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -468_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23849199612935384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_468_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_468_BA_M_GLOBAL.out deleted file mode 100644 index 32f05618c7d3123a39c681c0d1d976f67fc66e4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_468_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -468_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09391504128774007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_469_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_469_BA_D_GLOBAL.out deleted file mode 100644 index 88eb22336fa3c5c7886ffc4d4c043b1cd2b7291b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_469_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -469_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1226080060005188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_469_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_469_BA_H_GLOBAL.out deleted file mode 100644 index 4ec1120960608654ee28942e811a07a0de94e233..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_469_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -469_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.47996863921483357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_469_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_469_BA_M_GLOBAL.out deleted file mode 100644 index 5071f661980883c14d5e1cd44d13f9603d9e20e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_469_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -469_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.28344682852427167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_46_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_46_BA_D_GLOBAL.out deleted file mode 100644 index 74bfae6037b735645be3464eda44432f5bab0877..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_46_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0806034803390503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_46_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_46_BA_H_GLOBAL.out deleted file mode 100644 index 341af15df7cb2c2ce456044af97e8a8fee720f37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_46_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2837390899658203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_46_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_46_BA_M_GLOBAL.out deleted file mode 100644 index 02645b2c2a0113351853a7d94d939162480b3560..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_46_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5141940514246622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_471_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_471_BA_D_GLOBAL.out deleted file mode 100644 index 56d6c681f6522aac0a2c16816275e049c34c74ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_471_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -471_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10926562547683716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_471_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_471_BA_H_GLOBAL.out deleted file mode 100644 index 777f8bc4f897016036eabe7c4aeb41e22381354a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_471_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -471_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23019304275512695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_471_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_471_BA_M_GLOBAL.out deleted file mode 100644 index f4d5e18fe301c3248e2212e50d5c49312844058e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_471_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -471_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.014361592133839925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_473_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_473_BA_D_GLOBAL.out deleted file mode 100644 index 0024c7913312b95240a661a1fc1ce326fac5dbcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_473_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -473_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.038988157113393145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_473_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_473_BA_H_GLOBAL.out deleted file mode 100644 index b07ffda82d871964b237d25401a2d4d47ff87ad1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_473_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -473_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21812617778778076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_473_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_473_BA_M_GLOBAL.out deleted file mode 100644 index 9054cde762933958ef0b018ccba9477afc2682eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_473_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -473_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.013453511397043864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_474_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_474_BA_D_GLOBAL.out deleted file mode 100644 index db05a71d7913ad07fffece4da204c124567b0e9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_474_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -474_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31047922372817993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_474_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_474_BA_H_GLOBAL.out deleted file mode 100644 index c0b55168a35efa95e1a84552b306a182ad331e51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_474_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -474_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5120880524317424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_474_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_474_BA_M_GLOBAL.out deleted file mode 100644 index 602e30883576c4ddabd5dab6ae270e96d994c6b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_474_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -474_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.29501529932022097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_475_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_475_BA_D_GLOBAL.out deleted file mode 100644 index c7eb01b8695c3de243a183298c254a8f04e9893a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_475_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -475_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2246251583099365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_475_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_475_BA_H_GLOBAL.out deleted file mode 100644 index c27498bd4f05ad6412583c10e3a266ef7b516154..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_475_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -475_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.29626890023549396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_475_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_475_BA_M_GLOBAL.out deleted file mode 100644 index 994e9fbcebd46821a6954ce978c2386c2e747e07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_475_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -475_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03997265497843425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_476_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_476_BA_D_GLOBAL.out deleted file mode 100644 index f46b0538ad7fc4786aa5cc6d33eef5aca261e591..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_476_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -476_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10840146541595459 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_476_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_476_BA_H_GLOBAL.out deleted file mode 100644 index c1625bcf5d3d78e180551181ce3d88c177ba35a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_476_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -476_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4215313196182251 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_476_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_476_BA_M_GLOBAL.out deleted file mode 100644 index eacf7f4ba898d1aea2311d3fc8385a81611edba4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_476_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -476_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20369745492935182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_477_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_477_BA_D_GLOBAL.out deleted file mode 100644 index 0d04218eea8d7a39e87a6729595ab30b28909c3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_477_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -477_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11435471773147583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_477_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_477_BA_H_GLOBAL.out deleted file mode 100644 index b7064c8cf5b84f9e32afc98c16c70ae0d4af638a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_477_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -477_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2613508621851603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_477_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_477_BA_M_GLOBAL.out deleted file mode 100644 index 76e1ea9ecead051bc35f7314d3438efd71dfefa0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_477_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -477_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05103046099344889 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_478_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_478_BA_D_GLOBAL.out deleted file mode 100644 index f47b3fe676ff915b010d3b7d2d88cf595e1e8129..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_478_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -478_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.20285208622614542 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_478_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_478_BA_H_GLOBAL.out deleted file mode 100644 index 4a58e8d2c49f39bf1d5b2b30e7d4cc971d273b87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_478_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -478_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2817561070124308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_478_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_478_BA_M_GLOBAL.out deleted file mode 100644 index da60dbf6747fe63ae12158a7623fe6221c7ae81b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_478_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -478_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06766774654388427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_479_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_479_BA_D_GLOBAL.out deleted file mode 100644 index 71fcdf1ae5c9f09d5512173a97de5ec47d3c47aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_479_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -479_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.13132564624150594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_479_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_479_BA_H_GLOBAL.out deleted file mode 100644 index a97c71a2742de125cc8fa04b4665ee1d4551fcfe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_479_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -479_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5105140050252278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_479_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_479_BA_M_GLOBAL.out deleted file mode 100644 index c09775c2237a692a1ff73ef45229a44f5f9912cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_479_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -479_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.15949747165044148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_480_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_480_BA_D_GLOBAL.out deleted file mode 100644 index c87f02fb69f823711a7bb71b47cf7c174d47f366..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_480_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -480_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1565983772277832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_480_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_480_BA_H_GLOBAL.out deleted file mode 100644 index 1f9f735af58ea06c05df9e5c9d384a6317d1e475..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_480_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -480_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5968429247538248 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_480_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_480_BA_M_GLOBAL.out deleted file mode 100644 index a2a391d670177135c0b8554b42f48a6f6be5f30b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_480_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -480_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05819807449976603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_481_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_481_BA_D_GLOBAL.out deleted file mode 100644 index 9418f1225c7c133767f79f877e26349bc41990a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_481_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -481_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11914414564768473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_481_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_481_BA_H_GLOBAL.out deleted file mode 100644 index b7bf7682f965448a2640ecbc6f6a12653e076423..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_481_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -481_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3973337213198344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_481_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_481_BA_M_GLOBAL.out deleted file mode 100644 index 5778d24a42702a7e26fa0689af10d18f24086cf4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_481_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -481_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2044134259223938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_482_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_482_BA_D_GLOBAL.out deleted file mode 100644 index a382a667277ba37a68af3bf2843ff1a2742cd4d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_482_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -482_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1843526244163513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_482_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_482_BA_H_GLOBAL.out deleted file mode 100644 index 6230d50252a9d1651c797c4d83d53550cf2d3420..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_482_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -482_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.32712871630986534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_482_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_482_BA_M_GLOBAL.out deleted file mode 100644 index 8441c06531b2136a991025fabdfce07403045cc3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_482_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -482_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1268057386080424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_483_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_483_BA_D_GLOBAL.out deleted file mode 100644 index aeb85dac045f3a860755b941441dfba7b4cdc314..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_483_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -483_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05561960538228353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_483_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_483_BA_H_GLOBAL.out deleted file mode 100644 index c4ed1885ff99791ca685d8e2d6c71d1f088a46d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_483_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -483_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3482518513997396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_483_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_483_BA_M_GLOBAL.out deleted file mode 100644 index 486cae8a74f0937a2df2e61df6a1194f622ef617..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_483_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -483_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11345125834147135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_485_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_485_BA_D_GLOBAL.out deleted file mode 100644 index b0b02721c2a3b8b37a763e260c2a2a0049594c10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_485_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -485_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2892029682795207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_485_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_485_BA_H_GLOBAL.out deleted file mode 100644 index c0beea5de065050fbb9317cf78c88be997c0ee08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_485_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -485_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4375581463177999 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_485_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_485_BA_M_GLOBAL.out deleted file mode 100644 index a4da98ddcf493be231b6d09955f2f03a396f483b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_485_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -485_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.13834234873453777 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_486_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_486_BA_D_GLOBAL.out deleted file mode 100644 index b7cb8476a97b25b1dbe58ded2a4390204b489e45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_486_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -486_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2985135475794474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_486_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_486_BA_H_GLOBAL.out deleted file mode 100644 index 1e82b6b9b06bb7d659a936054fc473595ac8181d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_486_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -486_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4502512613932292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_486_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_486_BA_M_GLOBAL.out deleted file mode 100644 index 5208f851324799cd20ec715c8034389b0a88bd3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_486_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -486_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03545109430948893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_487_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_487_BA_D_GLOBAL.out deleted file mode 100644 index 162f53271ab2f56ce606ed6229e2215e09cd9940..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_487_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -487_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2687983194986979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_487_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_487_BA_H_GLOBAL.out deleted file mode 100644 index 341042c3a2207625d14c0b649c2ab9b43884b78f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_487_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -487_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3172885298728943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_487_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_487_BA_M_GLOBAL.out deleted file mode 100644 index 5fceceffc5958ec8c22f7bb2690b1a49ecdd7a96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_487_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -487_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0547934611638387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_488_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_488_BA_D_GLOBAL.out deleted file mode 100644 index f1f5fc25a95687efc00217d78bb4009510ac4958..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_488_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -488_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2665794293085734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_488_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_488_BA_H_GLOBAL.out deleted file mode 100644 index d69d362eb5c2a867e63d60d8ee28635d5e722d75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_488_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -488_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.26432748635609943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_488_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_488_BA_M_GLOBAL.out deleted file mode 100644 index aa03e8c6c8cdce639dc9ea51192a869d3b598b18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_488_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -488_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07193038860956828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_489_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_489_BA_D_GLOBAL.out deleted file mode 100644 index d2be765569f3fa2356e881c51b56bb041848212f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_489_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -489_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10375860134760538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_489_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_489_BA_H_GLOBAL.out deleted file mode 100644 index 4e6ba1bdb7e10c0f1f7f0e66eb0668812aab8cef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_489_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -489_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2915451725323995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_489_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_489_BA_M_GLOBAL.out deleted file mode 100644 index e5e0f7782d96d5e116f322d9d912db3b835ec0e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_489_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -489_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.253572678565979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_48_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_48_BA_D_GLOBAL.out deleted file mode 100644 index e8f2f02a11e0c662ae77277ec1418dbdb62bcdaf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_48_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.794861920674642 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_48_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_48_BA_H_GLOBAL.out deleted file mode 100644 index 8f0a0e088170c4836a51b291bc33224c770a4f1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_48_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0920662999153137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_48_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_48_BA_M_GLOBAL.out deleted file mode 100644 index 0948e5ae8f1789291d62a2d97ca5d4318cf773f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_48_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7667940378189086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_490_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_490_BA_D_GLOBAL.out deleted file mode 100644 index e7234e779ee0ea68fc9b8817862d1622d2447f9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_490_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -490_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1199951410293579 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_490_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_490_BA_H_GLOBAL.out deleted file mode 100644 index 4e723f9b076c2a9a3754e2a82c2a17fcbee6f869..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_490_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -490_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3662696162859599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_490_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_490_BA_M_GLOBAL.out deleted file mode 100644 index 7a95a6d9b860bb98773004de698993d917c18f45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_490_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -490_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02658062775929769 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_4_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_4_BA_D_GLOBAL.out deleted file mode 100644 index b202a94014bc53256087f907e99de3a4736d4268..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_4_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7990343928337097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_4_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_4_BA_H_GLOBAL.out deleted file mode 100644 index 8d51e280f953869e103f869afec8696f3da16415..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_4_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1333714087804159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_4_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_4_BA_M_GLOBAL.out deleted file mode 100644 index 3a5a43e53aad3fe20f116fd88987fd4aed764d4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_4_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8463328043619792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_51_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_51_BA_D_GLOBAL.out deleted file mode 100644 index 41eeb9551e72866e120be5a3e1c122bb926299a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_51_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9268338998158773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_51_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_51_BA_H_GLOBAL.out deleted file mode 100644 index e8e33977a8be0c7c5a1971483e7e73d81d57936d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_51_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.037723755836487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_51_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_51_BA_M_GLOBAL.out deleted file mode 100644 index 671db6b9e51e8b8610e441960cd7225c3516b522..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_51_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -51_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.37649077574412027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_529_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_529_BA_D_GLOBAL.out deleted file mode 100644 index e30bf19a29ab2b9d3098d1c22eb55873d1ce7172..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_529_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2705052375793457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_529_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_529_BA_H_GLOBAL.out deleted file mode 100644 index 7c86f78be74c8ae259d3ada828fd0f4e0b9c9aa6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_529_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5474812110265096 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_529_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_529_BA_M_GLOBAL.out deleted file mode 100644 index b2c6882c2208dfc41bffef380d5ecb2b8f44dcd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_529_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -529_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.41199145714441937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_52_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_52_BA_D_GLOBAL.out deleted file mode 100644 index 8b6f55f60cf5fcabb7ec87136dbf57803d478c8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_52_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0919379750887552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_52_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_52_BA_H_GLOBAL.out deleted file mode 100644 index 056bc8d3185a562141838a6c96d5a3e38cfd5658..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_52_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8496916651725769 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_52_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_52_BA_M_GLOBAL.out deleted file mode 100644 index eab184b59ed7f2853a6228e2bf405beb19ed5fb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_52_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8782269795735677 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_530_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_530_BA_D_GLOBAL.out deleted file mode 100644 index 8f52ac75b62b2b8bb7368d383f0d92afaf862b9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_530_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02771671215693156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_530_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_530_BA_H_GLOBAL.out deleted file mode 100644 index a1ac89ef944f75e0fc99a5c8603feb39df2287d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_530_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.29237225850423176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_530_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_530_BA_M_GLOBAL.out deleted file mode 100644 index 6da129f2cef63a2f1d3930dd8a9872b1044d4860..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_530_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -530_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.016759733359018963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_531_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_531_BA_D_GLOBAL.out deleted file mode 100644 index 3a171f16212ca1ad66b53e64a8e3311ab7d194be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_531_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -531_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7295477151870727 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_531_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_531_BA_H_GLOBAL.out deleted file mode 100644 index 46ef510c1e7d45f6bb1e1d01ac10fd0148280f6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_531_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -531_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9195271690686544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_531_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_531_BA_M_GLOBAL.out deleted file mode 100644 index 013fc5cb182bf104ea664227ae42333faa5484a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_531_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -531_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8744332869847615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_534_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_534_BA_D_GLOBAL.out deleted file mode 100644 index 3b55f49661415ac99aafc233a30aa48b5d2c3083..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_534_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1351457635561625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_534_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_534_BA_H_GLOBAL.out deleted file mode 100644 index 56bde1b6aafde51ff02646b5c0bc966a725a029d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_534_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2765061696370443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_534_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_534_BA_M_GLOBAL.out deleted file mode 100644 index 3ac3579b87da3a9848be9cd4587cb1fe6c6ffd15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_534_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1254364530245463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_53_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_53_BA_D_GLOBAL.out deleted file mode 100644 index b922307ac4fe401894dc45b7a6ef28b1e84cafe6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_53_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -53_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7009689728418986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_53_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_53_BA_H_GLOBAL.out deleted file mode 100644 index 65c2a8b52a13a19515d87f18462a358b454ea509..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_53_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -53_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1088927745819093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_53_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_53_BA_M_GLOBAL.out deleted file mode 100644 index 9158a6d71a61c3284969f3df55f450272124e7c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_53_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -53_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9246453722318013 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_540_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_540_BA_D_GLOBAL.out deleted file mode 100644 index 9df3b8024b1035f7e67de94aa519f2da629bf3bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_540_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.025936615467071534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_540_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_540_BA_H_GLOBAL.out deleted file mode 100644 index c9a636ac374b7556adcbb583cded7f37c10bc2c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_540_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18664461374282837 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_540_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_540_BA_M_GLOBAL.out deleted file mode 100644 index b81f4020691f3716862ad7283b869c89e327ba81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_540_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.005840591589609782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_543_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_543_BA_D_GLOBAL.out deleted file mode 100644 index 95a635bf2a6e4259fc539165e0b7f5c1d5b4e53c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_543_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -543_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2773096998532613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_543_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_543_BA_H_GLOBAL.out deleted file mode 100644 index 14a2008d2917e3feb60163a9e055b77e1318c16a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_543_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -543_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2583694140116374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_543_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_543_BA_M_GLOBAL.out deleted file mode 100644 index c1b3dbfd54a2a1cae30ce5271a02c028ff71800d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_543_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -543_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07524236440658569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_546_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_546_BA_D_GLOBAL.out deleted file mode 100644 index 3660981572639d2f2eaa7fb29bd7984a043ddb46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_546_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -546_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02976587216059367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_546_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_546_BA_H_GLOBAL.out deleted file mode 100644 index ccf8bc634b82fb1c9c966af40670742c13670fbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_546_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -546_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.22971671024958293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_546_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_546_BA_M_GLOBAL.out deleted file mode 100644 index 8bc4da7dfb50f43b4557db218939c9c1c5773405..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_546_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -546_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.00962282419204712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_549_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_549_BA_D_GLOBAL.out deleted file mode 100644 index 5eb7fc964ae33422b8d6c92e00311955453441de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_549_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -549_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.06905534664789835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_549_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_549_BA_H_GLOBAL.out deleted file mode 100644 index b42a6eb52d343517eb4819d17917a686c558d5bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_549_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -549_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2959004481633504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_549_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_549_BA_M_GLOBAL.out deleted file mode 100644 index 2b0a55259f2700d8b34fb674b2b11bf5ec4903b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_549_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -549_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.026998905340830485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_550_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_550_BA_D_GLOBAL.out deleted file mode 100644 index 133d50342dfa307e1e2d136febce8125573fb92d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_550_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -550_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23111343383789062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_550_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_550_BA_H_GLOBAL.out deleted file mode 100644 index e5e2a1bb00b71f945716577ced718c3ad0327360..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_550_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -550_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24930284023284913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_550_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_550_BA_M_GLOBAL.out deleted file mode 100644 index 55bdc0353ffa14f2fda1f259536b308822a89460..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_550_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -550_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08156795899073283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_553_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_553_BA_D_GLOBAL.out deleted file mode 100644 index 485ef505990d648aa349a64b6665dd10596eae00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_553_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -553_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10508517821629842 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_553_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_553_BA_H_GLOBAL.out deleted file mode 100644 index 784e52a709737d73a92609239dc19a3671a4608b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_553_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -553_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.263625172773997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_553_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_553_BA_M_GLOBAL.out deleted file mode 100644 index ad8eef68c456a479c552c68eb12d298ba66b83ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_553_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -553_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3057039221127828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_554_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_554_BA_D_GLOBAL.out deleted file mode 100644 index 94ee02e433d79d20f6caaa6e8e3163f29bbce04e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_554_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -554_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24845890601476034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_554_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_554_BA_H_GLOBAL.out deleted file mode 100644 index 996adc26221dda5bcfa9d3d5ed1625930cfd4ba0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_554_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -554_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4374795198440552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_554_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_554_BA_M_GLOBAL.out deleted file mode 100644 index 10ba40ce59b4521e30de1b3e55c8fa982daf9442..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_554_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -554_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2267332434654236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_56_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_56_BA_D_GLOBAL.out deleted file mode 100644 index 0bde0e8ae66c55e9fcb2c4b9025a586e3f49c062..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_56_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -56_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.885850175221761 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_56_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_56_BA_H_GLOBAL.out deleted file mode 100644 index 2a4669b8b7e1dd7d9ee1e545eecc508f035b64c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_56_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -56_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8008563796679178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_56_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_56_BA_M_GLOBAL.out deleted file mode 100644 index 630307fbe3b1f0205206cf54932a5b35a3866c2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_56_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -56_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.701321041584015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_57_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_57_BA_D_GLOBAL.out deleted file mode 100644 index f7457654c0d8c2ad32f987c044197a653f9e0d52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_57_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.490647765000661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_57_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_57_BA_H_GLOBAL.out deleted file mode 100644 index 5e81bd15a92be965b956bea1bd1e95c47b21fabe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_57_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.700331624348958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_57_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_57_BA_M_GLOBAL.out deleted file mode 100644 index 93d0631a6eb6ee26293cbd998af224a0c49ef5f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_57_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6904836455980936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_59_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_59_BA_D_GLOBAL.out deleted file mode 100644 index fa24d0f8915d1a5f7787656dbe2b07729d40bfcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_59_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9941609025001525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_59_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_59_BA_H_GLOBAL.out deleted file mode 100644 index 2ed354471d90b800e60e6b866172f303c3b1d409..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_59_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8023889223734537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_59_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_59_BA_M_GLOBAL.out deleted file mode 100644 index 2faf9b6d7bf3fde897fdad1a52a43eeabe40778d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_59_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8826567689577739 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_5_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_5_BA_D_GLOBAL.out deleted file mode 100644 index 6fe0d509a472819966bd8b0cda59dbd3c063fc6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_5_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.433439060052236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_5_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_5_BA_H_GLOBAL.out deleted file mode 100644 index 4df78dbf668fd40837144d2b304b757e296228a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_5_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7198525468508403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_5_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_5_BA_M_GLOBAL.out deleted file mode 100644 index 94b052fcb18ebfd06b63f2a07cdbfbc428ef7f8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_5_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8102259039878845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_61_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_61_BA_D_GLOBAL.out deleted file mode 100644 index 5555cbcf1350ea7db93a92e52b14450def48069d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_61_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0684152444203694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_61_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_61_BA_H_GLOBAL.out deleted file mode 100644 index c7d4c95c9231435bf719eb8cd449767805af516e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_61_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4297688921292624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_61_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_61_BA_M_GLOBAL.out deleted file mode 100644 index 787652cfbf5c81294c470e373bf64999a3cf5da1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_61_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2781827131907144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_62_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_62_BA_D_GLOBAL.out deleted file mode 100644 index 7acbbd5012b6c2da859d6c533388d5210d04283e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_62_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.435311535994212 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_62_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_62_BA_H_GLOBAL.out deleted file mode 100644 index 1269cb992334955131ddfa801bf37d643747fd7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_62_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.4270694812138873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_62_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_62_BA_M_GLOBAL.out deleted file mode 100644 index c373b605516cd4e023df2a05c65cac4ebb8f3a69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_62_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.3823811491330464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_63_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_63_BA_D_GLOBAL.out deleted file mode 100644 index 25524793dd9ac84be7b88bc2b12b0f0e27e12e6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_63_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4120633522669475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_63_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_63_BA_H_GLOBAL.out deleted file mode 100644 index 4e99fe2261fec3f0afd3e29b03b0002442dd6ae8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_63_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4901023507118225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_63_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_63_BA_M_GLOBAL.out deleted file mode 100644 index 9a1392383a9cafe6797d188dd2390e395157e8bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_63_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7599960803985596 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_64_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_64_BA_D_GLOBAL.out deleted file mode 100644 index d3943d11446ecd8cee9b4869b15374d7a847e3eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_64_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8024630506833395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_64_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_64_BA_H_GLOBAL.out deleted file mode 100644 index 83d49dba73258592fb910513bece054366b0f178..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_64_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9834582169850667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_64_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_64_BA_M_GLOBAL.out deleted file mode 100644 index cdf57f947d65ec5a474207bce725041518af4405..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_64_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7520393848419189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_65_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_65_BA_D_GLOBAL.out deleted file mode 100644 index 2246723b0cc5d89dc8914c6c2a385fc11135ff0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_65_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.873782769838969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_65_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_65_BA_H_GLOBAL.out deleted file mode 100644 index 90c1b5d6cc87c50ab0c0fba7a598e13cbe535462..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_65_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6477803389231364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_65_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_65_BA_M_GLOBAL.out deleted file mode 100644 index 36973615f137d319237c456b38ce63edfdc5375b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_65_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7612407406171163 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_6_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_6_BA_D_GLOBAL.out deleted file mode 100644 index 71b7daad8513f98d90168c1c9750303ef7807fba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_6_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3339929262797038 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_6_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_6_BA_H_GLOBAL.out deleted file mode 100644 index 6055e46bda88b7efede9fd5b0a345a92d2245ea8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_6_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8653208017349243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_6_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_6_BA_M_GLOBAL.out deleted file mode 100644 index b494c5c350d524ac4fd11786b1c48757951ffbfc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_6_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6564963539441426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_70_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_70_BA_D_GLOBAL.out deleted file mode 100644 index f959231ef528b38444396080830dcf3e33b3b111..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_70_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -70_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.060535645484924315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_70_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_70_BA_H_GLOBAL.out deleted file mode 100644 index e66f7d92740c75f1b8696db3a2b3ca8fd1b5b0ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_70_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -70_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.28584843476613364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_70_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_70_BA_M_GLOBAL.out deleted file mode 100644 index 8a766e4bf21a2111aed740746655d360508b4fe7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_70_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -70_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11115438938140869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_73_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_73_BA_D_GLOBAL.out deleted file mode 100644 index 9d83419271b751aaa8f9c277f269df5f3040d26d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_73_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.35500169595082604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_73_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_73_BA_H_GLOBAL.out deleted file mode 100644 index 3497af7d276f6ee12f7738d584c007fb1653b275..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_73_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5344466646512349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_73_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_73_BA_M_GLOBAL.out deleted file mode 100644 index 5eda602bce5dc1d100682e517c50cd8b406ab1ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_73_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -73_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09631190697352092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_76_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_76_BA_D_GLOBAL.out deleted file mode 100644 index f0afd48dff36ef50599a8f1f7a9460f2df4382d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_76_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3673466523488363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_76_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_76_BA_H_GLOBAL.out deleted file mode 100644 index de3bf64a58e0d264b1f3c1c7058e0145590bffc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_76_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5485844771067302 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_76_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_76_BA_M_GLOBAL.out deleted file mode 100644 index 825f0efdeec9bcf3f6a06c963011119ed88d813d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_76_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -76_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2789968411127726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_79_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_79_BA_D_GLOBAL.out deleted file mode 100644 index ec992729c93996b5c24e399163a9cd068d6f7926..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_79_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6454139669736227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_79_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_79_BA_H_GLOBAL.out deleted file mode 100644 index 55d1feafefaed4680d79861e25e9b194a43e5324..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_79_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0332314531008402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_79_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_79_BA_M_GLOBAL.out deleted file mode 100644 index 92dcfed70ddf6f510bd61c8a6dae2b0a498f89f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_79_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6571285088857015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_80_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_80_BA_D_GLOBAL.out deleted file mode 100644 index dfd0f6481cea1ce84975788956a7e363b34c122f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_80_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7188492933909099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_80_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_80_BA_H_GLOBAL.out deleted file mode 100644 index c768580f28c8dd66deeeeb503e3e4387c6c85cd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_80_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1970466216405233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_80_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_80_BA_M_GLOBAL.out deleted file mode 100644 index 7a2395ffbe235b1fb8f74dc8d53a86161dedb164..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_80_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7602164983749389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_81_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_81_BA_D_GLOBAL.out deleted file mode 100644 index 3aa81d5ddc23efb4443f5b39a12592559445ee89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_81_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -81_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10699901580810547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_81_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_81_BA_H_GLOBAL.out deleted file mode 100644 index d620bd9121d2c34fdcf8f5a71de1f8814c25efc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_81_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -81_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.19110605716705323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_81_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_81_BA_M_GLOBAL.out deleted file mode 100644 index 35827295a33b2b0b39904d0ee6ae5bdd0a9c0faf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_81_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -81_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.022113088766733804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_83_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_83_BA_D_GLOBAL.out deleted file mode 100644 index b97467399ed7b38e457256b8299e2200a543880c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_83_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -83_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5457113981246948 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_83_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_83_BA_H_GLOBAL.out deleted file mode 100644 index 201e46ffebd9a89b40f9d5742d4d7a6aaba93717..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_83_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -83_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8552743554115295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_83_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_83_BA_M_GLOBAL.out deleted file mode 100644 index 1041644250cd39f357d00a6e16a1f4dadccd72ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_83_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -83_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.204825015862783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_84_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_84_BA_D_GLOBAL.out deleted file mode 100644 index 5cbf9c19159223dc8758ba39e3d6d1d8aadb737d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_84_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4890397310256958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_84_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_84_BA_H_GLOBAL.out deleted file mode 100644 index 30aea873ca1deff9ea59ce9da8a660c79bc8b6d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_84_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.213928190867106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_84_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_84_BA_M_GLOBAL.out deleted file mode 100644 index 9115b12762d358f8ba0c939294389287ce44f3cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_84_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8760124643643697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_85_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_85_BA_D_GLOBAL.out deleted file mode 100644 index e52951231a2eb841ac3e832f99e3c74a227d2605..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_85_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -85_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1755273660024007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_85_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_85_BA_H_GLOBAL.out deleted file mode 100644 index 49910c76e6da4a05bd7ebc9830a1961cdb4ab43b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_85_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -85_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.533022654056549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_85_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_85_BA_M_GLOBAL.out deleted file mode 100644 index 6e8b5abda5dae41006613766b117edd43c77097a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_85_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -85_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.13461954196294149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_90_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_90_BA_D_GLOBAL.out deleted file mode 100644 index d7dac91330b1871fae7f76c166c310f4a0d46873..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_90_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -90_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6205050309499105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_90_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_90_BA_H_GLOBAL.out deleted file mode 100644 index a51b522906bd390dec2d40e77eac3bd50e3b729f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_90_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -90_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7593147277832031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_90_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_90_BA_M_GLOBAL.out deleted file mode 100644 index 2d2dbb035c3f24c9c57487224e95cf9e82394a1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_90_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -90_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6148828347524007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_93_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_93_BA_D_GLOBAL.out deleted file mode 100644 index e9a75573f8d8a3f18959346d0dfae7f6811a7ef7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_93_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -93_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18698701063791912 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_93_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_93_BA_H_GLOBAL.out deleted file mode 100644 index 03304ece4edd7efad63d27a35f759f4b8d3a06f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_93_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -93_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.29512884219487506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_93_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_93_BA_M_GLOBAL.out deleted file mode 100644 index 504a5a225eb8e080486d09853510c660a95e9feb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_93_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -93_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.07638173898061117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_94_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_94_BA_D_GLOBAL.out deleted file mode 100644 index 3e7e40f36686c14cb8892efc26d95a1cacfd30ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_94_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -94_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.35498029788335167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_94_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_94_BA_H_GLOBAL.out deleted file mode 100644 index 75c5f0d49f985e0e7a11dfd7dc7dd571cd7ab3b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_94_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -94_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.500387724240621 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_94_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_94_BA_M_GLOBAL.out deleted file mode 100644 index fb4783510409ec9daedd29ce3fad6e6d126b6ad6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_94_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -94_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3396806081136068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_95_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_95_BA_D_GLOBAL.out deleted file mode 100644 index 1fe47f0c7c37683d25b75c8f130d8513688ff4f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_95_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -95_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.995444385210673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_95_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_95_BA_H_GLOBAL.out deleted file mode 100644 index b2a0c96b674899106c2973501b5b88289a19b9cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_95_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -95_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7881542563438415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_95_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_95_BA_M_GLOBAL.out deleted file mode 100644 index 0df96c5a7340b985fdd73c6d83662c6cb97bd3a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_95_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -95_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6409329930941264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_99_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_99_BA_D_GLOBAL.out deleted file mode 100644 index b4bb77e8994032ca3140395a3da9091bfbc6e818..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_99_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -99_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.12400025129318237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_99_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_99_BA_H_GLOBAL.out deleted file mode 100644 index 0a712685755ae8988d1fa9c777b0090299bfe0f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_99_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -99_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2111923336982727 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_99_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_99_BA_M_GLOBAL.out deleted file mode 100644 index 14030753138bc70c8df31dd1df29b7651365d90f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_99_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -99_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.025527981917063396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_9_BA_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_9_BA_D_GLOBAL.out deleted file mode 100644 index 32cc8c142377fc04aa0b349742328aed159ba9e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_9_BA_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0898814002672832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_9_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_9_BA_H_GLOBAL.out deleted file mode 100644 index 5f12a6cbb5c72d4ccb1d0544dc2bb6a6b31f30dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_9_BA_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7786549806594849 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/0_9_BA_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/0_9_BA_M_GLOBAL.out deleted file mode 100644 index dc13e82db8744b218f9ac236e2ccbdbecaaba3a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/0_9_BA_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_BA -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.830320680141449 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_289_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_289_BA_H_GLOBAL.out deleted file mode 100644 index b1cafdc80789c1d66cc5e3094ebe2356c3a7703e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_289_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -289_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_290_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_290_BA_H_GLOBAL.out deleted file mode 100644 index 9d5ca2eb5b061d543b28e5987bc30c8f75878f01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_290_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -290_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_291_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_291_BA_H_GLOBAL.out deleted file mode 100644 index 3ddf48b79089a422f8d276da5a39fbd558ff1b7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_291_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -291_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_292_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_292_BA_H_GLOBAL.out deleted file mode 100644 index c91527918632f2e4aed938bc5cb9511c1583f87c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_292_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -292_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_293_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_293_BA_H_GLOBAL.out deleted file mode 100644 index 0d84246a99594b5ecdfacf2019ecfd7f68403c5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_293_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -293_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_294_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_294_BA_H_GLOBAL.out deleted file mode 100644 index 326b6b8707663163bdcee7db1dc72435bb25e8ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_294_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -294_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_295_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_295_BA_H_GLOBAL.out deleted file mode 100644 index 2e8d9b7f822fb5bc3035ec055f8bfb3414626067..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_295_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -295_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_296_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_296_BA_H_GLOBAL.out deleted file mode 100644 index 96f53d1d35f069b192d17e91820f02598f9458ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_296_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -296_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_297_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_297_BA_H_GLOBAL.out deleted file mode 100644 index f5cc33f7e23df4242ec7db26755297d4fc332f0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_297_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -297_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_298_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_298_BA_H_GLOBAL.out deleted file mode 100644 index d0c05a8814fb29e0dca37645c3ceab725c685c06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_298_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -298_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_299_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_299_BA_H_GLOBAL.out deleted file mode 100644 index 38b3c9338c01a81cf37f02e7ba8a37b7f02701ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_299_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -299_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_300_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_300_BA_H_GLOBAL.out deleted file mode 100644 index f2b9b19ecda3578de8d430af4c88b53f4ada5f08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_300_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -300_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_301_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_301_BA_H_GLOBAL.out deleted file mode 100644 index f48e4670a82b50b2dff93cfa97adba878c86f59a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_301_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -301_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_302_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_302_BA_H_GLOBAL.out deleted file mode 100644 index eac710aea9f82e0522f57a827ed3a1b94f3c484a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_302_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -302_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_303_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_303_BA_H_GLOBAL.out deleted file mode 100644 index abe2d0b25dbc773b9641b0c0a4b0489c84b0cc45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_303_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -303_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_304_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_304_BA_H_GLOBAL.out deleted file mode 100644 index 9647aace1cdb8cd8c20575825708b306be1c24d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_304_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -304_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_305_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_305_BA_H_GLOBAL.out deleted file mode 100644 index a46720b1b74c249bb779ca4c8c8d80976af7ba2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_305_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -305_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_306_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_306_BA_H_GLOBAL.out deleted file mode 100644 index 143d745011be83b0f5193afe6ebc71b5ff35f158..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_306_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -306_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_307_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_307_BA_H_GLOBAL.out deleted file mode 100644 index 3cc7ee8be9d75ebfbba18e29f8ff478fabca30ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_307_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -307_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_308_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_308_BA_H_GLOBAL.out deleted file mode 100644 index dc5211acc431d2c47c039fd2a465ba2f6f2eba27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_308_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -308_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_309_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_309_BA_H_GLOBAL.out deleted file mode 100644 index 4fc6ef97290992d436e6e83e9f05de4cffa9c3aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_309_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -309_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_310_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_310_BA_H_GLOBAL.out deleted file mode 100644 index b01c5becba258f2d060356841c270911f8553c94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_310_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -310_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_311_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_311_BA_H_GLOBAL.out deleted file mode 100644 index 5f117bbae6c5756631a56a57b3c1e18d3e073648..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_311_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -311_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_312_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_312_BA_H_GLOBAL.out deleted file mode 100644 index 41cff784c27eb8c4cc1d389b0843e1be409ff973..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_312_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -312_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_313_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_313_BA_H_GLOBAL.out deleted file mode 100644 index cc6c5709df6a4bb58f0d0f134207fbfa833ffb18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_313_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -313_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_314_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_314_BA_H_GLOBAL.out deleted file mode 100644 index 97448ea98b51def882b96d43a42cedd7eb9c4021..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_314_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -314_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_315_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_315_BA_H_GLOBAL.out deleted file mode 100644 index 918f9c7c42d7ff862ee5bdfd15f663c00ece2050..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_315_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -315_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_316_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_316_BA_H_GLOBAL.out deleted file mode 100644 index 063b72df6079e4583defd5872ac8249ef0955b7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_316_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -316_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_317_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_317_BA_H_GLOBAL.out deleted file mode 100644 index 666324e5508254990e8c972d2dbf9e5842e9048b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_317_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -317_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_318_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_318_BA_H_GLOBAL.out deleted file mode 100644 index ad24f3a6a59a2a1891d1a3a35faf872855a228a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_318_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -318_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_319_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_319_BA_H_GLOBAL.out deleted file mode 100644 index 5c521527fd1cfaeeb934424e334de9d5feba4630..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_319_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -319_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_320_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_320_BA_H_GLOBAL.out deleted file mode 100644 index 7d267a304200535ccea8488e5078f8831eddf277..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_320_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -320_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_321_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_321_BA_H_GLOBAL.out deleted file mode 100644 index 8752eb4cd107e102c56f49aa671aa80c9a28f6c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_321_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -321_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_322_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_322_BA_H_GLOBAL.out deleted file mode 100644 index b1e3b542bb4fb77d8fa272c59d419e33a810da65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_322_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -322_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_323_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_323_BA_H_GLOBAL.out deleted file mode 100644 index 74948fad68d450b4522d62434a76a94f992bb4f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_323_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -323_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_327_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_327_BA_H_GLOBAL.out deleted file mode 100644 index 75b877c32d113250dc12ae023f41e108c1cb5198..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_327_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -327_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_328_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_328_BA_H_GLOBAL.out deleted file mode 100644 index 09736da836d872f1bdee092f6a117ca7a693442a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_328_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -328_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_335_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_335_BA_H_GLOBAL.out deleted file mode 100644 index 5612e27e0eb729f68bf6292585d5de5d5ef4bf1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_335_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -335_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_339_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_339_BA_H_GLOBAL.out deleted file mode 100644 index 307d631bc6edfa2fc240288c25cc531a915115b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_339_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -339_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T1/1_346_BA_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T1/1_346_BA_H_GLOBAL.out deleted file mode 100644 index 2707421f14d6efac612dd8279b43b69e892ecd56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T1/1_346_BA_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -346_BA -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199512_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199512_D_GLOBAL.out deleted file mode 100644 index 1b5f8a4958a2f4f0b53c0d056a4b8f60e03003e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.16248897711435953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199512_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199512_H_GLOBAL.out deleted file mode 100644 index 835d846b29fb8ec03a27a49bc67f9423f1828de3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.03408371607462565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199512_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199512_M_GLOBAL.out deleted file mode 100644 index ccc985524762f7d50f22bc3709185e9b8fba76ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.0985295295715332 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199601_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199601_D_GLOBAL.out deleted file mode 100644 index 99dd6a1122e947183866c412504fc0ee22cb0c87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.06666353146235147 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199601_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199601_H_GLOBAL.out deleted file mode 100644 index c5e11a5fe9193180fa06cf425d1cee4c6fcc7f0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.1605215589205424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199601_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199601_M_GLOBAL.out deleted file mode 100644 index 174d88e7fa64b0e32f705ac35c331d96a746b954..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.020616439978281657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199602_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199602_D_GLOBAL.out deleted file mode 100644 index 0e6f5e0c4a0988792d70f728959a8fe41bcfdbab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.12735363642374675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199602_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199602_H_GLOBAL.out deleted file mode 100644 index 7a943a8764cf1a5e5034c0397501e81b291f9883..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.12447226444880168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199602_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199602_M_GLOBAL.out deleted file mode 100644 index bfb27150b5e4fc408a4344d94319caef67c30ec2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.12031437158584594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199603_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199603_D_GLOBAL.out deleted file mode 100644 index 736255044efecae6d05baa9d789e2db46719c1f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.02626509666442871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199603_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199603_H_GLOBAL.out deleted file mode 100644 index 1ad27cf2b55e90036ec767a9edaee31739cc39a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.020844455560048422 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199603_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199603_M_GLOBAL.out deleted file mode 100644 index 8ed60868116bbed6c85338372666cda43809b909..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.13993112643559774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199604_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199604_D_GLOBAL.out deleted file mode 100644 index 88df1dc50d24421ef8f7f6bdfadbeaf78af7a0d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.07337585290273031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199604_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199604_H_GLOBAL.out deleted file mode 100644 index 41b6b467886dcf88d1a3540b8020ef581529159d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.02272787094116211 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199604_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199604_M_GLOBAL.out deleted file mode 100644 index c759740f6aef0cda5effce63aa1d8f1abf6b338e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.15281854073206583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199605_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199605_D_GLOBAL.out deleted file mode 100644 index 7a76f04816c333e9fdecd3942976bdea5288f78c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.07338703870773315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199605_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199605_H_GLOBAL.out deleted file mode 100644 index e5a575cad2ce6e324dff5b1d77a698163d8818eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.15949928363164265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199605_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199605_M_GLOBAL.out deleted file mode 100644 index d1457ff82adafd5e83dc8851c78ae8deae761d57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.08083932002385458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199606_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199606_D_GLOBAL.out deleted file mode 100644 index ab4e82e3266127c7ecc77e3831859a9551c9ce87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.028229780991872153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199606_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199606_H_GLOBAL.out deleted file mode 100644 index 20914fe2d74c0f0657c51f047d62b365042b21a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.02079982360204061 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199606_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199606_M_GLOBAL.out deleted file mode 100644 index a4fe3b606a611431eb6bfbb1ba7005a9b1fa06e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.03433002233505249 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199607_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199607_D_GLOBAL.out deleted file mode 100644 index 00f7ff32f425e2ece42a7e165c4918491d08f7aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.023187851905822753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199607_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199607_H_GLOBAL.out deleted file mode 100644 index ce99dfe2028e2ef572744a53b023e5c22a29d965..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.02533587614695231 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199607_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199607_M_GLOBAL.out deleted file mode 100644 index 411e24786afd16823b7f268cb2cc46b7a7082207..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.020824766159057616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199608_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199608_D_GLOBAL.out deleted file mode 100644 index 57387ac55363c37e3f01f29d20972515996db58b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.09195200204849244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199608_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199608_H_GLOBAL.out deleted file mode 100644 index 4e29e6a0b2d8289831cac5cec4790ed70aec10de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.02198338508605957 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199608_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199608_M_GLOBAL.out deleted file mode 100644 index 96785e99e5d9d28cac14f41485aaeed8c1f21c6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.02662597894668579 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199609_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199609_D_GLOBAL.out deleted file mode 100644 index 3ef1c618afac5701dd13913880dbbd20def87462..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.07976646820704142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199609_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199609_H_GLOBAL.out deleted file mode 100644 index 3661b48f16c5c2ad49b13f39f3a9cc568e3ad39c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.024671932061513264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199609_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199609_M_GLOBAL.out deleted file mode 100644 index 4477eb3a3161bc8f58ef0e11951e547f595a6ec3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.11176360448201497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199610_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199610_D_GLOBAL.out deleted file mode 100644 index 5dee1a04b8d16b2adb07ed8c3c90d3d6921c0582..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.04076999028523763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199610_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199610_H_GLOBAL.out deleted file mode 100644 index 72e6181b5ce149668c0a5da58c43edbc4bedd76c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.030901499589284263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199610_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199610_M_GLOBAL.out deleted file mode 100644 index abf09f587f9a47752cb0f9f8ca7938c868d4d311..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.0737091620763143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199611_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199611_D_GLOBAL.out deleted file mode 100644 index 1501dc6cf36f8b7186ace61808aa797f4e3d086f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.023300496737162273 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199611_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199611_H_GLOBAL.out deleted file mode 100644 index 982f7b98aa8be9b602cb365d7f0f92f6feaadc0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.023867416381835937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199611_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199611_M_GLOBAL.out deleted file mode 100644 index 2b405dacee724a968b5ab7229efcad1b1d183586..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.07925082445144653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199612_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199612_D_GLOBAL.out deleted file mode 100644 index bf79d9c52ee0ccc969ab6fd96847ed4efbc28b0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.1832411011060079 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199612_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199612_H_GLOBAL.out deleted file mode 100644 index 545856e2c0125987e6826c974aebc63d3c658bd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.1613362471262614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199612_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199612_M_GLOBAL.out deleted file mode 100644 index d79136540e554a4449159c10b643ced6a7c584fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.12651277383168538 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199701_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199701_D_GLOBAL.out deleted file mode 100644 index c91dfb7a55058048847e90a57211f9ccf20013f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.08447869221369425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199701_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199701_H_GLOBAL.out deleted file mode 100644 index 7956b893ef3a2243e57dcca91efb5689d63c5f5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.03584770361582438 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199701_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199701_M_GLOBAL.out deleted file mode 100644 index 97bc9783bc359bb5d3be4adabbc2250f88215739..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.02633711099624634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199702_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199702_D_GLOBAL.out deleted file mode 100644 index b0494cbe7ed3641d8bab224c58e0a6199e5b6067..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.1870406190554301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199702_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199702_H_GLOBAL.out deleted file mode 100644 index fa951f213ec524bedc3987432bd7faa72e60cb24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.025672650337219237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199702_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199702_M_GLOBAL.out deleted file mode 100644 index 7758b440ee5dea852891eda0ea96c0e9079ff0e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.0292725404103597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199703_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199703_D_GLOBAL.out deleted file mode 100644 index 28a62352275652eac86b34ce7542592d5564409e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.055571385224660236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199703_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199703_H_GLOBAL.out deleted file mode 100644 index ccabd552363a1096a7c53bf4d9f1a861359564af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.026108860969543457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199703_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199703_M_GLOBAL.out deleted file mode 100644 index 4364cdd443980792ac8e098b9ae17b12a92a4b04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.028864463170369465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199704_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199704_D_GLOBAL.out deleted file mode 100644 index 2bfd6ab45ddf94ef4b76a313afd0322dafa76074..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.04339828093846639 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199704_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199704_H_GLOBAL.out deleted file mode 100644 index 965d2cd77abdbbea0d9a70c8cc999d98c994ac07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.025793381532033286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199704_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199704_M_GLOBAL.out deleted file mode 100644 index a631b76b4dcabdabc121dba8ff0cfca85d515e59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.10951085488001505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199705_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199705_D_GLOBAL.out deleted file mode 100644 index ca326ed0d3782b8c43ff5e19846950529173e3f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.031555084387461345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199705_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199705_H_GLOBAL.out deleted file mode 100644 index 9ed79fbc651d92c834bd475448dca9f6fc7d3f96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.033930528163909915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199705_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199705_M_GLOBAL.out deleted file mode 100644 index 1a3dc9573b12f09a33b6fbdadda8a587d44c13af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.04527864853541056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199706_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199706_D_GLOBAL.out deleted file mode 100644 index d9ab3e00e2d967b47cc60fcb8c7a92911bd8d0d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.13106495539347332 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199706_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199706_H_GLOBAL.out deleted file mode 100644 index c5eacf360a2946c5d672ca0252b252ffc32db584..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.027196383476257323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199706_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199706_M_GLOBAL.out deleted file mode 100644 index 9ac80668760cdcb2e4dedc6739a65db51d713f2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.02448688745498657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199707_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199707_D_GLOBAL.out deleted file mode 100644 index 4117f0507a4f25ebe4f176e6e25493625eeee31c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.044800412654876706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199707_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199707_H_GLOBAL.out deleted file mode 100644 index 513185d32b73c42e68bdc0cada60b0313d50ca3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.12697030703226725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199707_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199707_M_GLOBAL.out deleted file mode 100644 index 2ef20aa843baeb0bfa307b4f6bbaeada18dad855..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.036132979393005374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199708_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199708_D_GLOBAL.out deleted file mode 100644 index 0cc33f9934f84643f82f49e81b25d3e8bf8a9b6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.08548819621404012 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199708_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199708_H_GLOBAL.out deleted file mode 100644 index 91296a36494c6ab535d63ad0f97afd6da4579ca4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.030675689379374187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199708_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199708_M_GLOBAL.out deleted file mode 100644 index 6a24346088af03a8f6d25164dc636078e57216b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.028808200359344484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199709_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199709_D_GLOBAL.out deleted file mode 100644 index 5ece3e2db408f868c5ac353e649d102b357f7e2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.19365983406702678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199709_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199709_H_GLOBAL.out deleted file mode 100644 index 2f35d5bbbcea2d0a09ec40bd2dce012a3dff45ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.029287413756052653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199709_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199709_M_GLOBAL.out deleted file mode 100644 index 11b82c5b523975d34eac48ba2d2d9d4959d0eeb1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.031052740414937337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199710_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199710_D_GLOBAL.out deleted file mode 100644 index 804cf3bcd6d28f9fcff915a0014d4ffb375c8436..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.15912249485651653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199710_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199710_H_GLOBAL.out deleted file mode 100644 index d7d1c4f2ebfd0ceec18233780901001377b1e174..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.03183435201644898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199710_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199710_M_GLOBAL.out deleted file mode 100644 index c990a6e2d26aa301c9fa55fd705757f21339ca6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.10975536505381266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199711_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199711_D_GLOBAL.out deleted file mode 100644 index 7d4bd62641d5b3d4c5eb75b98ec934437c077f9f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.036172914505004886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199711_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199711_H_GLOBAL.out deleted file mode 100644 index fbbeec5bdcb85cf6474840b65e66c11f98c29be1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.08398063977559407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199711_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199711_M_GLOBAL.out deleted file mode 100644 index 8bc4669d78f45dd6ac777fb878a9780b8d4706d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.027045071125030518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199712_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199712_D_GLOBAL.out deleted file mode 100644 index 2c1f53a0bd7ee1df0a2830c8a4b3fb8ae8f34090..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.03322076002756755 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199712_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199712_H_GLOBAL.out deleted file mode 100644 index 122a88dccebe3c070f10e10b547b45aca1b7eb7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.02869422435760498 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199712_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199712_M_GLOBAL.out deleted file mode 100644 index e1afcb4d392744cd04d00215c509645fca5acb04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.16184343099594117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199801_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199801_D_GLOBAL.out deleted file mode 100644 index 6baa39a1d20162ad2153ab24ea26683fbbbc2dc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.026977328459421794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199801_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199801_H_GLOBAL.out deleted file mode 100644 index acbeabd4d602f824704e431bfee942400a2cec6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.028488115469614664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199801_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199801_M_GLOBAL.out deleted file mode 100644 index 9e8325e065edb91bf1e6751cbbc74e7e3e8d41a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.029123735427856446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199802_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199802_D_GLOBAL.out deleted file mode 100644 index ad7dd68817ac58d98f5a2137e1e732418f14a74d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.18681325117746989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199802_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199802_H_GLOBAL.out deleted file mode 100644 index 60e06ad4c8e0ee37b39017fe5c97a7e56aa6fd7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.13642967939376832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199802_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199802_M_GLOBAL.out deleted file mode 100644 index 79c434e9ccb9b9effd73f58f1091cc28d80d7127..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.18940951824188232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199803_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199803_D_GLOBAL.out deleted file mode 100644 index 932e9351a08eb24dac937b95beee694642d66604..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.12102634906768799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199803_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199803_H_GLOBAL.out deleted file mode 100644 index 2293f6d5da2e3a0b75356fc7a2ff038e96572721..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.21022106011708577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199803_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199803_M_GLOBAL.out deleted file mode 100644 index 97c5c935605d1bab80ac01e81ae6ccc81bb1ca91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.03913740714391072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199804_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199804_D_GLOBAL.out deleted file mode 100644 index c75c29cbeefd008f45ba2c410d1ff48bd20a57b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.03835788170496623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199804_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199804_H_GLOBAL.out deleted file mode 100644 index 5fe5fba2365d3d9497f954286dfc5f11b4a04f1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.03679966926574707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199804_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199804_M_GLOBAL.out deleted file mode 100644 index fd01d7adc26fa632c757159e4c878d7bb0ab1010..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.18769497474034627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199805_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199805_D_GLOBAL.out deleted file mode 100644 index 71e0ea47b0cf59efc7f9f92f4338891844ee2563..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.12084733645121257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199805_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199805_H_GLOBAL.out deleted file mode 100644 index e32a907acde5467ba642beae14e03b40e4cb3ed4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.029949084917704264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199805_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199805_M_GLOBAL.out deleted file mode 100644 index 409fc1773fce2d89f7db685d1f47c78d988b087b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.033854873975118 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199806_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199806_D_GLOBAL.out deleted file mode 100644 index 6e64a212271e973641af01dc7fe94025300de075..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.05493738651275635 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199806_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199806_H_GLOBAL.out deleted file mode 100644 index 1f9fa23a4718ef0ddd5c169e36ea4734d0691608..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.051244568824768064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199806_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199806_M_GLOBAL.out deleted file mode 100644 index 865e0078b97f8dc2210e44cb17891598d2441cec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.03080342213312785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199807_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199807_D_GLOBAL.out deleted file mode 100644 index 7b5ea5b9bee85311cc2e7c24e825ca6d3cbcbcce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.03622168302536011 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199807_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199807_H_GLOBAL.out deleted file mode 100644 index cb25dc5d53d5d8844686d84bb86f9b7fd39b9b75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.1237284223238627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199807_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199807_M_GLOBAL.out deleted file mode 100644 index c413124446636e8b4865c11c23f296cbeaf14938..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.03244078556696574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199808_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199808_D_GLOBAL.out deleted file mode 100644 index 7a47fb8865b7c14cec6d1c47fcfb091ca89a8230..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.1411187489827474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199808_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199808_H_GLOBAL.out deleted file mode 100644 index 4d078832fa022614713a5ba7d5df30c6c23c0030..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.038372878233591715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199808_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199808_M_GLOBAL.out deleted file mode 100644 index 629e1e4ca676de8c98926a565ff64d3244868d50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.05461248556772868 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199809_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199809_D_GLOBAL.out deleted file mode 100644 index dd71e67c53445e23faef09a272d8e0edc34cb161..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.10410519440968831 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199809_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199809_H_GLOBAL.out deleted file mode 100644 index efd6cc7e328fab423212d37b29df4395bf6cf141..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.1212515672047933 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199809_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199809_M_GLOBAL.out deleted file mode 100644 index 9f3798fab54a894afc991f817842c55540ad9b75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.028523178895314534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199810_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199810_D_GLOBAL.out deleted file mode 100644 index b0c0825d0b784ea31973398313177db0038bf529..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.03604633013407389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199810_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199810_H_GLOBAL.out deleted file mode 100644 index 60a296f75643f3e08a996291ddb9e17266744ced..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.044671507676442464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199810_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199810_M_GLOBAL.out deleted file mode 100644 index 1e9f6352b73752554b61b20b5b4c04755a9214ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.16694790124893188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199811_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199811_D_GLOBAL.out deleted file mode 100644 index b258b1858bf0e43bd55cf734d99f3b49e93f7132..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.11324957609176636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199811_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199811_H_GLOBAL.out deleted file mode 100644 index cc479c020f7091238acec0b20501a9ac66533ec4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.0362689216931661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199811_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199811_M_GLOBAL.out deleted file mode 100644 index 81970ea884d840f461625bb126ed0d23d0eec13b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.03446823755900065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199812_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199812_D_GLOBAL.out deleted file mode 100644 index 4741c1ffb071566ef1285306d45fdbe51aec1211..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.03666939735412598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199812_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199812_H_GLOBAL.out deleted file mode 100644 index 8e1ec138bba613f27914c0c818de15bb3a2412ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.055336316426595054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199812_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199812_M_GLOBAL.out deleted file mode 100644 index db4bbaed9b58d49385ff03367ceef46ac46f27e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.036435918013254805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199901_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199901_D_GLOBAL.out deleted file mode 100644 index b015a0871615c37c9db497129b1ca94f23108b88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.05626091957092285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199901_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199901_H_GLOBAL.out deleted file mode 100644 index d29f2b0f879eeb44d616c9cf7319977953588b38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.13967715899149577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199901_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199901_M_GLOBAL.out deleted file mode 100644 index cee535f7272d612963b0c99e320d61038a9dfe98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.12629888852437338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199902_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199902_D_GLOBAL.out deleted file mode 100644 index e77444ede8dfc16dc51932fbe4e2be6046240225..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.03189311424891154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199902_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199902_H_GLOBAL.out deleted file mode 100644 index 92a4010a0ce58a5cc7a14a6870d8793a4fba2388..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.03375024795532226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199902_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199902_M_GLOBAL.out deleted file mode 100644 index 86b1eb26967605bb730cb2fbcf1d51318d54e64e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.18823493719100953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199903_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199903_D_GLOBAL.out deleted file mode 100644 index 3470eae9ffa53715d26e964ad14067f92cb65b59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.025993303457895914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199903_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199903_H_GLOBAL.out deleted file mode 100644 index e45cdc3e559032108f6c269315e624474b6abb58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.05114343563715617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199903_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199903_M_GLOBAL.out deleted file mode 100644 index 22b88285f3a4574a4091f3efda129de98cd347e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.04396164417266846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199904_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199904_D_GLOBAL.out deleted file mode 100644 index 7ecc3f465ec94d1f26e044b4af9d21116ebff25a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.0542389988899231 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199904_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199904_H_GLOBAL.out deleted file mode 100644 index 3b58d1758b756de5f2bf31f84c149d8b8f5f6b98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.05075613657633463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199904_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199904_M_GLOBAL.out deleted file mode 100644 index c808a27849e9ade361ef8f2bd052c20a319ca35b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.03819968303044637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199905_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199905_D_GLOBAL.out deleted file mode 100644 index 4cb39395f1f47798d7e29126e5972c1f0b0544e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.03535048166910807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199905_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199905_H_GLOBAL.out deleted file mode 100644 index 6270f185cffd6e45345720312f9054179efcbca0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.12296818494796753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199905_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199905_M_GLOBAL.out deleted file mode 100644 index 6baa0d3c12c04c9eced4f8c641945fccde9698dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.029669312636057536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199906_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199906_D_GLOBAL.out deleted file mode 100644 index 78f62ce64ffbb3127a3c14d67e0578c9fe1a266e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.03898460467656453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199906_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199906_H_GLOBAL.out deleted file mode 100644 index fac4cd4625adfd9bc53b04180dc604a5d25fa587..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.03604762156804402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199906_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199906_M_GLOBAL.out deleted file mode 100644 index b51dbcb3001be35e1abee9540368e479764e7093..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.18159762620925904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199907_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199907_D_GLOBAL.out deleted file mode 100644 index 6c59c082fe29b753bbe8c97519a18767d92e30e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.03625556230545044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199907_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199907_H_GLOBAL.out deleted file mode 100644 index e12546907fdbdefe712192a0913affc6b6e84739..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.13271209398905437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199907_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199907_M_GLOBAL.out deleted file mode 100644 index 554ee26f614c064687f7d619f74cd4729ab42031..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.037870395183563235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199908_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199908_D_GLOBAL.out deleted file mode 100644 index 71cae61e6951c9a69076e3b1aed41db99a23fe55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.039466389020284015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199908_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199908_H_GLOBAL.out deleted file mode 100644 index bbc8cf8ddc9cd14fa97454d3b2490583d20b7a4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.02986101309458415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199908_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199908_M_GLOBAL.out deleted file mode 100644 index 656701a30444ed84fa4360895f30ebf30c58b82e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.034573622544606525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199909_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199909_D_GLOBAL.out deleted file mode 100644 index d1400065a3cc4b732bfb48dd07890500b8b42666..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.04334735870361328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199909_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199909_H_GLOBAL.out deleted file mode 100644 index a4e6f601ee9555b74b1e0f6dee3a2930aff035b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.05596081813176473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199909_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199909_M_GLOBAL.out deleted file mode 100644 index 36f5be3a06578a8d047cefaba08e2402d23d757a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.037233988444010414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199910_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199910_D_GLOBAL.out deleted file mode 100644 index 239388947425a44a2ac7b377e422c9442666f702..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.1078407327334086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199910_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199910_H_GLOBAL.out deleted file mode 100644 index 180cd554da959b937dca1cae16ade67474069cbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.025289666652679444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199910_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199910_M_GLOBAL.out deleted file mode 100644 index 63549ecf81bbfcbdec634c269efa85264b237e6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.03470718463261922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199911_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199911_D_GLOBAL.out deleted file mode 100644 index 9a41ec4f2ea6f012ef046bbc8ea2d5b1d3906d48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.0322434663772583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199911_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199911_H_GLOBAL.out deleted file mode 100644 index 622506a37db310cf19630f9f80fc2943736d0ff1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.04716881513595581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199911_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199911_M_GLOBAL.out deleted file mode 100644 index e23a269ca465be2190e38cc5bfba1221f70663bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.03477031389872233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199912_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199912_D_GLOBAL.out deleted file mode 100644 index ebd847c56a6aacf915ce9a861af6c5e7d7d2f9eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.03817989031473796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199912_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199912_H_GLOBAL.out deleted file mode 100644 index e924803039c7a7e729d9660a9e86c55c6f2b6afc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.034322122732798256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_199912_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_199912_M_GLOBAL.out deleted file mode 100644 index e71fb497fe26467ebec98fc85d4a8f632165ded9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_199912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.04613619645436605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200001_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200001_D_GLOBAL.out deleted file mode 100644 index 9c2116c952784460c31abd6318952a10eed760eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.04603667259216308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200001_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200001_H_GLOBAL.out deleted file mode 100644 index 76ea6a0b101820f90def8d649db03f1d00c432a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.17772141695022584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200001_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200001_M_GLOBAL.out deleted file mode 100644 index c1ce0c3a4054126df4648276d1c0f066b2948f25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.0503422737121582 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200002_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200002_D_GLOBAL.out deleted file mode 100644 index 0fe227e5018d55b0ae06476939df62b0ecf3efbf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.04333093563715617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200002_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200002_H_GLOBAL.out deleted file mode 100644 index e9843c71936b0a29063013997589b68e7c6e49cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.13335270086924236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200002_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200002_M_GLOBAL.out deleted file mode 100644 index ca83bd3a8ed881be33bcdd592d8d2de37752586c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.14461996555328369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200003_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200003_D_GLOBAL.out deleted file mode 100644 index cf089124ee82a4a5b5d73533ce39365db7fe6be1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.042502049605051676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200003_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200003_H_GLOBAL.out deleted file mode 100644 index 27b5cc8d8010f96d09ca97ec7b95e73d84d65e38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.13403085072835286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200003_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200003_M_GLOBAL.out deleted file mode 100644 index 263fe40a3dc5b0c990477d14448052a4bf2ff01f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.18572131792704263 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200004_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200004_D_GLOBAL.out deleted file mode 100644 index e5983f385bd94c1469c18c45a8d86c62b053a494..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.04708942969640096 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200004_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200004_H_GLOBAL.out deleted file mode 100644 index 1dd58058be8834f12c397f1061383988b15600c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.10848085482915243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200004_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200004_M_GLOBAL.out deleted file mode 100644 index 63af5d86d2958497e4733cae515a4433852d3592..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.1813636859258016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200005_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200005_D_GLOBAL.out deleted file mode 100644 index 9bf64be3d0b472d88ab4b389e34ac996aa2e3a64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.21122763951619467 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200005_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200005_H_GLOBAL.out deleted file mode 100644 index fc2490ee05c63c85169c63e192455355db339b95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.03344757954279582 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200005_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200005_M_GLOBAL.out deleted file mode 100644 index f3eafea8682d83d0e881ea9385feb9b0c3c5244e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.054258279005686444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200006_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200006_D_GLOBAL.out deleted file mode 100644 index db753beac7a311cd95cba32b3492c54c3cb7bda8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.18926986853281658 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200006_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200006_H_GLOBAL.out deleted file mode 100644 index 4badae0181affc9e1b87a0e7da47128922ca7817..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.033464598655700686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200006_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200006_M_GLOBAL.out deleted file mode 100644 index c7490abc841920abb6910ec7c233eae1d3681a9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.04360721508661906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200007_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200007_D_GLOBAL.out deleted file mode 100644 index f423d81e56d286d6a9d4894c121efcf64d2090e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.03991121053695679 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200007_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200007_H_GLOBAL.out deleted file mode 100644 index 7589095c063b8c10d8d2cbf964bad729e032505c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.035881499449412026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200007_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200007_M_GLOBAL.out deleted file mode 100644 index defb49a7797120d6a959d35b795f9daf049897f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.035513448715209964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200008_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200008_D_GLOBAL.out deleted file mode 100644 index dfb9c9f3d9975fa849096178a6c39a59fb072a4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.20002763668696086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200008_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200008_H_GLOBAL.out deleted file mode 100644 index 8d6623dc785b67d3c7b6f920a041129ceeccd8d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.15714759826660157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200008_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200008_M_GLOBAL.out deleted file mode 100644 index 6aa2ed93c1c39831d39f8bdc6b922f160b701454..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.20291802088419597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200009_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200009_D_GLOBAL.out deleted file mode 100644 index 4ed2922157bce5d8061b90d430b8e4c7fa9c7c07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.12823753754297892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200009_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200009_H_GLOBAL.out deleted file mode 100644 index e90ae49e4a242273d192925f795acde334cb4636..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.13992177645365397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200009_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200009_M_GLOBAL.out deleted file mode 100644 index bec0b8a6e5eb77b25264fe21be4e700054508dbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.12911590735117595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200010_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200010_D_GLOBAL.out deleted file mode 100644 index f7ce2ec205f2485b41c66ff58dd9066721469236..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.10781269868214925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200010_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200010_H_GLOBAL.out deleted file mode 100644 index faf45c8191d02f84fbf531cad61623f4cc54f2e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.0359454353650411 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200010_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200010_M_GLOBAL.out deleted file mode 100644 index dded1be4de5711053cd48805264b39ccd0ee9591..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.03991722663243612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200011_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200011_D_GLOBAL.out deleted file mode 100644 index e52fa66ba6d7376f30a033f675675d23d924d187..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.20925216674804686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200011_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200011_H_GLOBAL.out deleted file mode 100644 index f9eb242965a0c8f585a44c070ddfba68074f73df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.11582593123118083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200011_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200011_M_GLOBAL.out deleted file mode 100644 index 190cfe819eafeb3c0c3fb2ad75dfb153514da8f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.19852352142333984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200012_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200012_D_GLOBAL.out deleted file mode 100644 index 04f5efd9ae40803378b59d335b4cd0586bba11c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.031142163276672363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200012_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200012_H_GLOBAL.out deleted file mode 100644 index b0dc0919a9a1ea667bf343c5442d012e25ee80da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.05348430871963501 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200012_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200012_M_GLOBAL.out deleted file mode 100644 index 823daedf2c556fa844e961a28c03614933f6f984..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.039576868216196694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200101_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200101_D_GLOBAL.out deleted file mode 100644 index 50838755cfc523f530c6ea852199c874d8b753dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.14564726750055948 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200101_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200101_H_GLOBAL.out deleted file mode 100644 index 60673fe28695b76add4c2ee277787167f9e32a89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.17461805740992228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200101_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200101_M_GLOBAL.out deleted file mode 100644 index 723ae111caee01dca615b20b75742c9f9cda563c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.038456801573435465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200102_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200102_D_GLOBAL.out deleted file mode 100644 index 6d558309eab2157cea57d63e78cef29116b53db6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.15958939790725707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200102_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200102_H_GLOBAL.out deleted file mode 100644 index 97721820db6499609c0efe770476ec55e7ae69c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.13679275512695313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200102_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200102_M_GLOBAL.out deleted file mode 100644 index 705c7d7dd25685030a451be21eca99e32bfbfa94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.03593365351359049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200103_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200103_D_GLOBAL.out deleted file mode 100644 index 95193d8cd74a0d78fd98cb26ada53e030a59ab7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.030852365493774413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200103_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200103_H_GLOBAL.out deleted file mode 100644 index 082f02855f15c3c2d9ceb784f4acbb85650c5f70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.03798192342122396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200103_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200103_M_GLOBAL.out deleted file mode 100644 index a5cef2619f6951f784654f6386acf7ba5151e5f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.03785453637440999 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200104_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200104_D_GLOBAL.out deleted file mode 100644 index c24c8ae6995c153570a4ca2a58156792d11cb87c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.15526923735936482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200104_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200104_H_GLOBAL.out deleted file mode 100644 index a7f10b570c65497ca3163f672466473ce95c422c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.03627490599950155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200104_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200104_M_GLOBAL.out deleted file mode 100644 index 45ffe09699645e02443ffae8f922f591ccdf5720..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.05223391056060791 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200105_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200105_D_GLOBAL.out deleted file mode 100644 index 37af29822b246f7fdb32f19fd3ff135885218dea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.039697607358296715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200105_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200105_H_GLOBAL.out deleted file mode 100644 index b901ae1d7e8300db1e28399cec69d417f2865538..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.13337789376576742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200105_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200105_M_GLOBAL.out deleted file mode 100644 index 45a797eddf95b45418453a1c5340e73374240c59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.04220297733942668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200106_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200106_D_GLOBAL.out deleted file mode 100644 index f7780e5a194ea166080f87c274398e29f1e9487d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.049639137585957845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200106_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200106_H_GLOBAL.out deleted file mode 100644 index 9a59b4e2884f781b9f8911cc4b678cf90297151a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.03310503959655762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200106_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200106_M_GLOBAL.out deleted file mode 100644 index 5301d2a44e0fe3c5bbf0a36367632371400ceda4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.055777700742085774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200107_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200107_D_GLOBAL.out deleted file mode 100644 index ae71fbcd1fc66c42b7ddf0d778f86163bafeee1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.20910345713297526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200107_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200107_H_GLOBAL.out deleted file mode 100644 index 0e2441e2041a4a8d37eec94011a244b55958f11c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.19291446606318155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200107_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200107_M_GLOBAL.out deleted file mode 100644 index 500eef1435791862762ee320ede2a2dde274bbe2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.050252179304758705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200108_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200108_D_GLOBAL.out deleted file mode 100644 index a215a038471cd46feeb6e4754ef78dde995236b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.05435199737548828 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200108_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200108_H_GLOBAL.out deleted file mode 100644 index 82954440924acfe3259d0ff62fad28a773bb08cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.11007342338562012 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200108_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200108_M_GLOBAL.out deleted file mode 100644 index 6a125f0790e0f4c8f14bac4705c34bb38cbf10df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.19103670914967855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200109_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200109_D_GLOBAL.out deleted file mode 100644 index 896b612aa67333a7956780619608d9fea2a99458..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.034427213668823245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200109_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200109_H_GLOBAL.out deleted file mode 100644 index 44206b59cdb313a8440e50a98a5737f86be25c03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.041588886578877764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200109_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200109_M_GLOBAL.out deleted file mode 100644 index 2ccb59392ba6565d16ab1e2cd4e040cd460b7202..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.044424291451772055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200110_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200110_D_GLOBAL.out deleted file mode 100644 index 7cf571c4e5f1a3856d8ba2ce5972e9a66655d13c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.21690930128097535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200110_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200110_H_GLOBAL.out deleted file mode 100644 index d4bb773b2732cba10097fe065e5e8c9f13fe2c4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.18784218231836955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200110_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200110_M_GLOBAL.out deleted file mode 100644 index c18231122d7ae6d8145e5bce70420a0b9775ad8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.19376498063405354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200111_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200111_D_GLOBAL.out deleted file mode 100644 index 267b4f9ff68c86f3766d22fa96de0a46c05bd993..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.0568337082862854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200111_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200111_H_GLOBAL.out deleted file mode 100644 index 7d5c7be2dc2a617b48f69ad76a11d1d6465bdecb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.12673285404841106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200111_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200111_M_GLOBAL.out deleted file mode 100644 index 04e5b2d05c214da20e5cb6eba708b31d64289f27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.04240887959798177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200112_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200112_D_GLOBAL.out deleted file mode 100644 index a9a247b4166b36789bad417912bc0cb00c85b831..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.03758979638417562 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200112_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200112_H_GLOBAL.out deleted file mode 100644 index f8f61125ad7915afeb2fece0480b7c49394044be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.03310682773590088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200112_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200112_M_GLOBAL.out deleted file mode 100644 index ffc972d532cd87ffe5827f84674a102d52853506..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.06164381901423136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200201_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200201_D_GLOBAL.out deleted file mode 100644 index b8fe076e5094604181f3d85b90fbbd4aa1fe470e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.043085058530171715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200201_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200201_H_GLOBAL.out deleted file mode 100644 index 3f81311b3de804e198b9d2b6be415634e72b149d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.1771472454071045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200201_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200201_M_GLOBAL.out deleted file mode 100644 index 577383c64015cfdcfe56c122b2a9f484787cca1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.04376206398010254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200202_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200202_D_GLOBAL.out deleted file mode 100644 index 85bf47791f7eab17535a1d7f5895cf89e22f0b0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.1904917597770691 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200202_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200202_H_GLOBAL.out deleted file mode 100644 index 730266175fef2bda571653f541610c271c44e09f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.11789321899414062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200202_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200202_M_GLOBAL.out deleted file mode 100644 index 483d7237971e81be8c410c04288dfa285a8f917f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.1656872550646464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200203_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200203_D_GLOBAL.out deleted file mode 100644 index ba00b486a45d0175c6c85e0ddd3d0b630c61d3d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.03540260394414266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200203_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200203_H_GLOBAL.out deleted file mode 100644 index fd1295267fed41b9e962a16ac4f924cfc63fe290..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.03696647087732951 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200203_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200203_M_GLOBAL.out deleted file mode 100644 index 8fd9e174921fa64b9e84228c7163dc3a22849249..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.059418749809265134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200204_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200204_D_GLOBAL.out deleted file mode 100644 index 563e831e0913535506a3967f3c3ee2c481c5a644..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.22496754328409832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200204_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200204_H_GLOBAL.out deleted file mode 100644 index 6304e92c55a09d8577ee972fc5d7ae2adee302eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.031002330780029296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200204_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200204_M_GLOBAL.out deleted file mode 100644 index b601e83f1733d438462afe65445dc79b1d161140..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.036172072092692055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200205_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200205_D_GLOBAL.out deleted file mode 100644 index ed2ac3f08fafdb5915c72de57ac42feae510a84e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.19262881676355997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200205_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200205_H_GLOBAL.out deleted file mode 100644 index 69c8be12794b94ccf203883f029137a5426f5725..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.03141090869903564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200205_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200205_M_GLOBAL.out deleted file mode 100644 index 6dd399d5a15747372b52ac5f43a89f61d4285e01..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.12937545379002888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200206_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200206_D_GLOBAL.out deleted file mode 100644 index 6477c144b077c955722cb217d178ff8d3dd7dd42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.119819974899292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200206_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200206_H_GLOBAL.out deleted file mode 100644 index 79307f5d20b21ac251a04aaf6bdc81212b36dd1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.03093059460322062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200206_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200206_M_GLOBAL.out deleted file mode 100644 index 8e26ca9f9dc6da622f1efdef7ec3122be4a7c578..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.031942387421925865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200207_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200207_D_GLOBAL.out deleted file mode 100644 index 6fa9d34d19dc181f7e49b701d8787e29403faf96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.04447605609893799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200207_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200207_H_GLOBAL.out deleted file mode 100644 index b17c39140bcf2d93d80323bbeca517685accf968..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.19177345434824625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200207_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200207_M_GLOBAL.out deleted file mode 100644 index 53c1b2af28fbb657178bcae341bccab6d5165ebe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.037695070107777916 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200208_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200208_D_GLOBAL.out deleted file mode 100644 index 51281014b169164fe1e7196659e1a4104b871ade..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.05570346514383952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200208_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200208_H_GLOBAL.out deleted file mode 100644 index cc2437f626cc1bc3973787ed883288b291add737..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.036006851991017656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200208_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200208_M_GLOBAL.out deleted file mode 100644 index 1800db82feac9112e88111d9c3602711ab110f9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.04097990989685059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200209_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200209_D_GLOBAL.out deleted file mode 100644 index 5a08ec34ab06d8581a58661c0913b5c953a2b05c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.03119585116704305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200209_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200209_H_GLOBAL.out deleted file mode 100644 index 565daa9fe733df8a50f70f618211d8ba61a2a9db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.035024563471476235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200209_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200209_M_GLOBAL.out deleted file mode 100644 index 0df454c15bb5c9e39891a6c3b83ec80d17720007..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.17440278927485148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200210_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200210_D_GLOBAL.out deleted file mode 100644 index bd80bbb3acba1f666c7cb3a889e42f46a4e10876..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.041609032948811846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200210_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200210_H_GLOBAL.out deleted file mode 100644 index aa40a265fb512cf6ce1c3009082e17311718e21d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.03456887006759644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200210_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200210_M_GLOBAL.out deleted file mode 100644 index bae3d747a26da0c976fe69aacdaaec31d4452717..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.20794032017389932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200211_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200211_D_GLOBAL.out deleted file mode 100644 index 69eb3bbb5c50b80352cb12306e11ae162ac5c25b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.11273199319839478 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200211_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200211_H_GLOBAL.out deleted file mode 100644 index 8536a1757b04715e69d7811faf777e7ce9ca7e41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.034285354614257815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200211_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200211_M_GLOBAL.out deleted file mode 100644 index 58da5d78bc0d41e2d14770d1be361f0f7162d19c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.20443499088287354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200212_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200212_D_GLOBAL.out deleted file mode 100644 index 1a98e5e61d03595e7bd8723f287d57abf1f0dd93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.21562280654907226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200212_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200212_H_GLOBAL.out deleted file mode 100644 index f94a1b17cd71ed7220066947e65a2b979e1665d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.11987227201461792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200212_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200212_M_GLOBAL.out deleted file mode 100644 index eafcd2c6749a5b77a19d4f9e6cb15a869768ca5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.04169055223464966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200301_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200301_D_GLOBAL.out deleted file mode 100644 index 272caed4e8a272f1cb21d8c8f0716eca32f9e6f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.03948513666788737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200301_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200301_H_GLOBAL.out deleted file mode 100644 index 51196ef2e7cddc7c385fde0162d2436c50f01882..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.12483612696329753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200301_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200301_M_GLOBAL.out deleted file mode 100644 index 65ae6058504ae31c13bf3d98c9f130ea6663948d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.1959822138150533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200302_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200302_D_GLOBAL.out deleted file mode 100644 index bbae3e2c537c96be03e6973e4d9aa0506d142fe9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.04253467321395874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200302_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200302_H_GLOBAL.out deleted file mode 100644 index a21ebb507bbf1747029e1d4c44edcd5e6219b2d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.03888542652130127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200302_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200302_M_GLOBAL.out deleted file mode 100644 index 9e6cf72a58f3ad2ec6fe841fbd962e368028dc14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.04903658231099447 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200303_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200303_D_GLOBAL.out deleted file mode 100644 index a8711ac7187254e9f6e9c1b56351f78f1966f7b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.03460441827774048 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200303_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200303_H_GLOBAL.out deleted file mode 100644 index 18d36eeaf10efb3b118918c6258dab97ca715379..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.037947332859039305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200303_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200303_M_GLOBAL.out deleted file mode 100644 index b66aff39f8612fd0428e2ae52d4a6d569e0ed7c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.036417094866434734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200304_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200304_D_GLOBAL.out deleted file mode 100644 index 806f5a023abefbc48cdf00fdf1d0cc19248f556a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.18947807153065999 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200304_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200304_H_GLOBAL.out deleted file mode 100644 index 1505ecff139bc7550802711df76f7a7298bd954f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.039849011103312175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200304_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200304_M_GLOBAL.out deleted file mode 100644 index ea13816c263faee91b470959acb3c973bfebd17b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.05094563166300456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200305_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200305_D_GLOBAL.out deleted file mode 100644 index 85752842d6661bc100fcccc7b040bc367f88add5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.04779558579126994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200305_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200305_H_GLOBAL.out deleted file mode 100644 index a2c52fbe679b16a7a03ef724c97ffde98b80130a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.03897002935409546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200305_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200305_M_GLOBAL.out deleted file mode 100644 index 182ea13d77f33883e11e9d9a3f639ec42c63114b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.04271376132965088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200306_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200306_D_GLOBAL.out deleted file mode 100644 index bb0639ce14d1bde46873da5e88c4b1926fcb06e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.04745351870854696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200306_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200306_H_GLOBAL.out deleted file mode 100644 index 84464f5d2e377f09089fdcf31f5f2e186602e21f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.10621612071990967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200306_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200306_M_GLOBAL.out deleted file mode 100644 index bcbca44a8e4224a81eb4c9ebe567937e01542006..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.04377388159434001 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200307_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200307_D_GLOBAL.out deleted file mode 100644 index 0b60e0885224510ee1249f4a69d922bf2a0b53fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.037687277793884276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200307_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200307_H_GLOBAL.out deleted file mode 100644 index 2e9bdf299c0f1bcadd60031b57bf9824310b66db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.13959651788075764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200307_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200307_M_GLOBAL.out deleted file mode 100644 index 5306deefc1071f45e68d4adbbff8abbb7af73ec4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.037765657901763915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200308_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200308_D_GLOBAL.out deleted file mode 100644 index 98e2143c76c4ee42d3d3c1fe58ead8a0fe8877e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.2265713651974996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200308_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200308_H_GLOBAL.out deleted file mode 100644 index b220d2cabb6da3d0e9fbf4b99db53fdea77dcc15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.039189879099527994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200308_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200308_M_GLOBAL.out deleted file mode 100644 index e10b94275c9791b726fc36de54e182dc587f4358..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.045945457617441815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200309_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200309_D_GLOBAL.out deleted file mode 100644 index 8e299a4559fdf44c00fa19d88f6278af0546d30c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.12393420934677124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200309_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200309_H_GLOBAL.out deleted file mode 100644 index f8ba688819b737e15302b0ffd66f11853a59b52f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.18395164410273235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200309_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200309_M_GLOBAL.out deleted file mode 100644 index d38c6f1b76ae7a8d4b13cc479f59d8b47140235f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.03360102574030558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200310_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200310_D_GLOBAL.out deleted file mode 100644 index 3fdbfe8b1ebb47c20809d733f3ebf04e01f2c76b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.21091806888580322 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200310_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200310_H_GLOBAL.out deleted file mode 100644 index 04b307855a20dc7e121cb812852051f6090cd5b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.037626437346140545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200310_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200310_M_GLOBAL.out deleted file mode 100644 index 2d8e05aa54ec78f580b3c77eff5dd01b0d98d872..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.03938734928766886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200311_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200311_D_GLOBAL.out deleted file mode 100644 index 75a7ed0807ad0f3b1a15c8991ba68c8b68393f3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.054831687609354654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200311_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200311_H_GLOBAL.out deleted file mode 100644 index 32a2ee51000a1d535a053c4d3430bf11eba45509..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.041581539312998454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200311_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200311_M_GLOBAL.out deleted file mode 100644 index 80885d7520678cc6cb7cb088ace5c3d61840f148..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.055047885576883955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200312_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200312_D_GLOBAL.out deleted file mode 100644 index 0517dbe4a452a91809e6f44b585bf18d76e950ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.03644278049468994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200312_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200312_H_GLOBAL.out deleted file mode 100644 index ca2f769dcafd00b75b1df2385ed26907102f453e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.04871346950531006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200312_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200312_M_GLOBAL.out deleted file mode 100644 index bbd1b229c124ac6ae28277d4f7a5467f73836972..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.05288620392481486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200401_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200401_D_GLOBAL.out deleted file mode 100644 index acde92ff60ac163178604accd15c279c93d72ede..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.04086159467697144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200401_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200401_H_GLOBAL.out deleted file mode 100644 index 745e52e19152b21db4847bef9048c0b1009948dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.04713821808497111 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200401_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200401_M_GLOBAL.out deleted file mode 100644 index 81d1a662eec3a57238f8ecbc119e9ff4fe81e364..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.19571774005889891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200402_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200402_D_GLOBAL.out deleted file mode 100644 index 0781eb0bc9d2ce6c0ee4c14932bad904ad966a70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.1355984409650167 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200402_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200402_H_GLOBAL.out deleted file mode 100644 index 137b180b64840592c5b2511f5a30f594d3d09b66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.03033880392710368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200402_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200402_M_GLOBAL.out deleted file mode 100644 index 704b472ce2caa161034e70dba33c657afd49c469..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.18239785035451253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200403_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200403_D_GLOBAL.out deleted file mode 100644 index 388744fa23486569a96be1ec2f80710f6c5789fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.035773269335428876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200403_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200403_H_GLOBAL.out deleted file mode 100644 index 3066544c5d636ac984d130b1faae3573c48b880b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.12062377532323201 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200403_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200403_M_GLOBAL.out deleted file mode 100644 index 936b1e09994b582b84384a9ce23e399ddd3b31b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.12965667645136517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200404_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200404_D_GLOBAL.out deleted file mode 100644 index 4af8a0ec1355bc1ddaed6230712a11ea820d521b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.17249079942703247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200404_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200404_H_GLOBAL.out deleted file mode 100644 index 51456f829ea9c4eeda260524135a633b70d17b1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.16018331050872803 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200404_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200404_M_GLOBAL.out deleted file mode 100644 index b49af845be718f6d1e84aae56d2e5d3e10b7c6bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.038670551776885984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200405_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200405_D_GLOBAL.out deleted file mode 100644 index 68d8589b32586845672789c9db42e049a858bb41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.17216887871424358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200405_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200405_H_GLOBAL.out deleted file mode 100644 index adcd980af76f8a09a80f0b4f4569eff23f9d39fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.12075649897257487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200405_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200405_M_GLOBAL.out deleted file mode 100644 index 09d1e286073ed2dd89239b948c55188a6ad07402..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.18534650007883707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200406_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200406_D_GLOBAL.out deleted file mode 100644 index 698991c0367dec7ad9a7285c40c4d9be5106a042..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.15572288433710735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200406_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200406_H_GLOBAL.out deleted file mode 100644 index 64972240919d1f1cd09996d18fc94f2242a0636a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.03619523445765178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200406_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200406_M_GLOBAL.out deleted file mode 100644 index 70296e5f8096cff746dda8d51f511e4b44bb7e40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.1226763129234314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200407_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200407_D_GLOBAL.out deleted file mode 100644 index 1da6e48ff073bef97365f2bf51afc5301a4bea7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.039553070068359376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200407_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200407_H_GLOBAL.out deleted file mode 100644 index 2d0fcb17968c80c126da6dc9366b8efcb13d9e35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.17773554722468057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200407_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200407_M_GLOBAL.out deleted file mode 100644 index 5269d21eaebccc17144cbc1cdf97a5f6c8747af0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.04187431732813517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200408_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200408_D_GLOBAL.out deleted file mode 100644 index 68ced3a431ea26af056fc8fb7314268e45412f74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.036357545852661134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200408_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200408_H_GLOBAL.out deleted file mode 100644 index 06273509a6c34abc4ebfad47873be333adf90c11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.04463663101196289 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200408_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200408_M_GLOBAL.out deleted file mode 100644 index d3abd5a3c409b4462ea5cf971ea1ea8043ca7078..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.03827324310938517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200409_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200409_D_GLOBAL.out deleted file mode 100644 index d87b87f2a91dcb361bdbb2152a75d86c42ae5f32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.06087946097056071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200409_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200409_H_GLOBAL.out deleted file mode 100644 index c19f078bba5eedfb9ed6d8f410789e3332551ffe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.11704018910725912 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200409_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200409_M_GLOBAL.out deleted file mode 100644 index 9ebfa543dd8c550ed22bca6d3d36896499c6c3bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.03587272564570109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200410_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200410_D_GLOBAL.out deleted file mode 100644 index 6b4345063f63142a870ea583307ba9a7a372ca7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.0342167337735494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200410_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200410_H_GLOBAL.out deleted file mode 100644 index 8c15b6f7a6d6c14ae4cfee80732eb98bd646f24b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.03723292748133342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200410_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200410_M_GLOBAL.out deleted file mode 100644 index 2e7c5f3a1fbcdc1ecf379ac352d3678610346e6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.041532599925994874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200411_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200411_D_GLOBAL.out deleted file mode 100644 index 51198aac54030a1e4f1317b31698d1c8e32d50e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.04363997379938762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200411_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200411_H_GLOBAL.out deleted file mode 100644 index 6cc7d9fd02b5bdd68dfc1125d423722606e4f571..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.030510167280832928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200411_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200411_M_GLOBAL.out deleted file mode 100644 index 24386145052a16d882b3d2344fb75eec82d6589f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.03320534229278564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200412_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200412_D_GLOBAL.out deleted file mode 100644 index 5601733038afe5e63e579582837c9d07f7a5b253..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.041121041774749754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200412_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200412_H_GLOBAL.out deleted file mode 100644 index 56d93baea4f5b5ff912c0a75ad5087ddcd36a0f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.0323173721631368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200412_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200412_M_GLOBAL.out deleted file mode 100644 index 1ba002f91f99038f8fb1e7627f26bc46fd9f20ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.046000345547993975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200501_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200501_D_GLOBAL.out deleted file mode 100644 index 567da01fd62b1826dbb6549a170849305a63f50a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.10466899077097574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200501_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200501_H_GLOBAL.out deleted file mode 100644 index bc62964cf6b417e0d283b6d90dc4858075e57cb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.029153358936309815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200501_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200501_M_GLOBAL.out deleted file mode 100644 index fbbbf338b3fa04d2549b290f7c874e571ae47925..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.05094031492869059 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200502_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200502_D_GLOBAL.out deleted file mode 100644 index 67f7f35c1627d3632a48302cdc1e6660c7a3b99a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.030611666043599446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200502_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200502_H_GLOBAL.out deleted file mode 100644 index 39d510feb9cfe80e4457d4f8263b9e345981143a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.03997182051340739 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200502_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200502_M_GLOBAL.out deleted file mode 100644 index 688d673d1be17d175ac468305a9ccb4eefdbdc6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.044379440943400066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200503_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200503_D_GLOBAL.out deleted file mode 100644 index 75799db9274e0dcde45229c26ee7cb608aa701ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.041759057839711504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200503_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200503_H_GLOBAL.out deleted file mode 100644 index 3cf73a37597d68f5450571b4756e3ceb28c98f29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.03337525526682536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200503_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200503_M_GLOBAL.out deleted file mode 100644 index 3a3f15a882ea4deb8729b90a404bfed6d8afa8bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.05617683331171672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200504_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200504_D_GLOBAL.out deleted file mode 100644 index 86adbe2580e1fdc4b338833eca1f39a94bcf80a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.04589442412058512 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200504_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200504_H_GLOBAL.out deleted file mode 100644 index afe14d27c1231fd9ebe98af89dec58c91671bb15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.12968150774637857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200504_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200504_M_GLOBAL.out deleted file mode 100644 index 2faf9464bbcabd141d57e06f9ca1c6f9f5acf7c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.1926194151242574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200505_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200505_D_GLOBAL.out deleted file mode 100644 index bb517ce53ee614ce3c084a1997a8fb4a4319cf64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.1675079623858134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200505_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200505_H_GLOBAL.out deleted file mode 100644 index 363faf1493e1714d774f9d33ca9f3371d9bcadae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.11296488841374715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200505_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200505_M_GLOBAL.out deleted file mode 100644 index 37d1e2174812080ca0bc423d582392de45ee3235..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.030187992254892985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200506_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200506_D_GLOBAL.out deleted file mode 100644 index 50732a3b1db531db1079a9b8ed23659b1f774788..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.17968769470850626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200506_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200506_H_GLOBAL.out deleted file mode 100644 index 0abcf3cd701b173a425d1363afa7e56dc93a6de7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.1457326094309489 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200506_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200506_M_GLOBAL.out deleted file mode 100644 index 37285057d9793adcad4a44ef62039858e3409f8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.2006399114926656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200507_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200507_D_GLOBAL.out deleted file mode 100644 index 9b2af725701cfccc6c852a36681cfcc02531c881..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.05127800703048706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200507_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200507_H_GLOBAL.out deleted file mode 100644 index a796affe58728e1b7734723dc4f5c0c03a0a5b05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.12096447149912516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200507_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200507_M_GLOBAL.out deleted file mode 100644 index d19d51d5344c64ac843fe1a22497f55767b61d5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.039690534273783364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200508_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200508_D_GLOBAL.out deleted file mode 100644 index 9d8d0b97f1269075fadf6c79982c31c995c44009..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.15472978353500366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200508_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200508_H_GLOBAL.out deleted file mode 100644 index c7a6b834fb547366498196bf199df11ceae61519..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.0246157964070638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200508_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200508_M_GLOBAL.out deleted file mode 100644 index 6ed2899f61418033ae857cc745cc8801b10eb3c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.05652426878611247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200509_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200509_D_GLOBAL.out deleted file mode 100644 index 597498967dfbe4f6165d92c4a1c5cd55a85a794e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.04437472422917684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200509_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200509_H_GLOBAL.out deleted file mode 100644 index c24bc155b45228228491d3d373d2bce3a5024cac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.03664751052856445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200509_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200509_M_GLOBAL.out deleted file mode 100644 index a15b70a4ffe72621915f3744c7e5593de62b60b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.0395005186398824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200510_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200510_D_GLOBAL.out deleted file mode 100644 index cbce196f48376b4cdbf3c24b9efc52845131772e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.19110194444656373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200510_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200510_H_GLOBAL.out deleted file mode 100644 index d4d0079531d0ae9b922a2b467c9956c0bb5b38f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.03518847624460856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200510_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200510_M_GLOBAL.out deleted file mode 100644 index b280bcf0874f852e916736bc178c7fe87e285994..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.046501874923706055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200511_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200511_D_GLOBAL.out deleted file mode 100644 index 3857446906b8a16624f5446b0eb866a97bd9aade..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.040693215529123944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200511_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200511_H_GLOBAL.out deleted file mode 100644 index fa12f9e67a6eb59f4affed2354c37d8c4c64f7c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.14232658147811889 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200511_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200511_M_GLOBAL.out deleted file mode 100644 index a16a14f0b5ba04301b7425f9fee87c09ccd3ef59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.04065391222635905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200512_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200512_D_GLOBAL.out deleted file mode 100644 index c716820ebb345232562d4dfe2e8eaa1ca851a24e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.10041724840799968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200512_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200512_H_GLOBAL.out deleted file mode 100644 index 867a6d589cb8831bec5a5fbf541ebab36db56c98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.20504484176635743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200512_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200512_M_GLOBAL.out deleted file mode 100644 index 3e2b4b83b02ae02e0ad9357c98a561ae2c479bf7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.16851582924524944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200601_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200601_D_GLOBAL.out deleted file mode 100644 index 7763317356b46d93dc57b12aac652c64e42ba74a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.03138845761617025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200601_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200601_H_GLOBAL.out deleted file mode 100644 index 05239fa16a6be3496889685d908d2cee726770ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.031851545969645186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200601_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200601_M_GLOBAL.out deleted file mode 100644 index 7919465aac702015f905d2af19b8da74afecf5af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.12974066734313966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200602_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200602_D_GLOBAL.out deleted file mode 100644 index e31ef0485798a99504466d8d305c24714688f541..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.053128353754679364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200602_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200602_H_GLOBAL.out deleted file mode 100644 index e681633d11b7a425c59e96522d1bef2d24b237f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.04491132100423177 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200602_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200602_M_GLOBAL.out deleted file mode 100644 index f2ca852d76be8abcc321008c44577dfbba9f17e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.051225459575653075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200603_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200603_D_GLOBAL.out deleted file mode 100644 index 7be64f301f5f497b7b95642fec0c4397d5196818..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.03669800360997518 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200603_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200603_H_GLOBAL.out deleted file mode 100644 index 4570051710d4fa2c6273cc156573a04bc0d0d039..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.04713704983393351 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200603_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200603_M_GLOBAL.out deleted file mode 100644 index e4a0abd2265728b604f66d2947257421b7c080d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.0320966362953186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200604_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200604_D_GLOBAL.out deleted file mode 100644 index e73f9c83cc7691e236bd87d7ab1c388778f32140..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.05311114390691121 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200604_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200604_H_GLOBAL.out deleted file mode 100644 index d9b834010de3f008b6475df115790f730c2a3471..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.03013112147649129 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200604_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200604_M_GLOBAL.out deleted file mode 100644 index e5a7a50da827693569d7413e8335373a655401b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.12343428532282512 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200605_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200605_D_GLOBAL.out deleted file mode 100644 index 7c18a64cf7b20f4e9eb4ff7348cf4d6a676639b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.21689060131708782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200605_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200605_H_GLOBAL.out deleted file mode 100644 index 55700b5f4f627d454569842c39bf7954f537b917..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.1863357663154602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200605_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200605_M_GLOBAL.out deleted file mode 100644 index feaa87cbd9f513e9bd4cd0fd26f2fb35dddcfbbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.03750648101170858 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200606_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200606_D_GLOBAL.out deleted file mode 100644 index be1df34177437d943b50c04a467270fb1bf798cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.04042601982752482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200606_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200606_H_GLOBAL.out deleted file mode 100644 index 2be3df797bcea938bc3d8399f23bef4adf32b52d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.032706499099731445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200606_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200606_M_GLOBAL.out deleted file mode 100644 index 79f6465b22a32f035c7ad41075a7482cafabd90a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.0422255794207255 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200607_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200607_D_GLOBAL.out deleted file mode 100644 index 1edd668dc5fc356dd4a0778e0780b56236576afa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.04409491221110026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200607_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200607_H_GLOBAL.out deleted file mode 100644 index 011369e1f9eb0188bd6c2cb9718f75f20af6373d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.050500635306040445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200607_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200607_M_GLOBAL.out deleted file mode 100644 index fd5847c08ca809093a0b3f0b9bc63f487d2d1892..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.03159502347310384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200608_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200608_D_GLOBAL.out deleted file mode 100644 index 4d0ddabb4fc33890e1ba8c4aab4d4693d68f308c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.1882807691891988 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200608_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200608_H_GLOBAL.out deleted file mode 100644 index dc6b438ecfad05faf7b875020cf4a33450447c1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.12667374610900878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200608_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200608_M_GLOBAL.out deleted file mode 100644 index 025a69876d8b1d223b302075e9527117321a6d0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.03563005924224853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200609_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200609_D_GLOBAL.out deleted file mode 100644 index b01da14b41d253c3b0dd678b57acf6f0ac54c178..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.1710953752199809 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200609_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200609_H_GLOBAL.out deleted file mode 100644 index b677571bc30d6e73a8873af5e9e071c18a4c3691..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.036387427647908525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200609_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200609_M_GLOBAL.out deleted file mode 100644 index 1236d7031eb84b74402b7edf3644f9688b591ea9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.0409446120262146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200610_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200610_D_GLOBAL.out deleted file mode 100644 index b0e35e8a79e42a7acc772c4cde4fd1f41fd887dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.04215797980626424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200610_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200610_H_GLOBAL.out deleted file mode 100644 index 1d828dc208f38dca788ca3d1aae672f048a1a935..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.040801008542378746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200610_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200610_M_GLOBAL.out deleted file mode 100644 index e296b71e82fdf1c4fb5ca1b72d0ce65b247f654f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.12025593121846517 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200611_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200611_D_GLOBAL.out deleted file mode 100644 index 22dd05c85ef8599c83f167e289dd0aed11dbf95d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.05043163299560547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200611_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200611_H_GLOBAL.out deleted file mode 100644 index 13b8b4d7ca5199288b0b5f22089563ec18440256..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.033698666095733645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200611_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200611_M_GLOBAL.out deleted file mode 100644 index 8f37790cf6905f884315075a65fc269dfe96dd3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.0424779733022054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200612_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200612_D_GLOBAL.out deleted file mode 100644 index 6cef470530990ea452c043e89d0612360050839e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.20957245031992594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200612_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200612_H_GLOBAL.out deleted file mode 100644 index 4906d078f9eb1916f3d4d001ca80515b958f8102..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.055767250061035153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200612_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200612_M_GLOBAL.out deleted file mode 100644 index 2e40579bade04faf577cc9b46ed9b7f41c785147..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.13361085653305055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200701_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200701_D_GLOBAL.out deleted file mode 100644 index 56487c4519cdf1a6822ff9723d94aa7c7a3a8e41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.12612022558848063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200701_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200701_H_GLOBAL.out deleted file mode 100644 index 83cacdcb3301a8f2532660201c63f01bc612ddfb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.20802081823349 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200701_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200701_M_GLOBAL.out deleted file mode 100644 index 0534b1db11e5a7f7e2bc742cf17b03f55c8b88be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.03851288159688314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200702_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200702_D_GLOBAL.out deleted file mode 100644 index d05455a0d10b37549a71f789b6f8e2daeafa5935..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.19365113576253254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200702_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200702_H_GLOBAL.out deleted file mode 100644 index a2711d51cc085f64eca1e7637050b1492765abc1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.04700189034144084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200702_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200702_M_GLOBAL.out deleted file mode 100644 index 3476b1b0e334f019b6ace22ca0fdc5e1422005ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.039561506112416586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200703_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200703_D_GLOBAL.out deleted file mode 100644 index 655faeb93f03a1cd435f8874498f19a294edd2b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.04932886759440104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200703_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200703_H_GLOBAL.out deleted file mode 100644 index 281805f1bcb119313e0ace139f70be82d9453b2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.043342840671539304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200703_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200703_M_GLOBAL.out deleted file mode 100644 index 72597d6c61ef9dd69d84b4bca0d54c0dd83d251b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.042333062489827475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200704_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200704_D_GLOBAL.out deleted file mode 100644 index 2e05808fbd52ef61b2b86760fba7bfa865374397..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.05645275910695394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200704_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200704_H_GLOBAL.out deleted file mode 100644 index 557e3564fc3fde3a24dc7f3919abea8fcee18256..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.04110165039698283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200704_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200704_M_GLOBAL.out deleted file mode 100644 index cee10a0169333b1d6082efada1933fa83a26c75f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.10419634580612183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200705_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200705_D_GLOBAL.out deleted file mode 100644 index 690d0ebf82b0962ce6165486e1c052d7d72335b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.03443724314371745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200705_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200705_H_GLOBAL.out deleted file mode 100644 index 6d614f7a3434f8be5ba53ecc366f6459ebca30be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.041170704364776614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200705_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200705_M_GLOBAL.out deleted file mode 100644 index 02e9055b67ee4af1ac1bd9b3af545d53774fe46d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.21514676411946615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200706_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200706_D_GLOBAL.out deleted file mode 100644 index 2b04bb4761a6f289a7d785d604e3a5df089d3aa9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.05093773603439331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200706_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200706_H_GLOBAL.out deleted file mode 100644 index cc1d30dbcaac1cf01e2a06a0fd51003211c5b5cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.14236375490824382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200706_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200706_M_GLOBAL.out deleted file mode 100644 index 2e3c40943a21be6eb676f4833af3a87f86e68700..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.032526961962382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200707_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200707_D_GLOBAL.out deleted file mode 100644 index 8ba6c69d1dc557112c451a85edc571216275f8e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.040692118803660075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200707_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200707_H_GLOBAL.out deleted file mode 100644 index 3d461f13d6531d242e2227410b8e2d62e479fbb4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.15734833081563313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200707_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200707_M_GLOBAL.out deleted file mode 100644 index 169274c93b998af41524f30b252696aedba024ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.05421484311421712 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200708_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200708_D_GLOBAL.out deleted file mode 100644 index f51f480b3620a44ed0f4a2beb4dece8778b7b789..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.05006174246470133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200708_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200708_H_GLOBAL.out deleted file mode 100644 index 99a3e1a4e0565ebaa8e8b933543f05884a7096d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.1472511132558187 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200708_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200708_M_GLOBAL.out deleted file mode 100644 index 3634643cb47f6885dfb1b3c881f2afaf275680ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.1105351209640503 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200709_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200709_D_GLOBAL.out deleted file mode 100644 index 5399506f0ec6d360830f97e78b055575e5382027..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.12039737701416016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200709_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200709_H_GLOBAL.out deleted file mode 100644 index 94fa34fb50a966247b6497586b04743ccad1af81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.13106707334518433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200709_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200709_M_GLOBAL.out deleted file mode 100644 index ead4cf4430ce5ce219dc18abd1915d728bff3fe1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.040456358591715494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200710_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200710_D_GLOBAL.out deleted file mode 100644 index 2547f7fc02b10c65f0bcbf351bc7c1e7ddd5d8c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.16270848512649536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200710_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200710_H_GLOBAL.out deleted file mode 100644 index f8a9e3882e4218f912b2828d5e12e3a12d35fc58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.05577898422876994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200710_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200710_M_GLOBAL.out deleted file mode 100644 index 32cba768bfc3c8f052b78c2ca3a252f7a390644f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.13977283239364624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200711_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200711_D_GLOBAL.out deleted file mode 100644 index 618ad4b261151a6ff174d45d75fa6e71b0f28599..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.04561560153961182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200711_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200711_H_GLOBAL.out deleted file mode 100644 index 8f1a827ebb68844ba5e71c8a711db8957caa3efb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.1137713352839152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200711_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200711_M_GLOBAL.out deleted file mode 100644 index be431da171f5e874e39b0971d9ebf46cd9f97b3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.15782613356908162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200712_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200712_D_GLOBAL.out deleted file mode 100644 index 558ba3c4bcee42ed6370a98abf5da2d1ce7272de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.19811014731725057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200712_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200712_H_GLOBAL.out deleted file mode 100644 index 36add2d77f5313d9ddbe4ea51ad852d9f2c26d6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.033508757750193276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200712_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200712_M_GLOBAL.out deleted file mode 100644 index 4ad2586c03b5718f7137bd03b43d202665352b7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.035997899373372395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200801_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200801_D_GLOBAL.out deleted file mode 100644 index 9398ec9bd11faa2a56417ab880489e26c59d0ff8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.05721751054128011 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200801_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200801_H_GLOBAL.out deleted file mode 100644 index 2d58d20629fdb91c0c383066121a85c3dcd8a8b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.2058267871538798 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200801_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200801_M_GLOBAL.out deleted file mode 100644 index d5abcbee34e5be5285c2fd5a038efa69aad99ef0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.12847286065419514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200802_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200802_D_GLOBAL.out deleted file mode 100644 index 6d1f9463c982b1b46f7523d5a7ed0ded7a692767..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.1345840613047282 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200802_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200802_H_GLOBAL.out deleted file mode 100644 index 11d62c9624afdfe115ccb5f2e0b90a27a8ee359c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.03077903191248576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200802_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200802_M_GLOBAL.out deleted file mode 100644 index 3f5ad1f5f0329aa13ad65d5d12a464e6b39b1546..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.13632975419362386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200803_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200803_D_GLOBAL.out deleted file mode 100644 index 24075cd60cf33989ce8754435ccc11c4f41d6e44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.13910568952560426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200803_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200803_H_GLOBAL.out deleted file mode 100644 index e92f6e505a8be3d6bfc40663ebfea4e3ca3f5929..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.043014713128407794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200803_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200803_M_GLOBAL.out deleted file mode 100644 index cacb1ccd66861e6172bd919545d52337bc05bcf3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.05579177141189575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200804_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200804_D_GLOBAL.out deleted file mode 100644 index ba5cb12bf92bb46ed5f4790abfe13bcbb2ebf2f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.19268635114034016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200804_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200804_H_GLOBAL.out deleted file mode 100644 index 1dc040be2a004a51429586d82205d20c7ea4ac33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.03277009725570679 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200804_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200804_M_GLOBAL.out deleted file mode 100644 index 1a5863b4e1396895370f7c5acef1b88a714396a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.03139864206314087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200805_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200805_D_GLOBAL.out deleted file mode 100644 index 6bb54e680e4b3aecb684f853ee5656e195a299d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.046784961223602296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200805_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200805_H_GLOBAL.out deleted file mode 100644 index 863e3b79deb3c27ac155e556b9bd9e42d5c1c37d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.03085892597834269 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200805_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200805_M_GLOBAL.out deleted file mode 100644 index 9fb3f2c63b96fdb7e7fc0c8ffffaa89be9d855ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.17308173576990762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200806_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200806_D_GLOBAL.out deleted file mode 100644 index f9afb292e9ce5d0f71edad925dd162d260fd8070..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.036464766661326094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200806_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200806_H_GLOBAL.out deleted file mode 100644 index 935dd837f435806257d2ccd9b261f14081cfdda4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.03590534130732218 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200806_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200806_M_GLOBAL.out deleted file mode 100644 index 97a1524128cf7d90a4c954cafa81d197f7410ae4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.2222632050514221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200807_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200807_D_GLOBAL.out deleted file mode 100644 index ea0792f3a3a082ad407d23775db2bc3a1354f96f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.031038777033487955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200807_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200807_H_GLOBAL.out deleted file mode 100644 index c917f7d5c9146f2fe73c789460ba758142d0ddc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.028916807969411214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200807_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200807_M_GLOBAL.out deleted file mode 100644 index 1085aca1a5dcbff517dc0d3aa6cb15cd62827a40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.05244914690653483 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200808_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200808_D_GLOBAL.out deleted file mode 100644 index c9dea0f4a28b83dd6f5fa12b38bf20adcb190f3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.19096992015838624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200808_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200808_H_GLOBAL.out deleted file mode 100644 index 33ffda3aff4b1fbc306c710befb0d5c81e455c3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.040120689074198405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200808_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200808_M_GLOBAL.out deleted file mode 100644 index 2b33fc67511266c0232088a98eb4c81601ef9b8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.18927241961161295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200809_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200809_D_GLOBAL.out deleted file mode 100644 index e5d28b47db5f292f1624a5bc2d78cb5317f559c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.04037445386250814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200809_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200809_H_GLOBAL.out deleted file mode 100644 index bbccfa9cbd08eca7d8cb12bf7428964a39f5ac62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.12771284182866413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200809_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200809_M_GLOBAL.out deleted file mode 100644 index 2f6984fa05370cad2e24fe7bb76014fbb5a4d385..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.04203088680903117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200810_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200810_D_GLOBAL.out deleted file mode 100644 index 570ec0f02f64dea571e956b689cc788ae7649719..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.04154143730799357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200810_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200810_H_GLOBAL.out deleted file mode 100644 index b2301163701e04ffcf95fa69c0b00abc2be6552a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.03270736535390218 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200810_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200810_M_GLOBAL.out deleted file mode 100644 index fcd7ca38bad7d8024798cffe4f6de82bbe6c6b1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.04154684146245321 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200811_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200811_D_GLOBAL.out deleted file mode 100644 index 06e8177bd9ab90e573b2bc097519808acda8fe21..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.05631584326426188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200811_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200811_H_GLOBAL.out deleted file mode 100644 index f2226631ac642950c1d281d69b370cd0c39953f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.03401240905125936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200811_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200811_M_GLOBAL.out deleted file mode 100644 index b758b30b53e4736960ed41f2c778a6d0b5224da6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.03904145161310832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200812_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200812_D_GLOBAL.out deleted file mode 100644 index 737d5d34dcb180ba6880cb8696960e9113290973..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.1525306820869446 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200812_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200812_H_GLOBAL.out deleted file mode 100644 index 3d100a75032bd8910eb7eab81ee240944d2069cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.03790236711502075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200812_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200812_M_GLOBAL.out deleted file mode 100644 index 3647cb393f11caf7d9095b9c5d26ac8eb7bdb479..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.0326926867167155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200901_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200901_D_GLOBAL.out deleted file mode 100644 index 839a6677d6f1d3b65479566ecf8b064ba0da6c49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.1887922167778015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200901_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200901_H_GLOBAL.out deleted file mode 100644 index c098011b4caf6a2b26c46cf4e225e301f5771b44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.11871755917867025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200901_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200901_M_GLOBAL.out deleted file mode 100644 index 55915ebb2efca12c4e60a4ffb2912f717e32ba63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.04697509606679281 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200902_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200902_D_GLOBAL.out deleted file mode 100644 index 8cdab97a2ac0c23426e054c89b4922b706b059e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.04183378219604492 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200902_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200902_H_GLOBAL.out deleted file mode 100644 index 836b9f1ffc11785c33cd27444c74b14c677cdfc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.03775809605916341 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200902_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200902_M_GLOBAL.out deleted file mode 100644 index 2b72a3c1bacb6c813ec236bdfe32b4ec8f997f9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.1461647629737854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200903_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200903_D_GLOBAL.out deleted file mode 100644 index 9decc6694baca04fe35e83cabe6a7558f6f0315f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.042272675037384036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200903_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200903_H_GLOBAL.out deleted file mode 100644 index 59430437c986d3bd3c1a1f92ac2efa2b3301251b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.03597126007080078 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200903_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200903_M_GLOBAL.out deleted file mode 100644 index 41ad6dedcc2c62fdb67633c1f5a55b9ca9872984..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.03460255066553752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200904_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200904_D_GLOBAL.out deleted file mode 100644 index c673dc55069f13f2ccdc5c29cb4f0fa789eec590..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.17128098408381146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200904_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200904_H_GLOBAL.out deleted file mode 100644 index 51b515dd19b4915a3c5f13ef006835eb0dc1fdbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.03233099778493245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200904_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200904_M_GLOBAL.out deleted file mode 100644 index 303a3c663c8750e3f91c13b591fa843aea54e805..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.042924582958221436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200905_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200905_D_GLOBAL.out deleted file mode 100644 index 874e261269476ca96a069c1eeb3b069baab313e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.03570921421051025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200905_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200905_H_GLOBAL.out deleted file mode 100644 index 791ccbeacd42b87fb1259c8f11e46d059d3aa27c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.04089188973108927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200905_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200905_M_GLOBAL.out deleted file mode 100644 index 494951321ec3993b6fbdc2afac373b62f07edd2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.05057570536931356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200906_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200906_D_GLOBAL.out deleted file mode 100644 index 25c0b809ce61671221fcc4451c65fe587e1036b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.04119948546091715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200906_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200906_H_GLOBAL.out deleted file mode 100644 index 54f66b18d14b8bb2c4b5ad76ae4914181d7a15ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.1713855783144633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200906_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200906_M_GLOBAL.out deleted file mode 100644 index a8ef02f80f3c7f82d076184b3309bcccddce50c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.028728298346201577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200907_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200907_D_GLOBAL.out deleted file mode 100644 index 818535f2066cdb9525681bbd66379c932906f3ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.1243009606997172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200907_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200907_H_GLOBAL.out deleted file mode 100644 index 5afa91f95cea45f8d60a4ed2c9e0e588660d7c55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.030191667874654136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200907_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200907_M_GLOBAL.out deleted file mode 100644 index fe100f318dfa0215a7ff3c72054c427415efe261..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.04646290143330892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200908_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200908_D_GLOBAL.out deleted file mode 100644 index 3e9d42889d579d1e1b341f981043d2089ad5910a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.04547405242919922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200908_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200908_H_GLOBAL.out deleted file mode 100644 index 718a4af757d8638c947f22433653eaa4b4276bf0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.03058275779088338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200908_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200908_M_GLOBAL.out deleted file mode 100644 index c566aad7c89fc8228f759eff8e0cd62ccf485d00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.19004499117533366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200909_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200909_D_GLOBAL.out deleted file mode 100644 index 8944866e4e4206eaf2e6bae33d5ff12850bfa824..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.20092899004618328 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200909_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200909_H_GLOBAL.out deleted file mode 100644 index 7f802730d4281361757d0368fd94b23d1633867f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.038853844006856285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200909_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200909_M_GLOBAL.out deleted file mode 100644 index 72cde2f7da319ffb619c4386b358e84130cf26d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.21733880440394085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200910_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200910_D_GLOBAL.out deleted file mode 100644 index 7ae89582a42f6c88cc271af7cf3fe824f2e4a55f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.21682055791219076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200910_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200910_H_GLOBAL.out deleted file mode 100644 index 0511dcbbdcac9504479568f79f32f8a1afe29bc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.1386041522026062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200910_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200910_M_GLOBAL.out deleted file mode 100644 index a34f4900b53685ad30fd70adc828525dd5834df2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.036270276705423994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200911_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200911_D_GLOBAL.out deleted file mode 100644 index 0b8af658e81cef177440eba8816726c1c22ca33f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.04998781681060791 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200911_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200911_H_GLOBAL.out deleted file mode 100644 index 374bfac8e3b3defbf55d29cd02df1ce8c3be6b36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.04740525086720784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200911_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200911_M_GLOBAL.out deleted file mode 100644 index a19ed37374bf470ce897fc2d8868e76bf23e1875..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.03400824467341105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200912_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200912_D_GLOBAL.out deleted file mode 100644 index 42783657e4a4cf76216102163bbaf454e6e0b39c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.06423266331354777 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200912_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200912_H_GLOBAL.out deleted file mode 100644 index 405789c09df04c1067465239d379fcb98bc07808..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.0511389414469401 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_200912_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_200912_M_GLOBAL.out deleted file mode 100644 index 650c54416d382c6b72c668b9f1a39627c4aabe82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_200912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.07902771631876628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201001_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201001_D_GLOBAL.out deleted file mode 100644 index 6b03433e091cc15452d60fc523e17983669f9bea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.06602973143259684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201001_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201001_H_GLOBAL.out deleted file mode 100644 index 011a9ca412f8db59c14055f2da60d6032d19f96d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.045688156286875406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201001_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201001_M_GLOBAL.out deleted file mode 100644 index 4fdaff5a367f0d1d29dbc350554447e7ab35ce11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.31140880584716796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201002_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201002_D_GLOBAL.out deleted file mode 100644 index 50f2f34abb247220ffc38c8d5c8fbda4e6cc3b6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.21628623803456623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201002_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201002_H_GLOBAL.out deleted file mode 100644 index ca4619b0ca2d88feaca96def709d1e8ec7d918c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.1453589121500651 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201002_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201002_M_GLOBAL.out deleted file mode 100644 index 5fd775f30b261a986464bfc25281439d70011ccf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.2151251514752706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201003_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201003_D_GLOBAL.out deleted file mode 100644 index 14e96a15334ca5f59530cb197a6d4afc06a338e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.19984089930852253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201003_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201003_H_GLOBAL.out deleted file mode 100644 index cf07c15676b1654f6510609e05f9cd60335b75d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.042221216360727946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201003_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201003_M_GLOBAL.out deleted file mode 100644 index c2ee4b09b3ee005978de30ffa4ee9cfbf6943f1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.2104223847389221 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201004_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201004_D_GLOBAL.out deleted file mode 100644 index aa5fd401fb725b2ef8f1d8eb7339e80e8ff8bea9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.060923322041829424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201004_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201004_H_GLOBAL.out deleted file mode 100644 index 9b97c0fc006a7920e7e2ddcec873126231db26f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.04905024766921997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201004_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201004_M_GLOBAL.out deleted file mode 100644 index d7b2812b8bb1f07a77a1676d595e009d1c696b8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.05993140935897827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201005_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201005_D_GLOBAL.out deleted file mode 100644 index 2c231df91e2754583ff033eb3fbeb6931e1ed7fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.06261711517969767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201005_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201005_H_GLOBAL.out deleted file mode 100644 index d73f3d3c9d3993ebcb0b67b17cab74409d9aed5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.1987546642621358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201005_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201005_M_GLOBAL.out deleted file mode 100644 index d20f7d7bf88664b7e3f2ca6c60f2484b182648b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.07134228547414144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201006_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201006_D_GLOBAL.out deleted file mode 100644 index c48b607e0829b03f69841dd68a927c502a1b6627..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.18880394697189332 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201006_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201006_H_GLOBAL.out deleted file mode 100644 index a7540f4094640f103d8a0125266e3e6aa6d4425e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.0570048451423645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201006_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201006_M_GLOBAL.out deleted file mode 100644 index 54a531968428b681ff9954c2dff531a2725b67fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.0636082927385966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201007_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201007_D_GLOBAL.out deleted file mode 100644 index d46c9c37415a1e5e5e4e8e6614d685a577969ebc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.07555296421051025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201007_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201007_H_GLOBAL.out deleted file mode 100644 index d6b6eccbcab51289b65f15d2826656c8de9e4ed3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.046931382020314535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201007_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201007_M_GLOBAL.out deleted file mode 100644 index e5934022afc7cbf45d573d697630b3fea94df376..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.062275298436482746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201008_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201008_D_GLOBAL.out deleted file mode 100644 index 5ca06fc9084c79fe5922c4bb0bdf176f63b4177c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.07936855951944986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201008_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201008_H_GLOBAL.out deleted file mode 100644 index 31a3d39b7e48a833a0848319ddddd7d8aeafb7a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.03809022108713786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201008_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201008_M_GLOBAL.out deleted file mode 100644 index 69a595516251b3dd8943940fec08d725bc7a76ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.06856159369150798 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201009_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201009_D_GLOBAL.out deleted file mode 100644 index e5ef42aeddb3bd3976117aa747ec3a5af218bbc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.062402081489562986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201009_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201009_H_GLOBAL.out deleted file mode 100644 index 5c6a73588e3f3f19acc5cc039cce3ee0da9deade..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.043001242478688556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201009_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201009_M_GLOBAL.out deleted file mode 100644 index 1ef09151c097d8807b8ab5051c7b8a147a7eca69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.06994003852208455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201010_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201010_D_GLOBAL.out deleted file mode 100644 index 8db47c85b9d20a11c03223570106d08dcd692ab6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.2444956143697103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201010_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201010_H_GLOBAL.out deleted file mode 100644 index fe5235360ca09ab6ad1348ffc9519972d7404774..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.16893260876337687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201010_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201010_M_GLOBAL.out deleted file mode 100644 index dec7d79a31a7e6ec155cdc353613895db1e13107..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.2422322948773702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201011_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201011_D_GLOBAL.out deleted file mode 100644 index f39e8848f123e1aedeafb2bf6a51478d67a00677..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.07138907512029012 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201011_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201011_H_GLOBAL.out deleted file mode 100644 index 109c37782a599877bdad12cd993f0745c1031bd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.04234797954559326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201011_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201011_M_GLOBAL.out deleted file mode 100644 index da928c3f1db3e1710c3afaa1a5bda7cfec4153bf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.0711879054705302 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201012_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201012_D_GLOBAL.out deleted file mode 100644 index dd6d2e0679d5900c1206db85b3cbe89189f3fd4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.07881606817245483 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201012_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201012_H_GLOBAL.out deleted file mode 100644 index 7440af0d8827b6f0605792c18c01789bc7175332..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.054163769880930586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201012_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201012_M_GLOBAL.out deleted file mode 100644 index f510059a19a9c0ab807d020100a9dba11294c6f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.1008127252260844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201101_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201101_D_GLOBAL.out deleted file mode 100644 index fccf7d79f9bb69fbed13837f4b4e3ebbef694419..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.24767088095347087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201101_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201101_H_GLOBAL.out deleted file mode 100644 index f5b77249b24608afbc268b353d4fda1e8353e06c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.14969464540481567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201101_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201101_M_GLOBAL.out deleted file mode 100644 index 6ae8071d319142603f7e2caaa6dcc56a11d868b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.25205702781677247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201102_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201102_D_GLOBAL.out deleted file mode 100644 index ecfd2d3304c577fb732842165c505b1361f64f66..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.20763737758000692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201102_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201102_H_GLOBAL.out deleted file mode 100644 index 394f52cd7dbbdbea22cb8b2ed1dae81050064dba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.06554233233133952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201102_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201102_M_GLOBAL.out deleted file mode 100644 index cdd3b24b713fcf2779413facccae6c3280fbff38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.06918992201487223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201103_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201103_D_GLOBAL.out deleted file mode 100644 index 04bb701b497e060488de56d52214f55c6262e536..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.22621510028839112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201103_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201103_H_GLOBAL.out deleted file mode 100644 index d45e6f558ab0cafa69465b5ae96c8e91e417a425..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.22714126110076904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201103_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201103_M_GLOBAL.out deleted file mode 100644 index 14fc1525845dbf46135973ca02a6b2d2c9055a6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.2672243277231852 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201104_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201104_D_GLOBAL.out deleted file mode 100644 index ca516d12f5d0c98e3d10a3801536cf07bbd57181..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.2451398770014445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201104_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201104_H_GLOBAL.out deleted file mode 100644 index 7cd5fe9c903dd8587a8266aeaaa19ec5cbd7873f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.15103299220403035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201104_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201104_M_GLOBAL.out deleted file mode 100644 index 3e14757450a22d434b32c6617a3a8498cb17549f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.07083382209142049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201105_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201105_D_GLOBAL.out deleted file mode 100644 index 0ed133dea973619716266c4d177426bf8688c441..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.07783011198043824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201105_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201105_H_GLOBAL.out deleted file mode 100644 index 36848fe102d68ff4143280f68b948e252879205c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.20393699407577515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201105_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201105_M_GLOBAL.out deleted file mode 100644 index d74b23b3ec71b8f34c803b2154a725b374d13e41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.06954123576482137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201106_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201106_D_GLOBAL.out deleted file mode 100644 index 2b4e56b835125bf5e8c119ecb62c09b8044aba37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.23301665782928466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201106_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201106_H_GLOBAL.out deleted file mode 100644 index 7997193c5cd6f589a45617a4be2b0048183b5500..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.04848177035649617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201106_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201106_M_GLOBAL.out deleted file mode 100644 index fc2485d9811e67b971b90539a7947e4e09d76c97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.24517626365025838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201107_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201107_D_GLOBAL.out deleted file mode 100644 index 25b2b72541c6e7ba2783c0fe805aac7709cf8546..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.07330806652704874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201107_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201107_H_GLOBAL.out deleted file mode 100644 index 65487e1aca80171fc84d315fbb8b352d9c117553..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.049992533524831136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201107_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201107_M_GLOBAL.out deleted file mode 100644 index 7063d4dc9fc744aff33a5e0c0dc590da5ffc88b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.2474374731381734 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201108_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201108_D_GLOBAL.out deleted file mode 100644 index ac78907ca359b3c3803799b6bd8fba35f8e60b28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.2092726469039917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201108_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201108_H_GLOBAL.out deleted file mode 100644 index ebfcbcc9e1ba6173abde384f3bac957f93da8fd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.1981712857882182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201108_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201108_M_GLOBAL.out deleted file mode 100644 index 3b3f3caf0b4cc5cdf1f3b068c24b7a658f5adda2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.23797310988108317 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201109_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201109_D_GLOBAL.out deleted file mode 100644 index 18a11c1da7cb11d5093e2e7c238f95e40e128eff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.22805020809173585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201109_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201109_H_GLOBAL.out deleted file mode 100644 index 7eb073d67b591c357349c591821bf01356158387..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.05267692406972249 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201109_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201109_M_GLOBAL.out deleted file mode 100644 index a3ec6e370687dc51e0c1816f2e253162c7ec2a4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.07550381422042847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201110_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201110_D_GLOBAL.out deleted file mode 100644 index aca40fca1bc0820cf86bc2329589e06ed573e67e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.06644476652145385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201110_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201110_H_GLOBAL.out deleted file mode 100644 index ef6ac0f9db099863aa48ccfa8df8289d658e6b11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.22443371613820393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201110_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201110_M_GLOBAL.out deleted file mode 100644 index 995602cf2a563ed4112fc11c11afe03eb6396ab5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.06983820994695028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201111_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201111_D_GLOBAL.out deleted file mode 100644 index 5de000ba1b6b3da8a9ee217a07b622058e5a9c43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.06884264548619588 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201111_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201111_H_GLOBAL.out deleted file mode 100644 index 4a5e9864d9365385c7b7ce836901af16d44b0720..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.20106436411539713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201111_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201111_M_GLOBAL.out deleted file mode 100644 index 282b3263acca8e5dc569e4f786a1641a1c793b3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.26622504790623985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201112_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201112_D_GLOBAL.out deleted file mode 100644 index 1683b13bc7cd8008f3011dc69b80fd54b3f7dfe3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.0713134765625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201112_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201112_H_GLOBAL.out deleted file mode 100644 index 5e039a56ccd65730c39eaba0226b02b63b3143e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.05847112735112508 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201112_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201112_M_GLOBAL.out deleted file mode 100644 index eacd63375ac1e6efa59908a2d888485f08da8122..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.08015153010686239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201201_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201201_D_GLOBAL.out deleted file mode 100644 index f5bcd9d927321e0c62d8c160e871424552b9be35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.26076683203379314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201201_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201201_H_GLOBAL.out deleted file mode 100644 index f3fb29de780ce453e3d1aca87886eb34de14311a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.05529167254765829 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201201_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201201_M_GLOBAL.out deleted file mode 100644 index 8cfa9c190673c135b4b02a7ba2629b987abbc3c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.07878438234329224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201202_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201202_D_GLOBAL.out deleted file mode 100644 index ccd5fec27d5a26ec970f8c9adb14ce8fd6af87f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.24609116315841675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201202_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201202_H_GLOBAL.out deleted file mode 100644 index c6783ed5dfaef775aa59b4355785735699789a5a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.06544287204742431 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201202_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201202_M_GLOBAL.out deleted file mode 100644 index 6e9f2a02ab0da61b1d52b801bcc3f1483d73dbf0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.06803577343622844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201203_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201203_D_GLOBAL.out deleted file mode 100644 index 617e562d5ebb019b1459587e3f3a44679dfa4583..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.0718464732170105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201203_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201203_H_GLOBAL.out deleted file mode 100644 index cf0faf29a5fac8b80983c12b6488da7b148ecc05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.046959360440572105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201203_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201203_M_GLOBAL.out deleted file mode 100644 index 474d4c016ced9b6d3f54bf47eafefef14a0d51bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.2377157688140869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201204_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201204_D_GLOBAL.out deleted file mode 100644 index 8de64066f713be61498fa1467f3fd8b074484f2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.0771987795829773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201204_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201204_H_GLOBAL.out deleted file mode 100644 index caa63e3555f3224fd660aece50dff64902e22681..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.05575608809789022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201204_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201204_M_GLOBAL.out deleted file mode 100644 index d44c0177d8f0bc614224a5bc65089428bf2564a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.06838488181432088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201205_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201205_D_GLOBAL.out deleted file mode 100644 index 5b10e46ed11ffc653830e15b11ea9126e393ea56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.07857205073038737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201205_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201205_H_GLOBAL.out deleted file mode 100644 index 3bf55b548a6c365a6138f865f67dc03c70d221e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.049299967288970944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201205_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201205_M_GLOBAL.out deleted file mode 100644 index 8f65cf41bb7b1fe72f1e0e4a1e8cb6e2e09ea32e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.08278703689575195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201206_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201206_D_GLOBAL.out deleted file mode 100644 index 2eaaa08daf358cc466b5bbd88d920db4d89b922f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.07871365547180176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201206_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201206_H_GLOBAL.out deleted file mode 100644 index 05fdabbf12e7f04ce6cc955bd1ed8814ba14ec28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.16754047473271688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201206_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201206_M_GLOBAL.out deleted file mode 100644 index 2757b9e30238165d553fb012ebd16ea19675af83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.07470315297444662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201207_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201207_D_GLOBAL.out deleted file mode 100644 index 7a85d98d321a82b1433b1e0008e5e4663db97afd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.07875890334447225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201207_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201207_H_GLOBAL.out deleted file mode 100644 index 6e6e953b956c13f4782bae18c498523d48afc80d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.22806982596715292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201207_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201207_M_GLOBAL.out deleted file mode 100644 index 3e07658c7afa04a10240ff052ff254d834341a70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.25598603089650473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201208_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201208_D_GLOBAL.out deleted file mode 100644 index 72802c24325a298f477423d0b01a6334600bd2d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.0822570522626241 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201208_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201208_H_GLOBAL.out deleted file mode 100644 index 3eeec3c5f55886d78d0d846378e7079817589b36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.15299499432245892 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201208_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201208_M_GLOBAL.out deleted file mode 100644 index 7e3ba268a0d0ceb312dd101921ab07a055d082a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.07536421219507854 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201209_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201209_D_GLOBAL.out deleted file mode 100644 index 816630606d651a6f902231bb61d1e2cc1f90018b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.24470940828323365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201209_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201209_H_GLOBAL.out deleted file mode 100644 index 3b4a71645cd4262f424d4b4268292cbd2552c994..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.055774966875712075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201209_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201209_M_GLOBAL.out deleted file mode 100644 index 02c01d5033763818dbabfbad37350922bdf68168..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.08042022784550985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201210_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201210_D_GLOBAL.out deleted file mode 100644 index 491d68e4380eb8abdba5ca67fee428e69395b293..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.08876558939615885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201210_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201210_H_GLOBAL.out deleted file mode 100644 index 7c48a4d25159ff22a4a9b32004c000f823ad017c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.23393929799397786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201210_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201210_M_GLOBAL.out deleted file mode 100644 index 00208dcc6e9a3c648f2f5e6e218e3e4b5a78d63e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.22900200287501019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201211_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201211_D_GLOBAL.out deleted file mode 100644 index 820a01bf6df80af18c7e5f14ec0ec373c7e2505a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.07345096270243327 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201211_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201211_H_GLOBAL.out deleted file mode 100644 index 4cbb5a4255e4af731143c1129a11c1cd55272d38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.05635717312494914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201211_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201211_M_GLOBAL.out deleted file mode 100644 index 9ee2402d8a163fd318bb2f74ea7e7873214cb4a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.08936292330423991 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201212_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201212_D_GLOBAL.out deleted file mode 100644 index a42d67c6958f7426a2c6a4bfd65fd32c29eced9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.09178711970647176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201212_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201212_H_GLOBAL.out deleted file mode 100644 index 601b791fd1e7a42579e334b7ff4797c53acb71e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.059201339880625405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201212_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201212_M_GLOBAL.out deleted file mode 100644 index c6f55a954972780d7e292cbc0e781486bb67a800..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.09135218063990275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201301_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201301_D_GLOBAL.out deleted file mode 100644 index de78029783b0b8b2654b017455d2048d50a7aac9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.27072305281956993 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201301_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201301_H_GLOBAL.out deleted file mode 100644 index f8a0093c045129e7ba97f4882453824d69e762bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.06568632125854493 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201301_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201301_M_GLOBAL.out deleted file mode 100644 index 042662781be09c9d0feb9ddf72fd770b9db9f582..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.09712005058924357 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201302_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201302_D_GLOBAL.out deleted file mode 100644 index 18fb34ab05f5ee5b897e79ceab5f5ed35e44c85e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.08763752381006877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201302_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201302_H_GLOBAL.out deleted file mode 100644 index dfe94f6c720e5e27c39a87ca3b4a3ddd700cfaa7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.07388307253519694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201302_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201302_M_GLOBAL.out deleted file mode 100644 index 24ec17bec610022959e7889cd6f7a5cc819fa450..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.25876628955205283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201303_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201303_D_GLOBAL.out deleted file mode 100644 index fb56d81a134d8fcb90a1d7aa419b92d67a9e5540..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.27413348356882733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201303_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201303_H_GLOBAL.out deleted file mode 100644 index 89aefb364f2199fdc6cccd2bdce37e9480fada5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.05352693796157837 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201303_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201303_M_GLOBAL.out deleted file mode 100644 index 537542c540b67c2f621eeded7e907d9ef4a81cc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.28997364044189455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201304_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201304_D_GLOBAL.out deleted file mode 100644 index 02321bbdd6b4955eda8846015aae332823dba17f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.08489696184794109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201304_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201304_H_GLOBAL.out deleted file mode 100644 index 08f4e17d6f678d50dbe44f0f3f85e280e8321b7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.060540962219238284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201304_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201304_M_GLOBAL.out deleted file mode 100644 index ef10dddf95e92615f17019acec4226f2ff0957db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.09225163459777833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201305_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201305_D_GLOBAL.out deleted file mode 100644 index 606e9b88d9ec0475266ed85f6cd374ef1d44b546..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.08438502152760824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201305_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201305_H_GLOBAL.out deleted file mode 100644 index f2d1dca89e1c4999bdc5fb1d83c32abd9f1e9ec1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.22570332686106365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201305_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201305_M_GLOBAL.out deleted file mode 100644 index b9e29c1d516043632682da8702c206b34713372f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.08382407426834107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201306_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201306_D_GLOBAL.out deleted file mode 100644 index 179132326659956558232c578cae031b3f055dfe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.09626053174336752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201306_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201306_H_GLOBAL.out deleted file mode 100644 index 9ebf7fc8ab9574d48fb07ab4d49ee763c560d565..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.05529115597407023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201306_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201306_M_GLOBAL.out deleted file mode 100644 index 544bf4ad8afb9628989c2baa02df4908d2a7504e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.09493929545084635 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201307_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201307_D_GLOBAL.out deleted file mode 100644 index bf1118aa3d9f5d31821530321efeb618495a999f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.08111356496810913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201307_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201307_H_GLOBAL.out deleted file mode 100644 index 0ab6c5678a8c342be02a9febb848e63c66c776b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.05687746604283651 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201307_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201307_M_GLOBAL.out deleted file mode 100644 index dfe94f4dc3017516552b546f74a9f511ce15e7d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.27431360880533856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201308_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201308_D_GLOBAL.out deleted file mode 100644 index 04d75c020ce8101265a1671ebf4cf6a0a1a55760..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.09462254047393799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201308_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201308_H_GLOBAL.out deleted file mode 100644 index 2485e2fc60b2323df44406d5ffd226901a9fd4ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.05124659140904744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201308_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201308_M_GLOBAL.out deleted file mode 100644 index b3e0c0008d507c3a006e66e81bdef0a2d0734308..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.28649831215540567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201309_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201309_D_GLOBAL.out deleted file mode 100644 index 515651fdffcef5155019d9941b6e541e85dfb03b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.29514655272165935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201309_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201309_H_GLOBAL.out deleted file mode 100644 index fddfb052cfcfe1615dd1c7b3af570d6b87c1c11f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.23431907097498575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201309_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201309_M_GLOBAL.out deleted file mode 100644 index 13204ef0ffbd690d3c8c838d22b488db4217c1f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.08962232669194539 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201310_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201310_D_GLOBAL.out deleted file mode 100644 index ea13d2ca2cadc37faa2c9f02e5d842a6d9c81f4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.08190360069274902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201310_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201310_H_GLOBAL.out deleted file mode 100644 index 60b883d59ddccad295ad360b05d8d30e9973113c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.06122158368428548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201310_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201310_M_GLOBAL.out deleted file mode 100644 index 25779ab59fd9340adccae98faec46814b3caf64a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.08376288016637166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201311_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201311_D_GLOBAL.out deleted file mode 100644 index 1d476db8e2a3ea6f7b796d87e5b7c19e5f25cf7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.2670092781384786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201311_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201311_H_GLOBAL.out deleted file mode 100644 index a39f8a52fedc0ceb49d548b2720c54cb3d9c923c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.05554513533910115 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201311_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201311_M_GLOBAL.out deleted file mode 100644 index 47f2e5694615ac4e2d9c669cdd7e670b73bbfa14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.08466287453969319 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201312_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201312_D_GLOBAL.out deleted file mode 100644 index 2df8c7074f142dff8a756bad8f9730abdfee423b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.09075065851211547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201312_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201312_H_GLOBAL.out deleted file mode 100644 index 6c24d811e358271845226190cb41ba3ba2b2ccf5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.0549068808555603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201312_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201312_M_GLOBAL.out deleted file mode 100644 index f71b6f6337d98727abdccd007ed3221052c23d63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.27903804381688435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201401_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201401_D_GLOBAL.out deleted file mode 100644 index a69d9cec0ac6763550e6e3468c0946cca747c205..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.262806244691213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201401_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201401_H_GLOBAL.out deleted file mode 100644 index c98be3e3f7eaa3ebc23ec6bc171c8e4cbb316ba0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.05450758934020996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201401_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201401_M_GLOBAL.out deleted file mode 100644 index 80c6d39be2207a764f33179051420383b58b7046..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.08022658824920655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201402_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201402_D_GLOBAL.out deleted file mode 100644 index b45ee55468792a502dc3ab0a7ac6ccea911c5d1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.09654739300409952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201402_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201402_H_GLOBAL.out deleted file mode 100644 index 373ea4c862d5a22c5b9c35a3561602035332dc73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.0554086963335673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201402_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201402_M_GLOBAL.out deleted file mode 100644 index 656d370c32729e19ac1d182ba27335bb0f5c6c6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.09437774022420248 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201403_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201403_D_GLOBAL.out deleted file mode 100644 index a3333de1941dd1d120010af575dea2dcc5a69557..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.1002129077911377 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201403_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201403_H_GLOBAL.out deleted file mode 100644 index 264187197ed7a04e601cdd9a953399704e82b466..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.06394702593485514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201403_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201403_M_GLOBAL.out deleted file mode 100644 index aa9476a8a63c75aac153500fd96d8a5327fd8972..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.28163432677586875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201404_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201404_D_GLOBAL.out deleted file mode 100644 index 6be192e066bf5a48a8540420a4974853a7c63624..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.10335952838261922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201404_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201404_H_GLOBAL.out deleted file mode 100644 index 8782966707e1ac53b4729f4c00a589a418029390..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.09025188287099202 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201404_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201404_M_GLOBAL.out deleted file mode 100644 index dab472c8ec4e31525a4a9618bce6782f3ba7d51d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.3274501363436381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201405_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201405_D_GLOBAL.out deleted file mode 100644 index d44b5fabb3eac09ad7e13cce87486c8c5fc9f017..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.09491339921951295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201405_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201405_H_GLOBAL.out deleted file mode 100644 index a9d0f057e96caf23d52e3370b78613170026f3f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.06226992607116699 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201405_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201405_M_GLOBAL.out deleted file mode 100644 index 8ed2732219d9c5efbf8de49a679b7e590d4b2035..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.09156233072280884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201406_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201406_D_GLOBAL.out deleted file mode 100644 index e96ed18a88765d3e93c5d9af72064f3a36384fb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.29952431122461953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201406_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201406_H_GLOBAL.out deleted file mode 100644 index f3d7b2e5755e453a0179b3fa199f3bd7ee198acd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.24759242137273152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201406_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201406_M_GLOBAL.out deleted file mode 100644 index d0e46a83b7d3e58c20430e861a25ebef991c670f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.27167549133300783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201407_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201407_D_GLOBAL.out deleted file mode 100644 index a4e158307e59f165c21e6c68da596e6d4a4d81a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.10830243825912475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201407_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201407_H_GLOBAL.out deleted file mode 100644 index 656530fb5554284af56bebc04161d0e6ee1a8aea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.23444969256718953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201407_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201407_M_GLOBAL.out deleted file mode 100644 index b1d61537af76c75aa12a42e1cff5f1d9f4cbedb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.09517194827397664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201408_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201408_D_GLOBAL.out deleted file mode 100644 index 4075ba4346183233a60ea1693d548f62bebc24e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.37507767279942833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201408_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201408_H_GLOBAL.out deleted file mode 100644 index f77777c2db045e2d2169944b09edd71c1f252b5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.06677093505859374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201408_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201408_M_GLOBAL.out deleted file mode 100644 index bc48443e34f0e0db8401618ed4b656fd18e21ddb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.0982366402943929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201409_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201409_D_GLOBAL.out deleted file mode 100644 index 93499ba7c50f950bd7c641d2eb8d369a56978395..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.11078648567199707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201409_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201409_H_GLOBAL.out deleted file mode 100644 index 6334082cdcf8e2eb9866d8ddd5688880cf2d34c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.24243880112965902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201409_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201409_M_GLOBAL.out deleted file mode 100644 index 58bddc36800b8eef27575beadddaaa4c282bb1e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.294758669535319 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201410_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201410_D_GLOBAL.out deleted file mode 100644 index 751973eb992e355b22532346ef128a9c610c0d0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.1241647481918335 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201410_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201410_H_GLOBAL.out deleted file mode 100644 index c29edd5c26c51265c82e5dd05c8debb184d32f95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.21744898557662964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201410_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201410_M_GLOBAL.out deleted file mode 100644 index 2646b1f7d1431ba4f83b04515ba0ea5a59ee13b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.11282375653584799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201411_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201411_D_GLOBAL.out deleted file mode 100644 index d8df773094f5750394f7723821d095e42a76acf9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.10466241439183553 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201411_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201411_H_GLOBAL.out deleted file mode 100644 index d6c29161124af4a134c209e51b3f55bfde8fbefb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.23592558701833088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201411_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201411_M_GLOBAL.out deleted file mode 100644 index 510987681a242da2ea1b2b9ddda9f26b8a4554f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.32631468772888184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201412_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201412_D_GLOBAL.out deleted file mode 100644 index 6e33b8bea8a9dbdc1254ebd972d243af3893febf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.09251567522684732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201412_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201412_H_GLOBAL.out deleted file mode 100644 index dc2cf3630007007af7c9222149faa1c21859fa79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.23815814654032388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201412_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201412_M_GLOBAL.out deleted file mode 100644 index 10431f53a1e1ce997414e7e69b6e22e6be598af5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.10151975552241008 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201501_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201501_D_GLOBAL.out deleted file mode 100644 index ce9d21befe361c143355d1ebc416034d94e65483..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.33261905511220297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201501_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201501_H_GLOBAL.out deleted file mode 100644 index cf849493318983cf01a9da42dc996066248fe747..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.07205971082051595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201501_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201501_M_GLOBAL.out deleted file mode 100644 index 09de8ba11bd13a624b745c2ef23b6060306b3b4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.10703093608220418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201502_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201502_D_GLOBAL.out deleted file mode 100644 index f2701ee18f2905cd65b64d6bd54b0bd9e1ebdc3b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.29960730075836184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201502_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201502_H_GLOBAL.out deleted file mode 100644 index 674a691a18b71a2b35ba0cc459130ca92c0a533d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.07848787705103556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201502_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201502_M_GLOBAL.out deleted file mode 100644 index b2205a20a425adcc0d80784250afc658f6bad0ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.14170045057932537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201503_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201503_D_GLOBAL.out deleted file mode 100644 index e7ccab3d7867c8521b0e7a9c807d41ce0c473e54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.10625830491383871 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201503_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201503_H_GLOBAL.out deleted file mode 100644 index 3d831f9de4fa0a3f9189f44479c4fc60066524ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.22596593300501505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201503_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201503_M_GLOBAL.out deleted file mode 100644 index 3d9b91bb86ce9b64837b6fa0a00720c4d9a2e748..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.1130467693010966 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201504_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201504_D_GLOBAL.out deleted file mode 100644 index 7cfbd94f4192925f93d94c805eeb643ce01e6c82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.3219728390375773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201504_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201504_H_GLOBAL.out deleted file mode 100644 index 334d04722974e6f7d1aca14644d65eb77c51a9c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.24532772699991862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201504_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201504_M_GLOBAL.out deleted file mode 100644 index a38d29d8d3c208a528192f76dabd9de61e387af6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.10562047958374024 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201505_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201505_D_GLOBAL.out deleted file mode 100644 index b20569a489d92dc6b342db711a986d64dbfa95e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.10895182689030965 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201505_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201505_H_GLOBAL.out deleted file mode 100644 index 1d437880b48996d69db4ec6be3b16ba36c2294b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.06667507489522298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201505_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201505_M_GLOBAL.out deleted file mode 100644 index 0e042fe62d7892a6c74a83d40de9831456d760a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.3873770634333293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201506_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201506_D_GLOBAL.out deleted file mode 100644 index c4f77fd95995e5244acdd7dea5f8ccc46088bfa0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.31472839911778766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201506_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201506_H_GLOBAL.out deleted file mode 100644 index 8202ffdd374da8b5bfcf2243aaac37311414fb19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.06887481609980266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201506_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201506_M_GLOBAL.out deleted file mode 100644 index 13a5becf0cb716153a3346fa87538f6eda0a1e4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.10270890792210897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201507_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201507_D_GLOBAL.out deleted file mode 100644 index 156d4b786e5c3f9102e8e2ba579d8d3ef3e08bd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.11203227837880453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201507_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201507_H_GLOBAL.out deleted file mode 100644 index bf48802d95c69fdf0a9705e3a3acca1d44e1a8a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.24085632960001627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201507_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201507_M_GLOBAL.out deleted file mode 100644 index 17fac8a5e5b5cadf69de392c3cbe9eaad88f413a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.11103067795435588 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201508_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201508_D_GLOBAL.out deleted file mode 100644 index 36f40d823d4172979e5d5ce4d2154d06caee7833..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.3212705612182617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201508_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201508_H_GLOBAL.out deleted file mode 100644 index c5c171937614cd2dac04649869ef38dd8ae2070f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.08011934757232667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201508_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201508_M_GLOBAL.out deleted file mode 100644 index 1374bd04f44ba11413391157c5349b5cb7397b12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.10969179073969523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201509_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201509_D_GLOBAL.out deleted file mode 100644 index 4a07fa75b991002fcba271b4b02cd030b13961fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.40761590003967285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201509_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201509_H_GLOBAL.out deleted file mode 100644 index 1043aed5adf9969a6539ecbd7fb4c6859b1788ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.25226399501164753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201509_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201509_M_GLOBAL.out deleted file mode 100644 index 8656831031572d5f90e3d0bbc3bacead9cfc509c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.10322134892145793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201510_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201510_D_GLOBAL.out deleted file mode 100644 index dc20282948a718ce8c0b567507047bbf5e800d00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.1025182048479716 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201510_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201510_H_GLOBAL.out deleted file mode 100644 index 6d5cb90ac03536a2e8dd40e35ad1b23e73820cc7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.22055901686350504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201510_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201510_M_GLOBAL.out deleted file mode 100644 index 20a40087801ab51129358f5cd10ee961e883c827..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.11717200676600138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201511_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201511_D_GLOBAL.out deleted file mode 100644 index 792cafeb43261b2d732bbb4c65cd05c0b95dd634..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.1160021980603536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201511_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201511_H_GLOBAL.out deleted file mode 100644 index 2a536386208f42cd757a11eb88b423a7a3afc046..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.07191530068715414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201511_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201511_M_GLOBAL.out deleted file mode 100644 index 842c9a43e9e25417a1cd6cdeecca54522a2a8d48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.1045738180478414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201512_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201512_D_GLOBAL.out deleted file mode 100644 index 78b760bbdcc2a26129fbb6e0b994f4b038461df7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.11716856956481933 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201512_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201512_H_GLOBAL.out deleted file mode 100644 index 8431a8d2c9cd54256800e00a166220ed38424287..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.08206803798675537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201512_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201512_M_GLOBAL.out deleted file mode 100644 index f8ff7ef604fb440e4a53486f5aafe51ddf958388..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.4345852812131246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201601_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201601_D_GLOBAL.out deleted file mode 100644 index edd1465afa1e40bbf7b5bd78c9b6598960c99188..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.11778326829274495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201601_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201601_H_GLOBAL.out deleted file mode 100644 index 6ddec3c45f46c580b16ba942f721adcdf8095014..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.08278636932373047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201601_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201601_M_GLOBAL.out deleted file mode 100644 index bdb66af1860554b5383ef39285cbc82f1105e78a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.3540420651435852 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201602_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201602_D_GLOBAL.out deleted file mode 100644 index 3db2ed89dc6c91e8d8d708febb5f4259926aeb2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.33095061779022217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201602_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201602_H_GLOBAL.out deleted file mode 100644 index b19bb5816e437daca02660fa2d4b0f3a45114eb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.08426812489827475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201602_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201602_M_GLOBAL.out deleted file mode 100644 index aa3a3f52d8dd68ba05701d18de7cd475b1eed890..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.11024367411931356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201603_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201603_D_GLOBAL.out deleted file mode 100644 index 6dff447c22878e79a45b24dc6a725b35462195df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.14694352944691977 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201603_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201603_H_GLOBAL.out deleted file mode 100644 index f1648c37a3fcd84c560b091689d8007ee583eddb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.09624224901199341 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201603_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201603_M_GLOBAL.out deleted file mode 100644 index b32c895a4f64092cb038fd83743c000cbbeb6b82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.11188269058863322 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201604_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201604_D_GLOBAL.out deleted file mode 100644 index 026d9a50210e5a11a623948b5930167749546b81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.11877171595891317 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201604_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201604_H_GLOBAL.out deleted file mode 100644 index 51ae4ec448f50f92326b3f325e70183026b98a67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.09748032490412394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201604_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201604_M_GLOBAL.out deleted file mode 100644 index 1ee5f386ed973659f33375cef9fd3199d5cd837c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.11714860995610556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201605_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201605_D_GLOBAL.out deleted file mode 100644 index 467d7b428227cf70a2df488916e8d08873a78875..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.12358051935831706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201605_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201605_H_GLOBAL.out deleted file mode 100644 index 5de57b928a4a0861d702940279c3a1aae4a4a185..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.2649388313293457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201605_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201605_M_GLOBAL.out deleted file mode 100644 index 1ceb818a81729dd00dcefc6907081bf0177148b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.11763421694437663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201606_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201606_D_GLOBAL.out deleted file mode 100644 index bae927b15f9c3c65e8c24e7dc111f540af03abed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.14189696311950684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201606_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201606_H_GLOBAL.out deleted file mode 100644 index df2b780af6b7521de5e0fa6eb22f9bdc0689c7d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.08354166746139527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201606_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201606_M_GLOBAL.out deleted file mode 100644 index 7684278c5dc3ff906139a73ff0af89074717ba5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.34560659726460774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201607_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201607_D_GLOBAL.out deleted file mode 100644 index 2182a8c1a83f0c15ded194b4899994883e92ece8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.1234200398127238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201607_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201607_H_GLOBAL.out deleted file mode 100644 index a21f145d853e3e5bae8d6c7a56de0a0c6981d3d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.2865241010983785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201607_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201607_M_GLOBAL.out deleted file mode 100644 index 34f0ada65476b46874b002b02ad7ac93270c280a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.39460883537928265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201608_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201608_D_GLOBAL.out deleted file mode 100644 index a605e181162dabcbbbf866b1da9039ab1c2ca864..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.37943119208017984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201608_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201608_H_GLOBAL.out deleted file mode 100644 index e42294410c9a969ab8fc88d6019dcedf88a09455..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.08460747400919597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201608_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201608_M_GLOBAL.out deleted file mode 100644 index cdb0da46585b0b092cda568c1f9862c30fdc7da7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.11566860675811767 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201609_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201609_D_GLOBAL.out deleted file mode 100644 index 223accb11bf2e91a12919f936f9194000f4aac4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.11916444698969524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201609_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201609_H_GLOBAL.out deleted file mode 100644 index f69322f48080e4c9debc99e5c66a00087125791a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.0802029530207316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201609_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201609_M_GLOBAL.out deleted file mode 100644 index 41b6f288fbc8da8595f57590659b8ca50a3afac6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.12398316462834676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201610_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201610_D_GLOBAL.out deleted file mode 100644 index 74377d67e400a1258a8be3e4f351bb1c2ff65bb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.38966902494430544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201610_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201610_H_GLOBAL.out deleted file mode 100644 index 2ad904d94ced1a3862c6b74a4171387993e6e129..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.08509016036987305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201610_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201610_M_GLOBAL.out deleted file mode 100644 index 67d3413587beb021e7c8bcda9803ad348dc7d5ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.11106634934743245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201611_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201611_D_GLOBAL.out deleted file mode 100644 index c80f2e453034c68f3f63a0d12b9ea0252fc24111..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.36762314240137733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201611_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201611_H_GLOBAL.out deleted file mode 100644 index ed3394def99df291ade9f44f7f657cd57c1edb55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.08301699956258138 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201611_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201611_M_GLOBAL.out deleted file mode 100644 index a9cff6780fcf0b203ed0322f7e150755428c49cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.12785078684488932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201612_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201612_D_GLOBAL.out deleted file mode 100644 index 4ad99ffc53fc492d9f62204f96da0694e8c73a05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.13019687334696453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201612_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201612_H_GLOBAL.out deleted file mode 100644 index 74e1ccbbb016e6c59a1cfc474ef9ed1326c5a886..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.09184021949768066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201612_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201612_M_GLOBAL.out deleted file mode 100644 index f27fe6f7880af3273d078e71a3ac885c6d21c33f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.11977947950363159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201701_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201701_D_GLOBAL.out deleted file mode 100644 index 15998639d39a71c6f4f4b6936088cb67a07e9410..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.3415348887443542 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201701_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201701_H_GLOBAL.out deleted file mode 100644 index 76580d5c3fa08f8963ef00b36e73e354a479dc31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.09482752482096354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201701_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201701_M_GLOBAL.out deleted file mode 100644 index e0ab2a45dbcc6b79528d140d1f4ef1f3dcf58d4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.12353012164433798 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201702_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201702_D_GLOBAL.out deleted file mode 100644 index 3b9ff96f786396d6b78927f1efb13ae5ccab2f2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.11143912076950073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201702_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201702_H_GLOBAL.out deleted file mode 100644 index eebf2f7bfbc6395c158aaeee01ba1b36e44769a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.1136927048365275 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201702_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201702_M_GLOBAL.out deleted file mode 100644 index a539d0f3dbce78f2b9c821d745dc9fcc49251b1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.13292792240778606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201703_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201703_D_GLOBAL.out deleted file mode 100644 index d6ca3a906cdcea3185c91a418fd6d2468583dd51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.11408145427703857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201703_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201703_H_GLOBAL.out deleted file mode 100644 index ac21f55527c8d395629631bd666ec45c43a8366d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.28538802862167356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201703_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201703_M_GLOBAL.out deleted file mode 100644 index 2c67f699712712f36d43d3217b8ee20bd6d3a120..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.12653587261835733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201704_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201704_D_GLOBAL.out deleted file mode 100644 index eaa87a9590886603c3a6a37508b40763040a5d7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.13310877879460653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201704_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201704_H_GLOBAL.out deleted file mode 100644 index 886de858f81fcff8460b56427a3a0eccdcffd479..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.09003039598464965 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201704_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201704_M_GLOBAL.out deleted file mode 100644 index fad9f25ac946812d98c16b98530c7b0486e316a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.12211902538935343 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201705_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201705_D_GLOBAL.out deleted file mode 100644 index 1cc6400fec837efe22b47fe8dc559625001e06a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.12345004479090373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201705_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201705_H_GLOBAL.out deleted file mode 100644 index b2a05e7fe694c5cf6a04092f25125f74310e577d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.08482306003570557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201705_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201705_M_GLOBAL.out deleted file mode 100644 index 3c0ef27ca51b1a167e8bac0451d11304412e22db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.13139182329177856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201706_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201706_D_GLOBAL.out deleted file mode 100644 index f643eeb90c682b5527e822fd90f3a06e1cea1aef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.11800886392593384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201706_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201706_H_GLOBAL.out deleted file mode 100644 index a51a9551872a220178f03714f28e707b6b0151c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.0869922916094462 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201706_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201706_M_GLOBAL.out deleted file mode 100644 index a9c517455905d903a4a076126b87f8c2045241fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.40054800510406496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201707_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201707_D_GLOBAL.out deleted file mode 100644 index 18a06b584597243459847cbf4b86c96c0b0fa9c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.15885993242263793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201707_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201707_H_GLOBAL.out deleted file mode 100644 index 58e82b762ca2110a0e6efdde60620bb62caa5aed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.09827619791030884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201707_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201707_M_GLOBAL.out deleted file mode 100644 index fe0828fefed7e14fc5740ade48aad08a4b81306b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.12098872661590576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201708_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201708_D_GLOBAL.out deleted file mode 100644 index e6c67d7181321c5313ece883d2f3ef910021c7a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.1448058565457662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201708_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201708_H_GLOBAL.out deleted file mode 100644 index f2d0b0aed30e35869951ba5233b35cf538bda63a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.4038984457651774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201708_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201708_M_GLOBAL.out deleted file mode 100644 index 60f0c516f01c8e0a69c79f937aac678117d45fbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.14414809147516885 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201709_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201709_D_GLOBAL.out deleted file mode 100644 index 49feb709b52c4584a98a730ec677847e4ecf39dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.1269850214322408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201709_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201709_H_GLOBAL.out deleted file mode 100644 index af9c9359ca245b22da6741c74089027140adabd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.10107894341150919 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201709_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201709_M_GLOBAL.out deleted file mode 100644 index 2fef07ef93d78297461ae2f7657f82824bc57e96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.1316869378089905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201710_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201710_D_GLOBAL.out deleted file mode 100644 index 4da14d2545784e9318136a5170a90205c22439e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.13945953845977782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201710_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201710_H_GLOBAL.out deleted file mode 100644 index 138a8afd7cb2a3b84dbe48aaa9c7aca8aff4f099..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.29760167598724363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201710_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201710_M_GLOBAL.out deleted file mode 100644 index 7267c8aa363687903bc8aaa181cb6442300560e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.13122974236806234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201711_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201711_D_GLOBAL.out deleted file mode 100644 index eb84e1577396802c83781beff1ae9dc1acb77e48..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.18224581480026245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201711_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201711_H_GLOBAL.out deleted file mode 100644 index 8a1318dc756e3876963a55de5e229ba307d4f2f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.12208831310272217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201711_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201711_M_GLOBAL.out deleted file mode 100644 index 3bc8dc1758ab1dcd6629ddd5024f0959bf2c1d9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.4867619355519613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201712_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201712_D_GLOBAL.out deleted file mode 100644 index 4c57e94b49d2893d70e0ac673e317967533becc1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.15925205151240032 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201712_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201712_H_GLOBAL.out deleted file mode 100644 index dfb47ccf9ff39b821d013b6ba553016f57b7f329..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.10817999839782715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201712_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201712_M_GLOBAL.out deleted file mode 100644 index 06b4d6074b1901089a327c69a2e8467cee75d1fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.1262810468673706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201801_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201801_D_GLOBAL.out deleted file mode 100644 index 8b9ad2762491c43b0a8f354bac7c744a246a3390..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.14295740524927775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201801_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201801_H_GLOBAL.out deleted file mode 100644 index a9724f7a21b2fcc6337a981c6c9182a5bf2b6d60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.31468039751052856 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201801_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201801_M_GLOBAL.out deleted file mode 100644 index cb3fa76070c1afc512c98fddd6b3e45728a1ab74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.42819779316584267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201802_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201802_D_GLOBAL.out deleted file mode 100644 index 18b98663b1b5fc2eba245e822bf9d48579200f0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.45141468445460003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201802_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201802_H_GLOBAL.out deleted file mode 100644 index 53af1ad5a07a16e72c47064903c656ee60b64014..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.33274641036987307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201802_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201802_M_GLOBAL.out deleted file mode 100644 index a590f50f0647c27d72e6113571b635b32baaf840..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.4689849416414897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201803_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201803_D_GLOBAL.out deleted file mode 100644 index e5ef2336e24e4c212f7d885dd803309247d1f2e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.15476734638214112 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201803_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201803_H_GLOBAL.out deleted file mode 100644 index 57580d21969b5bdb5cb307195800214a0ecd9f96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.09788293838500976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201803_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201803_M_GLOBAL.out deleted file mode 100644 index a599e69f6f6b8ed1c9b4160c1482d1770d82a638..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.15409046808878582 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201804_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201804_D_GLOBAL.out deleted file mode 100644 index feb24d58649bf30527386adaf939d416069ae464..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.4367516915003459 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201804_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201804_H_GLOBAL.out deleted file mode 100644 index 8c970a0c9bf92b0f967149d62a314dc3d80c24b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.10718847513198852 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201804_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201804_M_GLOBAL.out deleted file mode 100644 index e974e12ec8041221a747142e98c31cbb2e21c68e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.1429721713066101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201805_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201805_D_GLOBAL.out deleted file mode 100644 index 97db15953487888bf8054d45067351b4c539d51b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.1577903946240743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201805_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201805_H_GLOBAL.out deleted file mode 100644 index 76541154a2b9099500894a2091cb203b0833068d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.30743290583292643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201805_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201805_M_GLOBAL.out deleted file mode 100644 index 520f97804026fa20e0cdf72704a642d26ce2a094..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.1622013529141744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201806_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201806_D_GLOBAL.out deleted file mode 100644 index 5019c8f62bc03429f57b847e9fb26cf62805f363..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.48323789437611897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201806_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201806_H_GLOBAL.out deleted file mode 100644 index d9a35d98e6a38603ed47bd6532ffb9b8ffdcce58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.3343073089917501 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201806_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201806_M_GLOBAL.out deleted file mode 100644 index e2e2d70cade286a2e5e0c9795663771d78bb0b12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.4618371327718099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201807_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201807_D_GLOBAL.out deleted file mode 100644 index 5f4cb1f81a2b6af02a0d878855f325e3e1e45cd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.4275582631429036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201807_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201807_H_GLOBAL.out deleted file mode 100644 index 6cd177f979404c53b77e2e093f11d4c9c7cdc3fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.3230661948521932 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201807_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201807_M_GLOBAL.out deleted file mode 100644 index 2acee0f4b41d119cf0a1b46c8f7a62f517bddf51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.43985714117685953 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201808_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201808_D_GLOBAL.out deleted file mode 100644 index b5f98084fe9609a39abf570c6ddf599215a436ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.4388911565144857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201808_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201808_H_GLOBAL.out deleted file mode 100644 index 671517bd29bdc6186bed4c3bc34e76bc970ba3d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.33451061646143593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201808_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201808_M_GLOBAL.out deleted file mode 100644 index 616a82b4ae73e821fcb3a02eb5bc159635c7e6a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.46580178340276085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201809_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201809_D_GLOBAL.out deleted file mode 100644 index 8a8fd78506c4429ef8cae1972b20e6f5c2c84ae6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.13993869622548422 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201809_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201809_H_GLOBAL.out deleted file mode 100644 index 208aa1c0a6477303da554e64dca09f99e1a84a32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.12987075646718343 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201809_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201809_M_GLOBAL.out deleted file mode 100644 index d376261b50d47a941d5bda85757e055193699d81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.4409501870473226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201810_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201810_D_GLOBAL.out deleted file mode 100644 index 6ac2c88d77d898dbb8a6ae956b4b09186cc3e5b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.13193511168162028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201810_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201810_H_GLOBAL.out deleted file mode 100644 index 8b72bdaed9720c09af514d759cf3a8a69c1df875..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.4359336972236633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201810_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201810_M_GLOBAL.out deleted file mode 100644 index 856f9e2e28590c377ef9a6bfd649a3fb9b6e8e60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.16468634208043417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201811_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201811_D_GLOBAL.out deleted file mode 100644 index ba1cbc0f8a9341997a159feff333449e07231329..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.13869619369506836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201811_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201811_H_GLOBAL.out deleted file mode 100644 index 6e3a889a06af9da7dd8d70d32a288ae7a8535f8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.09607184330622355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201811_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201811_M_GLOBAL.out deleted file mode 100644 index e7a38e732b467b7e8ba132c068406e3d2f3f1cf8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.3906569957733154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201812_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201812_D_GLOBAL.out deleted file mode 100644 index eca23e104b746c3c96ab3663ac9edcef67021c80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.1619438846906026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201812_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201812_H_GLOBAL.out deleted file mode 100644 index 75d0a841b01565e923d78d252785bc42240e898a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.11340311765670777 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201812_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201812_M_GLOBAL.out deleted file mode 100644 index 55569471672e4cc9edf9d2220ae3bb76c2cfa7ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.1400268832842509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201901_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201901_D_GLOBAL.out deleted file mode 100644 index a02c0fc86feb99a3c7d8ce5220b328e6090d1944..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.07152305444081625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201901_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201901_M_GLOBAL.out deleted file mode 100644 index 03cb0c3004c57f32fcfc86c16b4d98c07043146b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.07247892220815023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201902_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201902_D_GLOBAL.out deleted file mode 100644 index b2d48eba61bf0a5947d2b6af0200bd8ee0434a5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.07097827593485515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201902_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201902_M_GLOBAL.out deleted file mode 100644 index 45bacc65e37f8a1e37bddd9047f7626ce9e02c28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.05665556987126668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201903_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201903_D_GLOBAL.out deleted file mode 100644 index c9cda761c7d34e52b0ca64b87477c6e96f67f38e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.0659328579902649 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201903_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201903_M_GLOBAL.out deleted file mode 100644 index f09c38ad581b910a1f99d047d0611aaefd718263..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.2314885457356771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201904_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201904_D_GLOBAL.out deleted file mode 100644 index ea46f179a4c17379f0baf70a0627b31baf510380..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.05725550651550293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201904_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201904_M_GLOBAL.out deleted file mode 100644 index 27fd1d1083194c8459aef8c28e6b22940e11453b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.062131985028584795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201905_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201905_D_GLOBAL.out deleted file mode 100644 index f6dea1b00a8d39b9e76085dca9b98857d64fe626..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.0523076335589091 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201905_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201905_M_GLOBAL.out deleted file mode 100644 index 8a3367039e5235d101ee998be61c460d7c99af31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.054563041528066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201906_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201906_D_GLOBAL.out deleted file mode 100644 index f21363967c2a7ff71c331ef3154183ff35eabca9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.23328882058461506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201906_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201906_M_GLOBAL.out deleted file mode 100644 index 352413090fea1e03527d4bb6d0794d5dcdc99771..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.05607128938039144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201907_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201907_D_GLOBAL.out deleted file mode 100644 index 945243c253d137bfbc5586b80684328905943ebf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.2350592255592346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201907_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201907_M_GLOBAL.out deleted file mode 100644 index bda8851aeefdc44c9d1aeb47d66c4aaaf7208b8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.06634591817855835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201908_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201908_D_GLOBAL.out deleted file mode 100644 index 58ef8f4c17acb40637cedb0d51fd34c8db033344..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.053874893983205156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201908_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201908_M_GLOBAL.out deleted file mode 100644 index d71230d0f3c9c0905476d7e80046ca59b7f3a77c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.2036379337310791 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201909_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201909_D_GLOBAL.out deleted file mode 100644 index 7bde9c2380bebf84fb67247074dca3d830b9a352..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.05942709843317668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201909_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201909_M_GLOBAL.out deleted file mode 100644 index 51f1e8dc363fd2e9cb545dda24d22425a101e521..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.2317446231842041 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201910_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201910_D_GLOBAL.out deleted file mode 100644 index f698da4d24d756aa4cfab1946e2c01df95a3653b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.058720688025156655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201910_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201910_M_GLOBAL.out deleted file mode 100644 index 533c66dfc383aa0ae72834c5303ba7310ec7088b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.1886424422264099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201911_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201911_D_GLOBAL.out deleted file mode 100644 index 793dacb96e610376aded62e26e269708ebf86209..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.21853436628977457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201911_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201911_M_GLOBAL.out deleted file mode 100644 index 328448278de40ce83b60bb7a526dc340250a9e50..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.06596636374791463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index 16b23d83dac13292a3226fbfaa217016c8c913f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.5535594463348389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index 2ab9e2327bd151fcb9eadaf47b0b5d0bd80f6f3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.14145255088806152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index 2e0e3a915ea10378e44778a43945d01da80b097a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.1920617659886678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index 27516640a23c1b2999c3d57ea50dfb10f8386b18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.1991123914718628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index 7dbebe4859bcd419535b4776cd2372fc9ff48e8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.13611958026885987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index 042e694c5dbf26b0273032587b28ae7e2f14b7ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.535367755095164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index 1f7c29cc514235c2ca89b12d048ffc03fb2001e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.18808531761169434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index 6179b7ce203b8e0b2e8327e13a6ff120c43d8e8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.17124955654144286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index 5918e1e4071d481faa471c22cbb45247c3b40669..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.5151265382766723 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index 526c7c6056e4725995265c1badc8ad0b02b03775..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.19332442283630372 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index a4bf782bd65354689fc7314f3c618e37a8eb6fd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.43635839223861694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index b5512d9edfba8c8c82044d25e018c08dc8735f06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.5368809580802918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index 1b7ec9b5c3a6a17054e7e262e926c73695b68880..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.6017443736394247 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index 1139e74a41be8c8cf5f3eba2de0e597699e3e7a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.14530593554178875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index 2d2ed1c164d8c3915e898095daf2135f4aa70459..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.17795273462931316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index 6b80fc99462a71983db36465104187d66c47ff08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.20702361265818278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index d518f6abb07259471ac35bf1b2b81e9c6bd317c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.4350886344909668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index d30c67d7e933b2765e47a83814a3bc28c1873ee8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.17096030314763386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202006_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202006_D_GLOBAL.out deleted file mode 100644 index 8ad97ad7a59cc4985fc1415c3c3b000f28b9d7f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.1626254399617513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202006_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202006_H_GLOBAL.out deleted file mode 100644 index 0cdb41334a5dcb21e34b08872135c16f01f1cb2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.4359041730562846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202006_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202006_M_GLOBAL.out deleted file mode 100644 index 420fe9022e661fd6708a8116a40f5d19b68d41c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.5520835200945536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202007_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202007_D_GLOBAL.out deleted file mode 100644 index 1d55aec79e9d528547c1f5ce2216f9021cca2c6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.1890782078107198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202007_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202007_H_GLOBAL.out deleted file mode 100644 index 3e7a9522ce4b6b62a727776169844fb883fd02e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.13136833906173706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202007_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202007_M_GLOBAL.out deleted file mode 100644 index b76bc67969bb1118c4ab3b5f3f86fd91c636577f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.18228136301040648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202008_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202008_D_GLOBAL.out deleted file mode 100644 index 1c98d5cdf344b52134465e31deea460b30d86ae3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.20101166963577272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202008_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202008_H_GLOBAL.out deleted file mode 100644 index 103496398fa3bc86e47d07cf920377e4b061b95f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.12905529737472535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202008_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202008_M_GLOBAL.out deleted file mode 100644 index f23ff1e8d5f65dd8b1539527c232a229d045f416..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.1799806237220764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202009_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202009_D_GLOBAL.out deleted file mode 100644 index 7b6c1f30ee589a1c023d56286110256818f9e213..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.5876090248425802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202009_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202009_H_GLOBAL.out deleted file mode 100644 index 9b7eb9adc6115bd54b8778987fe33ec26a0af9dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.4405332922935486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202009_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202009_M_GLOBAL.out deleted file mode 100644 index 0fb7579ef9749a1d82c1fa3977fe63b68f3ad948..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.1885513385136922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202010_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202010_D_GLOBAL.out deleted file mode 100644 index 4ff5ed3b03fdebf15dec767ff2d9a0a70b05f039..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.5250361164410909 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202010_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202010_H_GLOBAL.out deleted file mode 100644 index eb3d7eadc9b09b37803e06eaf89b45f3728cae1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.42638506889343264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202010_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202010_M_GLOBAL.out deleted file mode 100644 index 9e147bdd1dc4d2a382149fe0a2995c79d3b37802..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.1679548740386963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202011_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202011_D_GLOBAL.out deleted file mode 100644 index ad3eb340655c4985e3e4055f4ba676f2f32ba1b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.1755480209986369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202011_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202011_H_GLOBAL.out deleted file mode 100644 index d16997b3ba940cb33378e1d0cd40060a8b556d28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.13905593554178874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202011_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202011_M_GLOBAL.out deleted file mode 100644 index d42b03b121de456c831e2217fa80beb61b0e3175..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.5238684415817261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202012_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202012_D_GLOBAL.out deleted file mode 100644 index 2fda0325bb86d521f25c284205114a5d05b8a630..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.21500439643859864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202012_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202012_H_GLOBAL.out deleted file mode 100644 index e3480b64f4ee2fcf2ded4dd6e212c9ad0f391b73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.13683434327443442 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202012_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202012_M_GLOBAL.out deleted file mode 100644 index cb2e619a48a44dbc4cf6716a5ade8445f824fbb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.17834546168645224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202101_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202101_D_GLOBAL.out deleted file mode 100644 index de10c0595f86d2532609c73fd4d3d9b97dd4c871..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.12815815210342407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202101_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202101_H_GLOBAL.out deleted file mode 100644 index 53f6f6edb7c2d7081211d02fc284c682ff760e23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.12367144028345743 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202101_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202101_M_GLOBAL.out deleted file mode 100644 index a16fc3103b529e8e9700b92548b9e13926e5bf72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.11371796131134033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202102_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202102_D_GLOBAL.out deleted file mode 100644 index 923224537b183c40ce70e5283d2b2048bc6cf4c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.1319637139638265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202102_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202102_H_GLOBAL.out deleted file mode 100644 index d31d4b5f4afc23460a48a3f7d55fd249104e5186..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.035465304056803384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202102_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202102_M_GLOBAL.out deleted file mode 100644 index 202d0319b27e3c679e260cf69815229450bddb71..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.034543104966481525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202103_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202103_D_GLOBAL.out deleted file mode 100644 index ed4d159c624ef6b4a30f5e90d81e5270d6dee8ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.04742261966069539 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202103_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202103_H_GLOBAL.out deleted file mode 100644 index 62abdf31f66592e032f8b2522c684865b067ea9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.11879758437474569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202103_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202103_M_GLOBAL.out deleted file mode 100644 index c23fa03a849d89c0a7f84b4085d5f3291bd64d56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.028887983163197836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202104_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202104_D_GLOBAL.out deleted file mode 100644 index 801c8ee572d61c0a183cba3a663d8a5cbdf28747..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.03275680939356486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202104_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202104_H_GLOBAL.out deleted file mode 100644 index 9b063ae7a3cfacf3ab2a1940617b60342886ab10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.08914483388264974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202104_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202104_M_GLOBAL.out deleted file mode 100644 index dfc52ed395c7d96c534421ed8048fee531cc6a1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.04321075677871704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202105_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202105_D_GLOBAL.out deleted file mode 100644 index 4b2bec5cc1019237844296e895e4c37dc4f56953..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.15805368026097616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202105_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202105_H_GLOBAL.out deleted file mode 100644 index f44720c1d17f57ecafe3ed8412d597daf009ce4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.024403067429860432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202105_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202105_M_GLOBAL.out deleted file mode 100644 index 09d31e66621907f142ec76397d880519f526b039..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.07979311148325602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202106_D_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202106_D_GLOBAL.out deleted file mode 100644 index a05e049334952d686bf5b731cd74c51e5bf9020b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.19540080626805623 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202106_H_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202106_H_GLOBAL.out deleted file mode 100644 index cf897a7e23bdfb605b9e41070b4fb501ffeb526d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.02806477944056193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_PM2.5/T2/0_202106_M_GLOBAL.out b/run/stage_logs/NAPMD_PM2.5/T2/0_202106_M_GLOBAL.out deleted file mode 100644 index cad188d9f4d1351b336749dbf134b11756b3d066..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_PM2.5/T2/0_202106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.024862722555796305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S1/0_1990.out b/run/stage_logs/NAPMD_Pb/S1/0_1990.out deleted file mode 100644 index 2a54d657000b868dcd8de5d3a7ef4e52a2897e94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S1/0_1990.out +++ /dev/null @@ -1,5 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/1990/Pb_1990.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -339 -- PARSING RAW DATA -0.008151320616404216 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S1/0_1991.out b/run/stage_logs/NAPMD_Pb/S1/0_1991.out deleted file mode 100644 index 73ea7f9a3d557ee01857d7a7d75247052aacd3a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S1/0_1991.out +++ /dev/null @@ -1,5 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/1991/Pb_1991.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -339 -- PARSING RAW DATA -0.007857243220011393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S1/0_1992.out b/run/stage_logs/NAPMD_Pb/S1/0_1992.out deleted file mode 100644 index 56aad6ad569ddc68402e1de4c6d61f5fff379e2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S1/0_1992.out +++ /dev/null @@ -1,5 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/1992/Pb_1992.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -339 -- PARSING RAW DATA -0.007663599650065104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S1/0_1993.out b/run/stage_logs/NAPMD_Pb/S1/0_1993.out deleted file mode 100644 index ff722e68e5d7acd122644bac9e8995432f784837..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S1/0_1993.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/1993/Pb_1993.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -0.006744162241617838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S1/0_1994.out b/run/stage_logs/NAPMD_Pb/S1/0_1994.out deleted file mode 100644 index d7e1bd298da7f4140c610f2dc52af334d576c100..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S1/0_1994.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/1994/Pb_1994.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -0.006913888454437256 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S1/0_1995.out b/run/stage_logs/NAPMD_Pb/S1/0_1995.out deleted file mode 100644 index 3924323fdfb6089e6a01a2adbe52949b60ba87f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S1/0_1995.out +++ /dev/null @@ -1,3 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/daily/1995/Pb_1995.csv -325 -- PARSING RAW DATA -0.005391256014506022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S2/0_325_ICP-AES.out b/run/stage_logs/NAPMD_Pb/S2/0_325_ICP-AES.out deleted file mode 100644 index dc0c05805725a55b5728e7f0b83eec4ad6698f63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S2/0_325_ICP-AES.out +++ /dev/null @@ -1,4 +0,0 @@ -325_ICP-AES -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0034913142522176106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S2/0_326_ICP-AES.out b/run/stage_logs/NAPMD_Pb/S2/0_326_ICP-AES.out deleted file mode 100644 index 9700198f1f5d4d9180d30aadaa69e856889637c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S2/0_326_ICP-AES.out +++ /dev/null @@ -1,4 +0,0 @@ -326_ICP-AES -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002861988544464111 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S2/0_339_ICP-AES.out b/run/stage_logs/NAPMD_Pb/S2/0_339_ICP-AES.out deleted file mode 100644 index 5660306d03a1438756a3bc46d3c997fd81b3a2f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S2/0_339_ICP-AES.out +++ /dev/null @@ -1,4 +0,0 @@ -339_ICP-AES -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0027417461077372234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S3/0_325_ICP-AES.out b/run/stage_logs/NAPMD_Pb/S3/0_325_ICP-AES.out deleted file mode 100644 index 8785e67537fe6729b86300435aabd35e9e18f384..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S3/0_325_ICP-AES.out +++ /dev/null @@ -1,23 +0,0 @@ -325_ICP-AES -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5274784763654073 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S3/0_326_ICP-AES.out b/run/stage_logs/NAPMD_Pb/S3/0_326_ICP-AES.out deleted file mode 100644 index 259e3e71251a0c329c640ff5a3eea9751aa6eb1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S3/0_326_ICP-AES.out +++ /dev/null @@ -1,23 +0,0 @@ -326_ICP-AES -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6782504399617513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/S3/0_339_ICP-AES.out b/run/stage_logs/NAPMD_Pb/S3/0_339_ICP-AES.out deleted file mode 100644 index d1a5800c8ce277d135ef8c07494e2db0e4da197f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/S3/0_339_ICP-AES.out +++ /dev/null @@ -1,23 +0,0 @@ -339_ICP-AES -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6822079380353292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T1/0_325_ICP-AES_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T1/0_325_ICP-AES_D_GLOBAL.out deleted file mode 100644 index a47041b2de10ef8d8c559a4be5b2147cf757f48e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T1/0_325_ICP-AES_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_ICP-AES -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2087438980738322 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T1/0_325_ICP-AES_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T1/0_325_ICP-AES_M_GLOBAL.out deleted file mode 100644 index ae93645f3f4b240924fcdef32e5a8c4d84f41d6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T1/0_325_ICP-AES_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_ICP-AES -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18500491380691528 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T1/0_326_ICP-AES_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T1/0_326_ICP-AES_D_GLOBAL.out deleted file mode 100644 index 26162b62e51356e3a2f0c45a91165dd5a8007cb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T1/0_326_ICP-AES_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_ICP-AES -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.14327183564503987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T1/0_326_ICP-AES_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T1/0_326_ICP-AES_M_GLOBAL.out deleted file mode 100644 index 199fa6aeff35375f564ed2ea4454d2b727976e0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T1/0_326_ICP-AES_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_ICP-AES -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.13252631028493245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T1/0_339_ICP-AES_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T1/0_339_ICP-AES_D_GLOBAL.out deleted file mode 100644 index 8fb48f156eb1ce808f9a1349fbe891686c486c4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T1/0_339_ICP-AES_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_ICP-AES -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0902730147043864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T1/0_339_ICP-AES_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T1/0_339_ICP-AES_M_GLOBAL.out deleted file mode 100644 index 4133d493e25060ad6e94f90260e6a66f081ba7ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T1/0_339_ICP-AES_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -339_ICP-AES -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08707237243652344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T1/1_325_ICP-AES_H_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T1/1_325_ICP-AES_H_GLOBAL.out deleted file mode 100644 index 2594682448bb0c10a786112e65e4095660956dc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T1/1_325_ICP-AES_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -325_ICP-AES -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T1/1_326_ICP-AES_H_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T1/1_326_ICP-AES_H_GLOBAL.out deleted file mode 100644 index 35c1dc837e4d65170575310169da406783ac84f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T1/1_326_ICP-AES_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -326_ICP-AES -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T1/1_339_ICP-AES_H_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T1/1_339_ICP-AES_H_GLOBAL.out deleted file mode 100644 index 0d716f33f0be25e7cd0b5ce933d387f388e43764..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T1/1_339_ICP-AES_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -339_ICP-AES -- TEMPORALLY AVERAGE DATA -AFTER REMOVING COARSE RESOLUTION DATA, NO VALID DATA TO TEMPORALLY GRID \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199001_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199001_D_GLOBAL.out deleted file mode 100644 index 5df4210b908260446cc999571d39561f3ac06828..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.028793021043141683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199001_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199001_M_GLOBAL.out deleted file mode 100644 index 4e21bb4b48e18cdcb521bae32869ce0e00eb4885..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.03395861784617106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199002_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199002_D_GLOBAL.out deleted file mode 100644 index c958f43f869c3c13995fe780daa8b6883fc728e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.03768632411956787 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199002_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199002_M_GLOBAL.out deleted file mode 100644 index c938f82e08b3888a91ad2116fbf044f35d98d2d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.022400987148284913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199003_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199003_D_GLOBAL.out deleted file mode 100644 index a2c8f0262eedef1a9920b20dc973385bbdbafd55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.03741032282511393 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199003_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199003_M_GLOBAL.out deleted file mode 100644 index 913517b957b93e55d45c014b3ab0e53a77521d98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.045418715476989745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199004_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199004_D_GLOBAL.out deleted file mode 100644 index 88a4cf8f492c352109894276c81d58d34bca9f6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.020446391900380452 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199004_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199004_M_GLOBAL.out deleted file mode 100644 index d85d4c738030ef6b913f22c222d238ed59c86a0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.030153989791870117 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199005_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199005_D_GLOBAL.out deleted file mode 100644 index dd90badc9933bd851dcb5265873151543e59faf1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.040004408359527587 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199005_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199005_M_GLOBAL.out deleted file mode 100644 index 42dc0dc463c2ce7425ddcdb64ef7c57f1bb3e321..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.02721316417058309 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199006_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199006_D_GLOBAL.out deleted file mode 100644 index 8df11bd64411ae9ee12f0f96ed9db17a55f9b2fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.03762052059173584 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199006_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199006_M_GLOBAL.out deleted file mode 100644 index 71c8e36b7dac39052c20b64dea61261c33df61d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.030500181516011558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199007_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199007_D_GLOBAL.out deleted file mode 100644 index 54ae9234435046dc466cab23eca1ea1748ed7518..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.02413837512334188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199007_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199007_M_GLOBAL.out deleted file mode 100644 index 04ad48f47549bdae43b9307ee8b2785c7b96ea7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.037491484483083086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199008_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199008_D_GLOBAL.out deleted file mode 100644 index d889c0a8e4d9b860b44f103d39825ea1a75fb40e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.027538355191548666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199008_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199008_M_GLOBAL.out deleted file mode 100644 index b8f7556b144a8133b5ffa360cf7fca995cf9833d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.03191967407862346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199009_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199009_D_GLOBAL.out deleted file mode 100644 index 903faf80949617e6af7373fdd0c05ecfc8e0c83d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.03893237113952637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199009_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199009_M_GLOBAL.out deleted file mode 100644 index f4b5a74b69407472c20fd2a83779717f633d717e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.037665983041127525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199010_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199010_D_GLOBAL.out deleted file mode 100644 index 03dd2f302ee19261440c1174e122c182775a315d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.03492432435353597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199010_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199010_M_GLOBAL.out deleted file mode 100644 index d26ab117eab2666296d0c0d4218201e5544dc203..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.03709251483281453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199011_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199011_D_GLOBAL.out deleted file mode 100644 index e96e3c09ee452860373f41abe79d0be6d39888c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.03057142496109009 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199011_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199011_M_GLOBAL.out deleted file mode 100644 index a6ede736599d625ca33f92787d41e1ea6ec53fdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.037653791904449466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199012_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199012_D_GLOBAL.out deleted file mode 100644 index a32eccf09c2bbbfdf5fbd21259daa40dd21fa17a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.04659157196680705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199012_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199012_M_GLOBAL.out deleted file mode 100644 index a1e518bfbc314923dada882da7dfc9792bcbd5f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.020547783374786376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199101_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199101_D_GLOBAL.out deleted file mode 100644 index 2b27dea5d88e2f3d354e175bc41c7e2dfd1a515e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.03338347276051839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199101_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199101_M_GLOBAL.out deleted file mode 100644 index 036e47f877ed93750213acf7b3da6100e3e0a8bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.03915117979049683 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199102_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199102_D_GLOBAL.out deleted file mode 100644 index b5b864b17a99b66b72c74df354f8d12f936196b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.043045707543691 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199102_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199102_M_GLOBAL.out deleted file mode 100644 index fda1f44810bd128af7dac797c0b87a3bafc72b23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.037847526868184406 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199103_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199103_D_GLOBAL.out deleted file mode 100644 index cce01fd8f79cc5ceb5b095ccc1f2a818302a64ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.03669883410135905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199103_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199103_M_GLOBAL.out deleted file mode 100644 index 5fcb05c71b2fd9c9387c36c66855964bfc4269fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.03618946472803752 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199104_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199104_D_GLOBAL.out deleted file mode 100644 index 45c0d6b2d668f01130f6c2c53cce231820fe4279..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.03208873669306437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199104_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199104_M_GLOBAL.out deleted file mode 100644 index 68b3ea767ad7a4b4af21e3b95badf30daaf509ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.04337505499521891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199105_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199105_D_GLOBAL.out deleted file mode 100644 index 67a0c7da734da8042302094e20f2202e619a2411..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.03733901977539063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199105_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199105_M_GLOBAL.out deleted file mode 100644 index 0d509e68f1eb7104b80a75851d47f02823b16d71..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.037546408176422116 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199106_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199106_D_GLOBAL.out deleted file mode 100644 index f197609a07f71cf4a9be3d577c5a48afef54213d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.04487003087997436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199106_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199106_M_GLOBAL.out deleted file mode 100644 index 31ce68339f4f57766de199f3bb21770e044f4ad8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.045338797569274905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199107_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199107_D_GLOBAL.out deleted file mode 100644 index 603492bc9a910349cafb86734a94c0610623f261..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.030016895135243735 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199107_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199107_M_GLOBAL.out deleted file mode 100644 index 0221fc7483cf7243d415991aa09d34a7bfea3d63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.037638326485951744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199108_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199108_D_GLOBAL.out deleted file mode 100644 index 408863c894d7f21235fe209e5d6e9fdf59376f14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.02215635379155477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199108_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199108_M_GLOBAL.out deleted file mode 100644 index afac92fc2ab6aacaa8a082783fdc2cd367d2de04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.01988904078801473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199109_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199109_D_GLOBAL.out deleted file mode 100644 index d8875099138daddc7c3aa10232c6bfcdc46d2488..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.046210511525472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199109_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199109_M_GLOBAL.out deleted file mode 100644 index 238cfb4e38eb5bd902f7499430528c4d53ebf858..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.025786149501800536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199110_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199110_D_GLOBAL.out deleted file mode 100644 index ab6c21f2031f79c7d95fedd921a6202cd065361c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.04765370686848958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199110_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199110_M_GLOBAL.out deleted file mode 100644 index 51c88ba9a8eb668be84095f3792fa5ddddc71e8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.024407788117726644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199111_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199111_D_GLOBAL.out deleted file mode 100644 index 257a61ed23153fcca60d5ad4aea6970c3a788fc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.03895835876464844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199111_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199111_M_GLOBAL.out deleted file mode 100644 index c1cdc078fee56fee39a05d46b17cf0355c667f0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.03686339060465495 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199112_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199112_D_GLOBAL.out deleted file mode 100644 index 12f4373558ece271c00cc011d332a4cbf513fd0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.04581009944279989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199112_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199112_M_GLOBAL.out deleted file mode 100644 index d038b0b14dba2558197872d2e24cb4e9965fb03c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.025270219643910727 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199201_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199201_D_GLOBAL.out deleted file mode 100644 index da9741b62412e19c4acaa727746811fc8f3f2400..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.020354044437408448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199201_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199201_M_GLOBAL.out deleted file mode 100644 index 55791c6a089aaf7885dc6cef60fb9d21b64cd1c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.03894612391789754 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199202_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199202_D_GLOBAL.out deleted file mode 100644 index 658833f17a07bab15b0cbeec11c9fe9fd8bd124f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.04599000215530395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199202_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199202_M_GLOBAL.out deleted file mode 100644 index 2212e00a7fc5b366e447ba65659792b56237a060..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.04733120600382487 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199203_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199203_D_GLOBAL.out deleted file mode 100644 index 1e3995c538b2a2051f72688a28ff5469194e0c6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.03780961036682129 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199203_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199203_M_GLOBAL.out deleted file mode 100644 index 8cdae163b7b7fcbea4cce07e7f29a56f9244c215..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.038269007205963136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199204_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199204_D_GLOBAL.out deleted file mode 100644 index cfbe01c8b95e9657cb3530e74c0aba07a9024606..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.04700008233388265 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199204_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199204_M_GLOBAL.out deleted file mode 100644 index 0de87c73bcb28401d506e81ce21a6ac9a1b85b5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.03749786218007405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199205_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199205_D_GLOBAL.out deleted file mode 100644 index 9b54a64bfc7f20cd0401f553198e8dd60dd83aa0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199205 STATION NETCDFs -0.035593068599700926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199205_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199205_M_GLOBAL.out deleted file mode 100644 index 84adc6b55040b607170f23e4a64b7d3878dd69c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199205 STATION NETCDFs -0.03788771231969198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199206_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199206_D_GLOBAL.out deleted file mode 100644 index 3c9ddfe284f14d531aa587c6f20eb3c337932b62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199206 STATION NETCDFs -0.03786065975824992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199206_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199206_M_GLOBAL.out deleted file mode 100644 index c5eb3ebed9a8a2ff84fcf7e737fb90b8f55ff3d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199206 STATION NETCDFs -0.03869250218073527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199207_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199207_D_GLOBAL.out deleted file mode 100644 index aed09bb7c93a5c7209a66c7b3e44a5af6f5d8d82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.030545767148335776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199207_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199207_M_GLOBAL.out deleted file mode 100644 index 4cd81c410055718c2ea327bfc82aaa0da077ecaf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.04567291339238485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199208_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199208_D_GLOBAL.out deleted file mode 100644 index 335d4f880cf9b9e3de134e0ec4efcbc5d2dbc912..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.038475978374481204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199208_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199208_M_GLOBAL.out deleted file mode 100644 index 8569b0af6066b1246b83b777f1c641f9a6edb6f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.02035087744394938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199209_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199209_D_GLOBAL.out deleted file mode 100644 index dcfb73f40b978234286ac659aa399578068c35fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.027489125728607178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199209_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199209_M_GLOBAL.out deleted file mode 100644 index 2a5c470ee0876b059299f77755e6e6e44fbf6406..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.019738956292470296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199210_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199210_D_GLOBAL.out deleted file mode 100644 index 75f533b63ae34518d228b69b4c40424dc56ecb36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.03110519250233968 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199210_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199210_M_GLOBAL.out deleted file mode 100644 index 73796afec8a5de3b808cb5b2a9faf484eda1c384..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.023584369818369547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199211_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199211_D_GLOBAL.out deleted file mode 100644 index 6edbd633cfdef65305637bbc390235bff87329b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.027908150355021158 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199211_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199211_M_GLOBAL.out deleted file mode 100644 index c0f6089d4458b1e9bdee2edebc7c0482724f9201..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.04260044892628988 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199212_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199212_D_GLOBAL.out deleted file mode 100644 index b2ee0268613a1f3b560702ae3f2e0448cc16f01c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.039185718695322676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199212_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199212_M_GLOBAL.out deleted file mode 100644 index 8e7e97c3ff56ca46f62f5c6827edc54d51792b90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.026254220803578695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199301_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199301_D_GLOBAL.out deleted file mode 100644 index c6ae4625b1007eab6edeca7f636b538e3d666399..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.0315059224764506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199301_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199301_M_GLOBAL.out deleted file mode 100644 index f3abf9606761b98a220ff0bf944eedaa95c037b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.031299245357513425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199302_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199302_D_GLOBAL.out deleted file mode 100644 index 2524b0fc5dd7ef2658213191ffa97619cf8305d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.04452872276306152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199302_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199302_M_GLOBAL.out deleted file mode 100644 index 6dc0fde260b9527f18eb605061fb9c19947c6b43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.039411747455596925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199303_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199303_D_GLOBAL.out deleted file mode 100644 index ac1611445133dd092cd08798723a4967686c11de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.020878597100575765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199303_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199303_M_GLOBAL.out deleted file mode 100644 index 8c36eba5e9e65c3f6db0f96f54baecb5c67ad2ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.03615028460820516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199304_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199304_D_GLOBAL.out deleted file mode 100644 index af637ec179ced6a618398b837abdba29f8bbff69..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.024821619192759197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199304_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199304_M_GLOBAL.out deleted file mode 100644 index 838e9d1756092003aa9bb68e2795eea8423b90fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.02131874163945516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199305_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199305_D_GLOBAL.out deleted file mode 100644 index 4a1eeaf947d1500d4eaf9623c935ec5f5e7e33ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.02320971091588338 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199305_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199305_M_GLOBAL.out deleted file mode 100644 index 1b27cedf3938c4fdcb70712461fb216268dd73b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.01913166046142578 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199306_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199306_D_GLOBAL.out deleted file mode 100644 index a3ddcff3ef0dd1e6055b05bb61d9586c766c4044..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.02795716921488444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199306_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199306_M_GLOBAL.out deleted file mode 100644 index 79faf025e94ba2ddef29c77b14d6db4dcacef9d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.017376697063446044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199307_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199307_D_GLOBAL.out deleted file mode 100644 index 0b9de53e3afb295cdf7cfae43a06282477c0c67e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.02020643949508667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199307_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199307_M_GLOBAL.out deleted file mode 100644 index 82938e36df243514c9a6bc54825e4de6d6351c6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.04319967826207479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199308_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199308_D_GLOBAL.out deleted file mode 100644 index ba3f2799ec4171192e6951cc3119bec12dcf461a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.037804245948791504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199308_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199308_M_GLOBAL.out deleted file mode 100644 index 1b88270a3c5e1ee29e8d6a99d0fd05e9b9ef7f2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.03248204787572225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199309_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199309_D_GLOBAL.out deleted file mode 100644 index 1b990df210207ad848215ca462f0aef4598a6f6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.01976910432179769 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199309_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199309_M_GLOBAL.out deleted file mode 100644 index acf52e8ab1a90b79a55c781486e20d5799716632..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.02578084866205851 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199310_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199310_D_GLOBAL.out deleted file mode 100644 index 43b66943a0e329556ca825017ef53592c5e8ac6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.03670099178949992 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199310_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199310_M_GLOBAL.out deleted file mode 100644 index 246cc9f2c2572b27e8ab7f10fb802b1e5c5fc357..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.03011835813522339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199311_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199311_D_GLOBAL.out deleted file mode 100644 index 6cce05c90fdbf8ca1abc243cbd30499dfd131a07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.04542710781097412 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199311_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199311_M_GLOBAL.out deleted file mode 100644 index d3c6d9827f2706747ddf416f3812f220f7c97d4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.037135303020477295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199312_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199312_D_GLOBAL.out deleted file mode 100644 index 56bca110b7723eb1e124b5d1e63aa21233373997..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.02044799327850342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199312_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199312_M_GLOBAL.out deleted file mode 100644 index fab4e8b9e54d0c844d57de6cc3b24e9086ab1005..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.017635432879130046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199401_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199401_D_GLOBAL.out deleted file mode 100644 index fb6bcc9fa3209c41c1b54780debcf80f668d28ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.03503156503041585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199401_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199401_M_GLOBAL.out deleted file mode 100644 index 0d32ee844127f1480834a537590741e75f92f001..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.046532134215037026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199402_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199402_D_GLOBAL.out deleted file mode 100644 index 09d702427a4cad092f853b1cd09b8dc590d8d3e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.03528118928273519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199402_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199402_M_GLOBAL.out deleted file mode 100644 index 6eccabee701ae0d92920fe29c3f1ec866ebafea3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.03608519236246745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199403_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199403_D_GLOBAL.out deleted file mode 100644 index 1c279601cd58e6c2652e070fe44ecde42da93724..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.035637263456980386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199403_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199403_M_GLOBAL.out deleted file mode 100644 index a536640fa0cceae252cd8acd7121ac1ed9eb6965..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.0340149720509847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199404_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199404_D_GLOBAL.out deleted file mode 100644 index 6d50978324a168cc22a2e99041e26170d6ca3ed6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.0306142528851827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199404_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199404_M_GLOBAL.out deleted file mode 100644 index 4d9a397d4c886c03d12fce3a447b21e2034e4679..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.02977150281270345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199405_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199405_D_GLOBAL.out deleted file mode 100644 index 4863f44c7eb4f48a9b2795f3b47ce8ac93cb75a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.02016376256942749 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199405_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199405_M_GLOBAL.out deleted file mode 100644 index c358b9fe930c9fb12c870321e8e6be5323064297..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.026040311654408774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199406_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199406_D_GLOBAL.out deleted file mode 100644 index d38ddfd392f2d35c0892e95e476a3de113f37fbd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.03999275763829549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199406_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199406_M_GLOBAL.out deleted file mode 100644 index 2ecb45c06ae7e3ea26b45dfed35bb1970617b0ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.021669236818949382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199407_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199407_D_GLOBAL.out deleted file mode 100644 index 1c2f879eb18152bf19cc48fe3cbcc0b9843503c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.03506586154301961 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199407_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199407_M_GLOBAL.out deleted file mode 100644 index 85170300cf6a7630aeb98a6dfd2a9c8048fb4454..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.04149986902872722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199408_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199408_D_GLOBAL.out deleted file mode 100644 index 3e46f2cfeeab54609bf708335ae21f318431ebbb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.036513630549112955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199408_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199408_M_GLOBAL.out deleted file mode 100644 index 6bb94e0fb6c26b9370c84a8841bbf9da26abfde2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.030656735102335613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199409_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199409_D_GLOBAL.out deleted file mode 100644 index 8bfb95b29baf00d0c07e58a02604a056d333be4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.02353959878285726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199409_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199409_M_GLOBAL.out deleted file mode 100644 index acd83e2656ca269230a1bfd44fa3ad298a760df5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.03563952445983887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199410_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199410_D_GLOBAL.out deleted file mode 100644 index 9a06c9130a49f312e0ada53def2ee4170a2c2145..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.02104308605194092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199410_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199410_M_GLOBAL.out deleted file mode 100644 index 178461c0e0bace7adafe7a322317d998b08bb0e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.024773812294006346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199411_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199411_D_GLOBAL.out deleted file mode 100644 index 12ee5c1599aee6caa9c882e6617fa8a801467c5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.03151788314183553 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199411_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199411_M_GLOBAL.out deleted file mode 100644 index cccf50a0da1d8a25adf8db1835d7467a75e0cd03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.038250195980072024 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199412_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199412_D_GLOBAL.out deleted file mode 100644 index f125284dd4c05b393f35e7b9ed5c2ea18c099023..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.02014455000559489 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199412_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199412_M_GLOBAL.out deleted file mode 100644 index ba324b66d20cd6d7934767fdd97f6a7301c17e06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.043364826838175455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199501_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199501_D_GLOBAL.out deleted file mode 100644 index 347c37b16f7e7ca3f5dd6185b28407f19367508f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.036027113596598305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199501_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199501_M_GLOBAL.out deleted file mode 100644 index d58d2915bb0fc7cf3baebb9a7e62d5340ac2b2a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.017652622858683267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199502_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199502_D_GLOBAL.out deleted file mode 100644 index 701792402093414143f5e7fc8a944f33dd9b0f70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.04464520215988159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199502_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199502_M_GLOBAL.out deleted file mode 100644 index 16d43ff329643eadacd1f58cb98af4680daaa5ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.027731696764628094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199503_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199503_D_GLOBAL.out deleted file mode 100644 index a36b7aa873a655231f56dda429f9d4a1825b461a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.03411786158879598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199503_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199503_M_GLOBAL.out deleted file mode 100644 index 14760aba49c0bb28ff6e7a5dc3de7fa7a2cc9c93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.033960787455240886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199504_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199504_D_GLOBAL.out deleted file mode 100644 index 97847c5245a76d2974c1c663ddcb3f775b3098cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.02146072785059611 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199504_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199504_M_GLOBAL.out deleted file mode 100644 index a99758d80fa88dc072391a9e82c427d5ce2cc60d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.03649901151657105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199505_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199505_D_GLOBAL.out deleted file mode 100644 index 95a1943396c1bc17d9b37f91992548ac5de88cca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.035936176776885986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199505_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199505_M_GLOBAL.out deleted file mode 100644 index 784ba5f42354862d9a2a1a6eecb204fcf460986d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.04465624491373698 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199506_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199506_D_GLOBAL.out deleted file mode 100644 index 20e89e0bdf1fbd8b2b60ce56c93fa6662ef21e65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.027352360884348552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199506_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199506_M_GLOBAL.out deleted file mode 100644 index 09ade8fe3f37786e596debfc4b53ba3345614acb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.019037282466888426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199507_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199507_D_GLOBAL.out deleted file mode 100644 index 6dac6e30c05a59662f6d408a6d1640a605c83381..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.04304257233937581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199507_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199507_M_GLOBAL.out deleted file mode 100644 index e25f347eeeef83b9ac9c9e459cca990b4eb636a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.01790364980697632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199508_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199508_D_GLOBAL.out deleted file mode 100644 index 1a1c0e68dbaa68b08c2c408cd58aa4231e4a5ddc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.04021139939626058 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199508_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199508_M_GLOBAL.out deleted file mode 100644 index e622253da11139dda327700fd6881fb3af031e29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.03183577060699463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199509_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199509_D_GLOBAL.out deleted file mode 100644 index e624f04fc5d697ca31e35d21cc05721ef3629fb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.038194453716278075 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199509_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199509_M_GLOBAL.out deleted file mode 100644 index 8a6a1d3fbbee3f8c25de9f68b87d501296149d87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.04118533531824748 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199510_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199510_D_GLOBAL.out deleted file mode 100644 index 28bb57b3eff41e5c204743eae834512c151bb79c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.03480638265609741 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199510_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199510_M_GLOBAL.out deleted file mode 100644 index cdd6ec2cf47128cdb1803c1fef0542822059816c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.030412522951761882 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199511_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199511_D_GLOBAL.out deleted file mode 100644 index 51b26bae31dbfad0fe363c4948f0d53b8f92c78f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.030382057030995686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199511_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199511_M_GLOBAL.out deleted file mode 100644 index cb3fc76d94035a1d7ed2f44fa915bafb9953bf72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.034536345799763994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199512_D_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199512_D_GLOBAL.out deleted file mode 100644 index 7555f1b6997c0ff5791f1d50fff1339cd787e0f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.036108068625132245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_Pb/T2/0_199512_M_GLOBAL.out b/run/stage_logs/NAPMD_Pb/T2/0_199512_M_GLOBAL.out deleted file mode 100644 index a0a134f8e66e2bbf0756e1cada06aed4852cb4d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_Pb/T2/0_199512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.032868675390879315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_1990.out b/run/stage_logs/NAPMD_SO2/S1/0_1990.out deleted file mode 100644 index 55c32333b9adea019604ca5af746854435762b0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_1990.out +++ /dev/null @@ -1,6 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1990/SO2_1990.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.023410836855570476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_1991.out b/run/stage_logs/NAPMD_SO2/S1/0_1991.out deleted file mode 100644 index 5ae4d874042300855d52f2acd31e19ae7bfb745b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_1991.out +++ /dev/null @@ -1,6 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1991/SO2_1991.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.022194103399912516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_1992.out b/run/stage_logs/NAPMD_SO2/S1/0_1992.out deleted file mode 100644 index 0773936c427633a5e8096f2a06b0a3c914bb9c64..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_1992.out +++ /dev/null @@ -1,6 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1992/SO2_1992.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.024953027566274006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_1993.out b/run/stage_logs/NAPMD_SO2/S1/0_1993.out deleted file mode 100644 index b44c024c361a5866b6f2067f7a0fb01d55ead9b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_1993.out +++ /dev/null @@ -1,6 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1993/SO2_1993.csv -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -340 -- PARSING RAW DATA -0.022930169105529787 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_1994.out b/run/stage_logs/NAPMD_SO2/S1/0_1994.out deleted file mode 100644 index 4000011fb106cf4f1a0be30ec53280929d08131b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_1994.out +++ /dev/null @@ -1,15 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1994/SO2_1994.csv -13 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -340 -- PARSING RAW DATA -40 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.05227541923522949 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_1995.out b/run/stage_logs/NAPMD_SO2/S1/0_1995.out deleted file mode 100644 index 1fecbc44da6793298c3d76a92671597a0e26e6de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_1995.out +++ /dev/null @@ -1,13 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1995/SO2_1995.csv -13 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.06060367425282796 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_1996.out b/run/stage_logs/NAPMD_SO2/S1/0_1996.out deleted file mode 100644 index d55d1a5ee98362aa6c01a2bb0b2fcb23eafe74c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_1996.out +++ /dev/null @@ -1,15 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1996/SO2_1996.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -29 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -0.054931116104125974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_1997.out b/run/stage_logs/NAPMD_SO2/S1/0_1997.out deleted file mode 100644 index adbcbf3506027ea775cdaf70894e43f4c77968e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_1997.out +++ /dev/null @@ -1,16 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1997/SO2_1997.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -29 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.07513858477274576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_1998.out b/run/stage_logs/NAPMD_SO2/S1/0_1998.out deleted file mode 100644 index c248d8952394d9e29c18bd3388bffd4e3087f24e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_1998.out +++ /dev/null @@ -1,17 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1998/SO2_1998.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -29 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.09365744988123575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_1999.out b/run/stage_logs/NAPMD_SO2/S1/0_1999.out deleted file mode 100644 index f682b1bbaeb8e3fdee4a5cc5b3288b58941f4cba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_1999.out +++ /dev/null @@ -1,17 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/1999/SO2_1999.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -29 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.08857930103937785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2000.out b/run/stage_logs/NAPMD_SO2/S1/0_2000.out deleted file mode 100644 index 57f0933ff6bdfc84b6eb38af48a70edad20f563a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2000.out +++ /dev/null @@ -1,19 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2000/SO2_2000.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -27 -- PARSING RAW DATA -29 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.100095268090566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2001.out b/run/stage_logs/NAPMD_SO2/S1/0_2001.out deleted file mode 100644 index 2fc38764e29fe9b824c2c1f2fc7ba2e82a299d94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2001.out +++ /dev/null @@ -1,19 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2001/SO2_2001.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -27 -- PARSING RAW DATA -29 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.09759935935338339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2002.out b/run/stage_logs/NAPMD_SO2/S1/0_2002.out deleted file mode 100644 index 1a68fa847713f43e5f1ef541422108fa6e3a0819..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2002.out +++ /dev/null @@ -1,28 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2002/SO2_2002.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -27 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -343 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.1436680316925049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2003.out b/run/stage_logs/NAPMD_SO2/S1/0_2003.out deleted file mode 100644 index ea0555b319107ff2a20c6fdc8594547830ffab92..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2003.out +++ /dev/null @@ -1,27 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2003/SO2_2003.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -27 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.15603755712509154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2004.out b/run/stage_logs/NAPMD_SO2/S1/0_2004.out deleted file mode 100644 index 256a87263046b7ffee8437502ee9cca1bfb92a65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2004.out +++ /dev/null @@ -1,26 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2004/SO2_2004.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -14 -- PARSING RAW DATA -15 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -63 -- PARSING RAW DATA -8 -- PARSING RAW DATA -0.16505339940388997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2005.out b/run/stage_logs/NAPMD_SO2/S1/0_2005.out deleted file mode 100644 index 5ec0420caf0f1560fad30d08b111a0249d2fba2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2005.out +++ /dev/null @@ -1,28 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2005/SO2_2005.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -8 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.14391972621281943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2006.out b/run/stage_logs/NAPMD_SO2/S1/0_2006.out deleted file mode 100644 index 3ce2481fe1676ef7f6266768d0dddf0ad81ea6af..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2006.out +++ /dev/null @@ -1,26 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2006/SO2_2006.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -340 -- PARSING RAW DATA -342 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -59 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.14361339410146076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2007.out b/run/stage_logs/NAPMD_SO2/S1/0_2007.out deleted file mode 100644 index dd16a9316e0d7fde2dc976c76cdf7ecea40bb2ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2007.out +++ /dev/null @@ -1,26 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2007/SO2_2007.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -340 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.1488727291425069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2008.out b/run/stage_logs/NAPMD_SO2/S1/0_2008.out deleted file mode 100644 index 8e01ff5d332c67332ef45cbb97c779429d2876d4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2008.out +++ /dev/null @@ -1,26 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2008/SO2_2008.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -340 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.14852787256240846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2009.out b/run/stage_logs/NAPMD_SO2/S1/0_2009.out deleted file mode 100644 index 52d2dc9dcf5f615527556576aa2b71cd1d150eea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2009.out +++ /dev/null @@ -1,26 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2009/SO2_2009.csv -11 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -340 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -9 -- PARSING RAW DATA -0.13970235188802083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2010.out b/run/stage_logs/NAPMD_SO2/S1/0_2010.out deleted file mode 100644 index 46796f2400ee972acddf420d73627c3a57c18990..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2010.out +++ /dev/null @@ -1,41 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2010/SO2_2010.csv -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -111 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -340 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -77 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -97 -- PARSING RAW DATA -0.22107835610707602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2011.out b/run/stage_logs/NAPMD_SO2/S1/0_2011.out deleted file mode 100644 index 17e62d8e064a5add509a4a72bf47ca5b6213de1e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2011.out +++ /dev/null @@ -1,45 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2011/SO2_2011.csv -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -111 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -48 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -77 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -97 -- PARSING RAW DATA -0.2639557878176371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2012.out b/run/stage_logs/NAPMD_SO2/S1/0_2012.out deleted file mode 100644 index cfdb1f61053e9cbb2d415629c5bc4abf0890307b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2012.out +++ /dev/null @@ -1,50 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2012/SO2_2012.csv -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -111 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -31 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -336 -- PARSING RAW DATA -340 -- PARSING RAW DATA -352 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -61 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -77 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -97 -- PARSING RAW DATA -0.2666445255279541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2013.out b/run/stage_logs/NAPMD_SO2/S1/0_2013.out deleted file mode 100644 index 07f75bd598f2b759963e0c34392a1fb95b7f687c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2013.out +++ /dev/null @@ -1,46 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2013/SO2_2013.csv -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -111 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -119 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -20 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -29 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -336 -- PARSING RAW DATA -340 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -96 -- PARSING RAW DATA -97 -- PARSING RAW DATA -0.23985366821289061 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2014.out b/run/stage_logs/NAPMD_SO2/S1/0_2014.out deleted file mode 100644 index 8fa312349d4f5fbfc47eedaf6ce52c8e6e33f858..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2014.out +++ /dev/null @@ -1,51 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2014/SO2_2014.csv -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -111 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -119 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -29 -- PARSING RAW DATA -324 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -52 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -96 -- PARSING RAW DATA -97 -- PARSING RAW DATA -0.2866273085276286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2015.out b/run/stage_logs/NAPMD_SO2/S1/0_2015.out deleted file mode 100644 index 2ab39fe25f48485550de7bb260644ea5eade8c0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2015.out +++ /dev/null @@ -1,54 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2015/SO2_2015.csv -104 -- PARSING RAW DATA -105 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -111 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -119 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -276 -- PARSING RAW DATA -278 -- PARSING RAW DATA -29 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -331 -- PARSING RAW DATA -332 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -52 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -96 -- PARSING RAW DATA -97 -- PARSING RAW DATA -0.3205956260363261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2016.out b/run/stage_logs/NAPMD_SO2/S1/0_2016.out deleted file mode 100644 index 24ba3fdaffd87ab077a9fd97a154699a64440bb4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2016.out +++ /dev/null @@ -1,54 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2016/SO2_2016.csv -104 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -111 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -119 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -276 -- PARSING RAW DATA -278 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -332 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -52 -- PARSING RAW DATA -54 -- PARSING RAW DATA -57 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -96 -- PARSING RAW DATA -97 -- PARSING RAW DATA -0.3280487577120463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2017.out b/run/stage_logs/NAPMD_SO2/S1/0_2017.out deleted file mode 100644 index 498f08e3474a4a52e04ac580fcd94803887fb7a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2017.out +++ /dev/null @@ -1,56 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2017/SO2_2017.csv -103 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -111 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -119 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -276 -- PARSING RAW DATA -278 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -332 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -52 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -96 -- PARSING RAW DATA -97 -- PARSING RAW DATA -0.3123135924339294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2018.out b/run/stage_logs/NAPMD_SO2/S1/0_2018.out deleted file mode 100644 index 65ddf2517c3a53d9571c3aa71f29b13ce42d79a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2018.out +++ /dev/null @@ -1,60 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2018/SO2_2018.csv -103 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -111 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -119 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -24 -- PARSING RAW DATA -275 -- PARSING RAW DATA -276 -- PARSING RAW DATA -278 -- PARSING RAW DATA -29 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -326 -- PARSING RAW DATA -332 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -356 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -37 -- PARSING RAW DATA -370 -- PARSING RAW DATA -375 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -52 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -96 -- PARSING RAW DATA -97 -- PARSING RAW DATA -0.3401142676671346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2019.out b/run/stage_logs/NAPMD_SO2/S1/0_2019.out deleted file mode 100644 index 0744209b6481767bdba04eb50eaab58b1b840958..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2019.out +++ /dev/null @@ -1,2 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/SO2_2019.csv -0.14085827271143594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2020.out b/run/stage_logs/NAPMD_SO2/S1/0_2020.out deleted file mode 100644 index 701c8b928727bc1a029cb33b56835a59c583ce7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2020.out +++ /dev/null @@ -1,66 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/SO2_2020.csv -103 -- PARSING RAW DATA -109 -- PARSING RAW DATA -11 -- PARSING RAW DATA -110 -- PARSING RAW DATA -113 -- PARSING RAW DATA -114 -- PARSING RAW DATA -119 -- PARSING RAW DATA -120 -- PARSING RAW DATA -13 -- PARSING RAW DATA -15 -- PARSING RAW DATA -20 -- PARSING RAW DATA -21 -- PARSING RAW DATA -22 -- PARSING RAW DATA -275 -- PARSING RAW DATA -276 -- PARSING RAW DATA -278 -- PARSING RAW DATA -28 -- PARSING RAW DATA -30 -- PARSING RAW DATA -32 -- PARSING RAW DATA -325 -- PARSING RAW DATA -332 -- PARSING RAW DATA -336 -- PARSING RAW DATA -337 -- PARSING RAW DATA -34 -- PARSING RAW DATA -340 -- PARSING RAW DATA -35 -- PARSING RAW DATA -356 -- PARSING RAW DATA -358 -- PARSING RAW DATA -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -368 -- PARSING RAW DATA -369 -- PARSING RAW DATA -37 -- PARSING RAW DATA -370 -- PARSING RAW DATA -372 -- PARSING RAW DATA -373 -- PARSING RAW DATA -375 -- PARSING RAW DATA -4 -- PARSING RAW DATA -40 -- PARSING RAW DATA -42 -- PARSING RAW DATA -43 -- PARSING RAW DATA -44 -- PARSING RAW DATA -45 -- PARSING RAW DATA -46 -- PARSING RAW DATA -48 -- PARSING RAW DATA -5 -- PARSING RAW DATA -52 -- PARSING RAW DATA -534 -- PARSING RAW DATA -540 -- PARSING RAW DATA -551 -- PARSING RAW DATA -57 -- PARSING RAW DATA -6 -- PARSING RAW DATA -62 -- PARSING RAW DATA -64 -- PARSING RAW DATA -65 -- PARSING RAW DATA -79 -- PARSING RAW DATA -80 -- PARSING RAW DATA -84 -- PARSING RAW DATA -87 -- PARSING RAW DATA -9 -- PARSING RAW DATA -95 -- PARSING RAW DATA -96 -- PARSING RAW DATA -97 -- PARSING RAW DATA -0.3194756269454956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S1/0_2021.out b/run/stage_logs/NAPMD_SO2/S1/0_2021.out deleted file mode 100644 index 9d198a914390c50b607c6aaed1f27ce4b4600025..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S1/0_2021.out +++ /dev/null @@ -1,5 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2021/SO2_2021.csv -360 -- PARSING RAW DATA -362 -- PARSING RAW DATA -363 -- PARSING RAW DATA -0.00992505153020223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_103_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_103_UVF.out deleted file mode 100644 index b7a1f88539ccf2d0e4183301cbe8ba80c4e9091a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_103_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -103_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005968244870503744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_104_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_104_UVF.out deleted file mode 100644 index 567064d42aa2bb8d2867149ef0be7be4344c5940..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_104_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -104_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.014698028564453125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_105_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_105_UVF.out deleted file mode 100644 index 013e43ce169bb6d8c50060142186e0e7fd4657e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_105_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -105_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01003497838973999 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_109_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_109_UVF.out deleted file mode 100644 index 1dbad59049a8086bc501e70fe71dc2581dce8013..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_109_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -109_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.023772438367207844 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_110_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_110_UVF.out deleted file mode 100644 index 65b029892e5a283e20c7b4f420c7f7f94c4ba79a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_110_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -110_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03022671937942505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_111_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_111_UVF.out deleted file mode 100644 index 82c264558987e7b0152cb8e693a84a027c6fd1bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_111_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -111_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020648030440012614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_113_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_113_UVF.out deleted file mode 100644 index a24dff12382071f5c86a06d9f9698cf76e78e0db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_113_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -113_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0260875940322876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_114_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_114_UVF.out deleted file mode 100644 index 9afa23f8651f77ef95046e37d984ca6117868be7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_114_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -114_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.025298555692036945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_119_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_119_UVF.out deleted file mode 100644 index 38b9dda3e4377906c3ca6f8832f2aa4afb24612c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_119_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -119_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02399458090464274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_11_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_11_UVF.out deleted file mode 100644 index df5c070b4c86bc575c8d2b46c76840e5a4ddbc44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_11_UVF.out +++ /dev/null @@ -1,32 +0,0 @@ -11_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-01-17 13:00:00 1996-12-19 15:00:00 1049291340 1049776740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1049291340_1049776740.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-23 19:00:00 1052948880 1053463380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1052948880_1053463380.npz'] -2004-01-05 23:00:00 2004-12-31 12:00:00 1053482340 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1053482340_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1055578260_1056101940.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-29 03:00:00 1055578320 1056101940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1055578260_1056101940.npz'] -2008-12-31 15:00:00 2009-12-31 12:00:00 1056105540 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1056105540_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/11_UVF_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.19337134758631389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_120_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_120_UVF.out deleted file mode 100644 index a3fff5097dd85d9a8add1ea46433e24821edf81d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_120_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -120_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012231083710988362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_13_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_13_UVF.out deleted file mode 100644 index 397df95495c6d2ec82aaffa1ed509aeee24e23a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_13_UVF.out +++ /dev/null @@ -1,34 +0,0 @@ -13_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1993-12-31 13:00:00 1994-06-01 15:00:00 1048215660 1048434660 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1048215660_1048434660.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1995-01-04 19:00:00 1995-09-03 15:00:00 1048747380 1049095620 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1048747380_1049095620.npz'] -1996-06-24 04:00:00 1996-11-19 20:00:00 1049519760 1049733840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1049519760_1049733840.npz'] -1997-11-20 03:00:00 1997-12-31 12:00:00 1050259860 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1050259860_1050319440.npz'] -1997-12-31 13:00:00 1998-12-31 12:00:00 1050319500 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1050319500_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/13_UVF_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.12842648824055988 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_14_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_14_UVF.out deleted file mode 100644 index 29ef87a22295bb9999c3158bcfd4e6f949f1c7e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_14_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -14_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020535647869110107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_15_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_15_UVF.out deleted file mode 100644 index 8adf8f61d3b67865a110f725b5bac29aef98c348..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_15_UVF.out +++ /dev/null @@ -1,32 +0,0 @@ -15_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-03-15 03:00:00 1996-12-31 12:00:00 1049374260 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1049374260_1049793840.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1052948880_1053474480.npz'] -2003-12-31 14:00:00 2004-12-31 12:00:00 1053474600 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1053474600_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-29 02:00:00 1054527120 1055049240 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1054527120_1055049240.npz'] -2007-01-04 03:00:00 2007-12-31 11:00:00 1055057940 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1055057940_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1055057940_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1055578260_1056105300.npz'] -2008-12-31 15:00:00 2009-12-31 12:00:00 1056105540 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1056105540_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/15_UVF_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.1705793341000875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_20_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_20_UVF.out deleted file mode 100644 index 50e196a95ad8e97eed0398d31b084a484295ae9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_20_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -20_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020793922742207847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_21_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_21_UVF.out deleted file mode 100644 index 97e4cf4b3f42ba6bf7e4f80549f197f0446def14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_21_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -21_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0133720596631368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_22_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_22_UVF.out deleted file mode 100644 index c96db3af88e4d7205d28e06fe947a41b8b4e20e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_22_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -22_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03931468725204468 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_275_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_275_UVF.out deleted file mode 100644 index 489ba2f6cfcfeeebb113b33aa8fc06a7241ad538..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_275_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -275_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.03793659607569377 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_276_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_276_UVF.out deleted file mode 100644 index fd1394f13ca778b1f1211c7355ad922791d805c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_276_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -276_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010081406434377034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_278_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_278_UVF.out deleted file mode 100644 index afb99bbd2e5ecda6d2cef318e5f46d2a9ab935a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_278_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -278_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013060184319814046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_27_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_27_UVF.out deleted file mode 100644 index 513e72270615db426e4c03ef9e3fc91c6dc52078..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_27_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -27_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.008512898286183675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_28_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_28_UVF.out deleted file mode 100644 index 5f997b0bc13e509fc8370bf05ddae6de3a9ff656..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_28_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -28_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0021430174509684246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_29_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_29_UVF.out deleted file mode 100644 index 30ff6daefbc8a99963bda9e27cdd1a3e68ab4af1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_29_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -29_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05022857586542765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_30_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_30_UVF.out deleted file mode 100644 index ea2b6518bda37e88305fd5293ba38b678b3dce0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_30_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -30_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.010682117938995362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_31_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_31_UVF.out deleted file mode 100644 index b6d798b67e1a19c78c191881df5dcef38ac1234d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_31_UVF.out +++ /dev/null @@ -1,16 +0,0 @@ -31_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2005-06-10 04:00:00 2005-12-31 12:00:00 1054232880 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/31_UVF_1054232880_1054527120.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/31_UVF_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/31_UVF_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/31_UVF_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/31_UVF_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/31_UVF_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/31_UVF_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/31_UVF_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/31_UVF_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/31_UVF_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-07-23 23:00:00 1057682160 1057978020 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/31_UVF_1057682160_1057978020.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.11961355209350585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_324_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_324_UVF.out deleted file mode 100644 index a178fee688bc3ab0a8e120dd27ebe4c8b6494ad4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_324_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -324_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05144927104314168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_325_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_325_UVF.out deleted file mode 100644 index 83736c8c47914da0867bce4c8a2d60b1646f99ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_325_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -325_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04989624818166097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_326_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_326_UVF.out deleted file mode 100644 index e7e743c6f35631e7dad5797f9635b042517d0c4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_326_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -326_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.06443496147791544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_32_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_32_UVF.out deleted file mode 100644 index 11c643d989e00282cede3d74c3051903118d78ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_32_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -32_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006337900956471761 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_331_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_331_UVF.out deleted file mode 100644 index 3485db2a0555a31b3f11e1db7e4bc3d24afb346e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_331_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -331_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04376088380813599 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_332_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_332_UVF.out deleted file mode 100644 index b26363e70ce0fb836b4dd84ba74878cba31dcfec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_332_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -332_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.04332945744196574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_336_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_336_UVF.out deleted file mode 100644 index 7aa2d2b1e88eb9982adefffa45f81aeae1d47c20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_336_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -336_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01822816530863444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_337_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_337_UVF.out deleted file mode 100644 index 28bb5e4cfbb5a5be288bc1793461463a556adc8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_337_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -337_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01392734448115031 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_340_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_340_UVF.out deleted file mode 100644 index 775dde48e72835a007e85882746d9df3d212f6d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_340_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -340_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.060691515604654946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_342_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_342_UVF.out deleted file mode 100644 index 328d4cd8fe857ba80f09121add5a606d751bc463..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_342_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -342_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01328584353129069 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_343_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_343_UVF.out deleted file mode 100644 index 288686c3c638866be6ddc3beed5533f3b83c8d0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_343_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -343_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.001390532652537028 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_34_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_34_UVF.out deleted file mode 100644 index f9a3bbd98aa8ab472e9504254859409207e8e1fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_34_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -34_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01397560437520345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_352_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_352_UVF.out deleted file mode 100644 index 44a5d5b7e299332f69995e95c789a4a5363a846c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_352_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -352_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00408788522084554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_356_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_356_UVF.out deleted file mode 100644 index 401352b477535ff3bd2d67e60aaa077cc86c1a1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_356_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -356_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.004211537043253581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_35_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_35_UVF.out deleted file mode 100644 index e5ce5968f576f871040f04da00fc9fae85932c56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_35_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -35_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0013812899589538575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_360_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_360_UVF.out deleted file mode 100644 index 91eb00bba0f3e734a5920a5014b1fefd0c72318d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_360_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -360_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.057284446557362874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_362_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_362_UVF.out deleted file mode 100644 index 7b81a6425a871828bd7a0f9627bbce9ca598af60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_362_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -362_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05716245174407959 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_363_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_363_UVF.out deleted file mode 100644 index fee7bb9533c2605a34d9e6619fce186f82a2d490..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_363_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -363_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.07043164571126302 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_368_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_368_UVF.out deleted file mode 100644 index 5a4d15ab11ee7b7ef6cebf339276a8dce490c8e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_368_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -368_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0014492352803548178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_369_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_369_UVF.out deleted file mode 100644 index 6ced8d283f23ba2e7b9c861830ccde3b5b20bf58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_369_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -369_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0012012998263041179 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_370_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_370_UVF.out deleted file mode 100644 index f8c0915d1627e0017f607de114486499f18aae31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_370_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -370_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00536958376566569 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_372_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_372_UVF.out deleted file mode 100644 index 47fd82cc70d02f1521bd5df11252b00843e85504..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_372_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -372_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0025151769320170083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_373_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_373_UVF.out deleted file mode 100644 index a55b71321fabf6cdf93db93b580a532e87f3b25a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_373_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -373_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0024542848269144693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_375_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_375_UVF.out deleted file mode 100644 index 4e4507908d76ca452fd5525121829176cd74fad9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_375_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -375_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.002897910277048747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_37_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_37_UVF.out deleted file mode 100644 index 97501741a7490ee7e50a83dea9cdd939255c3d0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_37_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -37_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020736002922058107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_40_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_40_UVF.out deleted file mode 100644 index 563f7820fb4ee169a4d3b7bf4b7c1f81f4250cdd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_40_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -40_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.036931320031483965 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_42_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_42_UVF.out deleted file mode 100644 index a9da45fe6d298a1e5da24b891d5b3a2821a7b467..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_42_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -42_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005429490407307943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_43_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_43_UVF.out deleted file mode 100644 index 1fdd3c61e70ea107dee0cc6ec0613613272dfd5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_43_UVF.out +++ /dev/null @@ -1,21 +0,0 @@ -43_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2007-02-25 12:00:00 2007-12-31 11:00:00 1055133360 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1055133360_1055578320.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1055133360_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/43_UVF_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.10515079895655315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_44_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_44_UVF.out deleted file mode 100644 index 96e73e8e50b927b42532aef8279a07d79e95cfa8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_44_UVF.out +++ /dev/null @@ -1,32 +0,0 @@ -44_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1996-03-18 20:00:00 1996-12-31 11:00:00 1049379600 1049793780 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1049379600_1049793780.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-30 15:00:00 1054527120 1055051460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1054527120_1055051460.npz'] -2006-12-31 16:00:00 2007-12-31 11:00:00 1055052960 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1055052960_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1055052960_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/44_UVF_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.14570378462473552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_45_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_45_UVF.out deleted file mode 100644 index 20e9c4dcb956de952421ec18066e2c2944171b88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_45_UVF.out +++ /dev/null @@ -1,33 +0,0 @@ -45_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-01-19 16:00:00 1994-02-15 20:00:00 1048243200 1048282320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1048243200_1048282320.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1996-03-26 12:00:00 1996-12-31 12:00:00 1049390640 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1049390640_1049793840.npz'] -1996-12-31 12:00:00 1997-12-28 22:00:00 1049793840 1050315720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1049793840_1050315720.npz'] -1998-03-06 17:00:00 1998-12-31 12:00:00 1050413340 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1050413340_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-19 15:00:00 1051370640 1051880580 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1051370640_1051880580.npz'] -2001-01-16 16:00:00 2001-12-31 12:00:00 1051920960 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1051920960_1052423280.npz'] -2001-12-31 12:00:00 2002-12-29 21:00:00 1052423280 1052946540 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1052423280_1052946540.npz'] -2003-01-07 04:00:00 2003-12-31 12:00:00 1052958480 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1052958480_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 11:00:00 1053474540 1054001460 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1053474540_1054001460.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-29 03:00:00 1054527120 1055049300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1054527120_1055049300.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1055578260_1056105300.npz'] -2009-01-04 12:00:00 2009-12-31 12:00:00 1056111120 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1056111120_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 11:00:00 1057156560 1057682100 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1057156560_1057682100.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/45_UVF_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.13410956859588624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_46_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_46_UVF.out deleted file mode 100644 index d924064f1a6897bb9cc4f26269159ddb8cf309bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_46_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -46_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.012811489899953206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_48_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_48_UVF.out deleted file mode 100644 index fa6e12817f092578af0a013e39db0a088fe3912c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_48_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -48_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02054424285888672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_4_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_4_UVF.out deleted file mode 100644 index 1f134341a8ab3317cbc1e4ea659f5e07b06e9f0f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_4_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -4_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.023189719518025717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_52_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_52_UVF.out deleted file mode 100644 index 332f2d24441b912fb30db825c8c1e29d284a0061..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_52_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -52_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.013136104742685954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_534_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_534_UVF.out deleted file mode 100644 index 5712ce7ae6d1b74ba415671038147fc5371dea82..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_534_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -534_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0014973521232604981 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_540_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_540_UVF.out deleted file mode 100644 index 37f1ca05a60365f22af6f2debcc370e2739b433f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_540_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -540_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.001436320940653483 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_54_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_54_UVF.out deleted file mode 100644 index 470281775520bc946171df3245190519bf2ee9fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_54_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -54_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.05296092430750529 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_551_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_551_UVF.out deleted file mode 100644 index 196a9daf450e8aa2e390bfc514c35b4897de6751..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_551_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -551_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0012345592180887858 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_57_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_57_UVF.out deleted file mode 100644 index 507d0c2be871ff91d0e9bad9d251c3e3c78168e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_57_UVF.out +++ /dev/null @@ -1,34 +0,0 @@ -57_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-03-17 21:00:00 1994-12-31 10:00:00 1048325580 1048741080 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1048325580_1048741080.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 16:00:00 1995-12-05 01:00:00 1048741440 1049228700 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1048741440_1049228700.npz'] -1996-03-18 16:00:00 1996-12-31 12:00:00 1049379360 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1049379360_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1055578260_1056105300.npz'] -2008-12-31 12:00:00 2009-12-31 12:00:00 1056105360 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1056105360_1056630960.npz'] -2009-12-31 12:00:00 2010-12-29 14:00:00 1056630960 1057153800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1056630960_1057153800.npz'] -2010-12-31 16:00:00 2011-12-31 12:00:00 1057156800 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1057156800_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 12:00:00 1059786000 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1059786000_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/57_UVF_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.15364898840586344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_59_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_59_UVF.out deleted file mode 100644 index 997ba8d637226881ecf9003bdf5b42808edf11ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_59_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -59_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.024445160230000814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_5_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_5_UVF.out deleted file mode 100644 index 7ca26bfa1659d7ffc2b9e6f0feac1244da4d65f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_5_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -5_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01925913095474243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_61_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_61_UVF.out deleted file mode 100644 index c599cb0607d50e6a4ae596bef03466575a0c79f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_61_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -61_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0011104941368103027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_62_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_62_UVF.out deleted file mode 100644 index 37beac1f5f4d487b383723d76cc2a3ef5b47f416..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_62_UVF.out +++ /dev/null @@ -1,34 +0,0 @@ -62_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -1994-01-18 04:00:00 1994-10-28 16:00:00 1048241040 1048649280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1048241040_1048649280.npz'] -'StationConcatenate' object has no attribute 'existing_data' -1994-12-31 17:00:00 1995-12-31 12:00:00 1048741500 1049266800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1048741500_1049266800.npz'] -1995-12-31 12:00:00 1996-12-31 12:00:00 1049266800 1049793840 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1049266800_1049793840.npz'] -1996-12-31 12:00:00 1997-12-31 12:00:00 1049793840 1050319440 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1049793840_1050319440.npz'] -1997-12-31 12:00:00 1998-12-31 12:00:00 1050319440 1050845040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1050319440_1050845040.npz'] -1998-12-31 12:00:00 1999-12-31 12:00:00 1050845040 1051370640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1050845040_1051370640.npz'] -1999-12-31 12:00:00 2000-12-31 12:00:00 1051370640 1051897680 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1051370640_1051897680.npz'] -2000-12-31 12:00:00 2001-12-31 12:00:00 1051897680 1052423280 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1051897680_1052423280.npz'] -2001-12-31 12:00:00 2002-12-31 12:00:00 1052423280 1052948880 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1052423280_1052948880.npz'] -2002-12-31 12:00:00 2003-12-31 12:00:00 1052948880 1053474480 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1052948880_1053474480.npz'] -2003-12-31 13:00:00 2004-12-31 12:00:00 1053474540 1054001520 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1053474540_1054001520.npz'] -2004-12-31 12:00:00 2005-12-31 12:00:00 1054001520 1054527120 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1054001520_1054527120.npz'] -2005-12-31 12:00:00 2006-12-31 12:00:00 1054527120 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1054527120_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1055578260_1056104940.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1055052720_1055578320.npz -2007-12-31 12:00:00 2008-12-31 05:00:00 1055578320 1056104940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1055578260_1056104940.npz'] -2008-12-31 15:00:00 2009-12-31 12:00:00 1056105540 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1056105540_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-31 12:00:00 1059260400 1059786000 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1059260400_1059786000.npz'] -2015-12-31 12:00:00 2016-12-31 03:00:00 1059786000 1060312500 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1059786000_1060312500.npz'] -2017-01-03 01:00:00 2017-12-31 12:00:00 1060316700 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1060316700_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1060838700_1061364300.npz'] -2019-12-31 13:00:00 2020-12-31 13:00:00 1061889900 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/62_UVF_1061889900_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.12997894287109374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_63_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_63_UVF.out deleted file mode 100644 index 99a5349dd0b5ecb80223c6216184e8a1115bc039..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_63_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -63_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.028315500418345133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_64_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_64_UVF.out deleted file mode 100644 index 47741e585f4edbebd90ed8c17570a0780272fe27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_64_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -64_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02065881888071696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_65_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_65_UVF.out deleted file mode 100644 index 9f880faf93d4201fa8e71f27ff3bce8b6698198a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_65_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -65_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.00900206963221232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_6_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_6_UVF.out deleted file mode 100644 index b8badd17fc143b69dc98cc829cc60502b07bc08e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_6_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -6_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0072032729784647625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_77_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_77_UVF.out deleted file mode 100644 index c878bb9f771ccd6249d6ebbf024e91166c614542..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_77_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -77_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005657970905303955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_79_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_79_UVF.out deleted file mode 100644 index de14df1f2d8d5b12062e6e8d84d346e01d9a9b84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_79_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -79_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.020663901170094808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_80_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_80_UVF.out deleted file mode 100644 index 68fd1c6c454ecacedfa737385c08e4a82a83c4e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_80_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -80_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.024510749181111655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_84_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_84_UVF.out deleted file mode 100644 index d7c1be3a368f532b360ff84b4b177102f432f53d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_84_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -84_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.02421354055404663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_87_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_87_UVF.out deleted file mode 100644 index 211310043663159fe29bb68756a56ee02b5072d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_87_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -87_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.027059264977773032 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_8_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_8_UVF.out deleted file mode 100644 index 62ffc45f5446642488d732647727502a1c3ba7ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_8_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -8_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.016943331559499106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_95_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_95_UVF.out deleted file mode 100644 index 0c5184d68494173f223530210f919216ec16425d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_95_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -95_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.01513821283976237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_96_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_96_UVF.out deleted file mode 100644 index cedefa6c9da5e99a10fda1d42ad6eff3c190cc6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_96_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -96_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.021999033292134602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_97_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_97_UVF.out deleted file mode 100644 index 8a8f33efa26fd1a4abe2941f0496d0b27fc6c8da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_97_UVF.out +++ /dev/null @@ -1,4 +0,0 @@ -97_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.021791732311248778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/0_9_UVF.out b/run/stage_logs/NAPMD_SO2/S2/0_9_UVF.out deleted file mode 100644 index 04741e9bc63a531fc2194589574d926e7dd5b370..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/0_9_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -9_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, WITH OVERLAPS. CHOOSING BEST FILE FOR EACH OVERLAPPING PERIOD USING ALGORITHM. -2005-12-21 04:00:00 2005-12-21 23:00:00 1054512240 1054513380 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1054512240_1054513380.npz'] -'StationConcatenate' object has no attribute 'existing_data' -2006-01-03 02:00:00 2006-12-31 12:00:00 1054530840 1055052720 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1054530840_1055052720.npz'] -2006-12-31 12:00:00 2007-12-31 11:00:00 1055052720 1055578260 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1055052720_1055578320.npz'] -2007-12-31 11:00:00 2007-12-31 12:00:00 1055578260 1055578320 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1055052720_1055578320.npz', '/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1055578260_1056105300.npz'] -OVERLAP RESOLVED BY "N VALID DATA" TIEBREAK -CHOSEN FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1055578260_1056105300.npz -2007-12-31 12:00:00 2008-12-31 11:00:00 1055578320 1056105300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1055578260_1056105300.npz'] -2008-12-31 15:00:00 2009-12-31 12:00:00 1056105540 1056630960 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1056105540_1056630960.npz'] -2009-12-31 12:00:00 2010-12-31 12:00:00 1056630960 1057156560 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1056630960_1057156560.npz'] -2010-12-31 12:00:00 2011-12-31 12:00:00 1057156560 1057682160 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1057156560_1057682160.npz'] -2011-12-31 12:00:00 2012-12-31 12:00:00 1057682160 1058209200 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1057682160_1058209200.npz'] -2012-12-31 12:00:00 2013-12-31 12:00:00 1058209200 1058734800 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1058209200_1058734800.npz'] -2013-12-31 13:00:00 2014-12-31 12:00:00 1058734860 1059260400 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1058734860_1059260400.npz'] -2014-12-31 12:00:00 2015-12-30 15:00:00 1059260400 1059784740 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1059260400_1059784740.npz'] -2015-12-31 16:00:00 2016-12-31 12:00:00 1059786240 1060313040 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1059786240_1060313040.npz'] -2016-12-31 12:00:00 2017-12-31 12:00:00 1060313040 1060838640 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1060313040_1060838640.npz'] -2017-12-31 13:00:00 2018-12-31 13:00:00 1060838700 1061364300 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1060838700_1061364300.npz'] -2020-01-03 16:00:00 2020-12-31 13:00:00 1061894400 1062416940 ['/gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/1.5.1/native/sconcso2/temporary_S1/9_UVF_1061894400_1062416940.npz'] -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.12667589982350666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/1_24_UVF.out b/run/stage_logs/NAPMD_SO2/S2/1_24_UVF.out deleted file mode 100644 index 0c5ebcfd72b9beb51942eedf44655abc1fadbc85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/1_24_UVF.out +++ /dev/null @@ -1,5 +0,0 @@ -24_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -NO VALID DATA TO WRITE OUT AFTER REMOVING UNIQUE STATION DATA WITH EXTENT < 31 DAYS. -STATION WILL NOT CONTINUE IN PIPELINE. \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S2/1_358_UVF.out b/run/stage_logs/NAPMD_SO2/S2/1_358_UVF.out deleted file mode 100644 index 620104d37698966ee23089ea45ff39977514ec7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S2/1_358_UVF.out +++ /dev/null @@ -1,5 +0,0 @@ -358_UVF -- JOIN STATION SPECIFIC MEASUREMENTS -ONLY 1 FILE. NOTHING TO PROCESS. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -NO VALID DATA TO WRITE OUT AFTER REMOVING UNIQUE STATION DATA WITH EXTENT < 31 DAYS. -STATION WILL NOT CONTINUE IN PIPELINE. \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_103_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_103_UVF.out deleted file mode 100644 index a3e998b2b310dbc63b6d9fcbcb83f78d160f7785..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_103_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -103_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6052849849065145 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_104_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_104_UVF.out deleted file mode 100644 index a1c3154c167f8a5bd69d2c7f3feb909204812e41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_104_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -104_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8538193265597026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_105_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_105_UVF.out deleted file mode 100644 index 85a4b9a1c6148125710072deb4478aadb2709b70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_105_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -105_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.807201107343038 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_109_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_109_UVF.out deleted file mode 100644 index d7278a4481ab9f222cf3f53fe6951cfc02c62c37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_109_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -109_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1733341415723164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_110_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_110_UVF.out deleted file mode 100644 index 59df77f3d83e72fdbe0041f1e5c8e5afbcd5586a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_110_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -110_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0403174002965292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_111_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_111_UVF.out deleted file mode 100644 index a7c3559948a94316c4c7415f958a55e764aada45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_111_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -111_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0019697626431783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_113_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_113_UVF.out deleted file mode 100644 index 8307f61d233c4d6e15e0da99c5787a12fc78d0d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_113_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -113_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.957819660504659 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_114_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_114_UVF.out deleted file mode 100644 index 900702b552d300a5308be4af53b8d7056b1d9072..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_114_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -114_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.083647338549296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_119_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_119_UVF.out deleted file mode 100644 index 4c51a0e696bb31282482c02732ba520c3d8d0e8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_119_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -119_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0096935550371806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_11_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_11_UVF.out deleted file mode 100644 index d9af7ef40b9d1afef8304b98598798a04ad03c3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_11_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -11_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9604086796442668 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_120_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_120_UVF.out deleted file mode 100644 index 767f0a014137c0d137cd22703bcf6ceda12931fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_120_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -120_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8375420331954956 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_13_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_13_UVF.out deleted file mode 100644 index 487e586a6128bca090686cfdd7b47c017b303e6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_13_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -13_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9654980500539143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_14_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_14_UVF.out deleted file mode 100644 index c205a7152bdb48d5c763a6e682281cf77f7eb42b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_14_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -14_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0367230256398519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_15_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_15_UVF.out deleted file mode 100644 index 49ad863b5a97a3dc05352a6ef0719487772c7566..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_15_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -15_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8824656446774801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_20_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_20_UVF.out deleted file mode 100644 index a76bbef2f0b6b0a53c3207f397fb9054df296729..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_20_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -20_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9470864375432332 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_21_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_21_UVF.out deleted file mode 100644 index a090109259daf2b71925f04b87dd9b68c317f6b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_21_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -21_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7139445384343465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_22_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_22_UVF.out deleted file mode 100644 index 60ec6be9c1295358bb8bad5f1d1df82d0fc3a641..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_22_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -22_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.3944746335347493 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_275_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_275_UVF.out deleted file mode 100644 index 5fbb6ba91449d0bbd3a5f64f4be9e711c84e1afe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_275_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -275_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.5029363592465719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_276_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_276_UVF.out deleted file mode 100644 index 2c79e166f07e83107382c816d36b21b9c70567c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_276_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -276_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7471999565760294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_278_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_278_UVF.out deleted file mode 100644 index e3415ffca6a00a81cba7cf24cb56675c5a014bb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_278_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -278_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7725446303685506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_27_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_27_UVF.out deleted file mode 100644 index cbc4f4744e42c035ac740523c01c7a0784fbc657..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_27_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -27_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6499062339464824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_28_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_28_UVF.out deleted file mode 100644 index c707126137dcf4b2475d2c322ca2ba93e6139903..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_28_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -28_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5125523885091146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_29_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_29_UVF.out deleted file mode 100644 index ba8e5854b2280547443a891bd063c963f5daa18a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_29_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -29_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7159427404403687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_30_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_30_UVF.out deleted file mode 100644 index 38b42ae3f7a6faa99e582d7c9a28efb8d5721bd7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_30_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -30_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.669227667649587 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_31_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_31_UVF.out deleted file mode 100644 index a3e7093b9bf410d25b79d8184ad717362c829854..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_31_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -31_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0326329668362935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_324_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_324_UVF.out deleted file mode 100644 index 324713b64eba1bed644dbc981bdf9d9ff3b0d1c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_324_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -324_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.562141227722168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_325_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_325_UVF.out deleted file mode 100644 index 9fef208b607aa374724b9f8d577e43ac4a241ed1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_325_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -325_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.240631306171417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_326_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_326_UVF.out deleted file mode 100644 index e962406746dc6dc98b90275c052f69897dcc24d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_326_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -326_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.4864561637242635 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_32_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_32_UVF.out deleted file mode 100644 index 42a3e196e65fe07377e46bc465ed45bf9456000a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_32_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -32_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6083854118982951 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_331_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_331_UVF.out deleted file mode 100644 index 57b720468b633274ead0d03f32557c0b37fd90f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_331_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -331_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.7725995620091757 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_332_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_332_UVF.out deleted file mode 100644 index e1c2d35137543ae2032997c02ceab8ff5e4e1616..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_332_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -332_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6168716510136922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_336_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_336_UVF.out deleted file mode 100644 index ad75ea4339642943cac6868746f041bef4cdaafc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_336_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -336_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8078688025474549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_337_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_337_UVF.out deleted file mode 100644 index dcc207bb9d1d0bedab359eb343949e3c51fa0789..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_337_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -337_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9125261028607686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_340_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_340_UVF.out deleted file mode 100644 index b0e6af689822b4d5e0b768806d2fdf6b40502073..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_340_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -340_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.061050760746002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_342_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_342_UVF.out deleted file mode 100644 index 0e109f8aacc6fea149da5df086d6796bcfd2e39d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_342_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -342_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9365511258443197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_343_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_343_UVF.out deleted file mode 100644 index a75ea4afae2797effec44d8cc67e052e00edbd0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_343_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -343_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5063647985458374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_34_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_34_UVF.out deleted file mode 100644 index 9ee9e15ec3dcc4434b6aa5cc019d544cca4cd87d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_34_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -34_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7410678625106811 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_352_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_352_UVF.out deleted file mode 100644 index 95cc7fc05d42bfda6bfb05fc72b2572a4b21d575..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_352_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -352_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6707695126533508 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_356_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_356_UVF.out deleted file mode 100644 index d134efba973036ed45487400f78c12795acf77df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_356_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -356_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6999407251675923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_35_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_35_UVF.out deleted file mode 100644 index 44e1d40851f52881fc6d88323fa47195cb915ace..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_35_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -35_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6324198365211486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_360_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_360_UVF.out deleted file mode 100644 index ee143ff8c2443047166c8ed32f3c194d1d70ab5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_360_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -360_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.722338032722473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_362_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_362_UVF.out deleted file mode 100644 index ff974fef4930568c0fc11f9d15ae96eb8e845f99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_362_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -362_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9399027665456137 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_363_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_363_UVF.out deleted file mode 100644 index ffcec05858c493de5d55f5f5413627683475c260..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_363_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -363_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.0134769082069397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_368_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_368_UVF.out deleted file mode 100644 index 40495cf7390b70aec062c4b2a3136fd258196edf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_368_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -368_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.6427552143732707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_369_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_369_UVF.out deleted file mode 100644 index 6d81ce233c3b633b722ced86c1bfa8fa47b043c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_369_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -369_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.4956015388170878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_370_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_370_UVF.out deleted file mode 100644 index 132e9f3e2f47699c4be5d2347206841e14dea4be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_370_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -370_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5836850523948669 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_372_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_372_UVF.out deleted file mode 100644 index ba6c0ad3f3a78bc66327494aec31b1477ff0628c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_372_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -372_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5561595718065898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_373_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_373_UVF.out deleted file mode 100644 index 56309ca56e09a1d948a785d809dd8e8faadcbae7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_373_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -373_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5023040652275086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_375_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_375_UVF.out deleted file mode 100644 index 4b7739d5d17dc6310d167d1aeca5c8c6a32fe99e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_375_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -375_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5380353530248007 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_37_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_37_UVF.out deleted file mode 100644 index d1d9f0306fa1dac9d48d19a120afd27a925f819e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_37_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -37_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.032814876238505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_40_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_40_UVF.out deleted file mode 100644 index 8407eb425480cf52aa8bc15c9811703f7b8f416c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_40_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -40_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.6913469274838766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_42_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_42_UVF.out deleted file mode 100644 index 61a85c9ab3b8612c703abc1026abea79e9dad8d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_42_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -42_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5781857291857402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_43_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_43_UVF.out deleted file mode 100644 index f99d8c86a22d9632ef5248b3d9b016bbb14d18c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_43_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -43_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2222899119059245 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_44_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_44_UVF.out deleted file mode 100644 index 0a949477fc734ec3fed973c2c1d3939645c90fab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_44_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -44_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.8502810637156168 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_45_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_45_UVF.out deleted file mode 100644 index fb61f9c732bd22166d031e07b67d26234c22b60b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_45_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -45_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9962034026781719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_46_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_46_UVF.out deleted file mode 100644 index e9276275bfd5661f3457283c222f1d1664a41bc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_46_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -46_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7373636722564697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_48_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_48_UVF.out deleted file mode 100644 index c6577054fd42a6eed56c8f25502a6d239e4993db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_48_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -48_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9817591587702433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_4_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_4_UVF.out deleted file mode 100644 index 6454a471c8199bd208972b6a96c1714ffb07ba4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_4_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -4_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0181698322296142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_52_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_52_UVF.out deleted file mode 100644 index 4ff3a243e30394a30480034d23d8c39aa6bf88ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_52_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -52_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7437878727912903 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_534_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_534_UVF.out deleted file mode 100644 index ab46e5eec113786daf78a993ad51b0fb08a153bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_534_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -534_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5010856588681539 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_540_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_540_UVF.out deleted file mode 100644 index 06daa76667b4f085a75d4682ae4d63f9aee5354b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_540_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -540_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.49300012588500974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_54_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_54_UVF.out deleted file mode 100644 index 03b679053a3cb65447b69f56411a6003bf8c8a42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_54_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -54_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.9581643223762513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_551_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_551_UVF.out deleted file mode 100644 index 184b9e9cc099c6d89dbffe88ddef72214c57a121..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_551_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -551_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.5396551926930745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_57_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_57_UVF.out deleted file mode 100644 index bd4ebd4c98299b40abadca17f8993b2a48abbf19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_57_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -57_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.02266321182251 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_59_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_59_UVF.out deleted file mode 100644 index 3d1749d33aa82e882a725490550c2fd2258018fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_59_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -59_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1818952798843383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_5_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_5_UVF.out deleted file mode 100644 index 3b5b0c7dd89deee3d71da9c0cdd33fb1b08ef01c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_5_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -5_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9152781248092652 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_61_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_61_UVF.out deleted file mode 100644 index 16d563682b6845b1a1f74f659e6d905ccbbbbd90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_61_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -61_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.44703358014424643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_62_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_62_UVF.out deleted file mode 100644 index 71964421e54a18cec3427c1aaafa4542f3001a17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_62_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -62_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -2.4741905609766643 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_63_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_63_UVF.out deleted file mode 100644 index d68e592d748c02f362ab4c6d11e3841f031f0b88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_63_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -63_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1665593067804971 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_64_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_64_UVF.out deleted file mode 100644 index 85222d0028c453abdff1f90a90c5aa0d7ffc9480..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_64_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -64_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8814234217007955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_65_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_65_UVF.out deleted file mode 100644 index ea413500c5eed7accd26c8d844cee2e8b1984bef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_65_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -65_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7494017283121744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_6_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_6_UVF.out deleted file mode 100644 index 07b114c04b8155a4096c9646a3314755f9d87444..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_6_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -6_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.7485798875490824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_77_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_77_UVF.out deleted file mode 100644 index 524c2151a5d3c2c8c729b78f61deb4bf0ef3e055..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_77_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -77_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.615351156393687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_79_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_79_UVF.out deleted file mode 100644 index 6acf66323e0c3ab53e0441368ab663a9bf50dd85..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_79_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -79_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0209223826726277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_80_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_80_UVF.out deleted file mode 100644 index febc2a27724faf12554fe632214ec3861c60f7be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_80_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -80_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0551130890846252 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_84_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_84_UVF.out deleted file mode 100644 index ba37dda814593055b74c29d7e0ac3cd3353fd7fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_84_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -84_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9498157024383544 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_87_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_87_UVF.out deleted file mode 100644 index 7ebeb38bb982bda3b9bf6c9ede2567263efcaf16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_87_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -87_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9395042419433594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_8_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_8_UVF.out deleted file mode 100644 index cb110d47bd5a7d31ce1caf57d697cddd68a10b19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_8_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -8_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9908803979555766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_95_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_95_UVF.out deleted file mode 100644 index c00e326ed6150f1df74211870af219adeec2c349..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_95_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -95_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.827894918123881 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_96_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_96_UVF.out deleted file mode 100644 index 6ed526eef6dac589aaaf7e3bac8e22ca6957bdf4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_96_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -96_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0136527180671693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_97_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_97_UVF.out deleted file mode 100644 index 728cc668f9678c33f10ca704cb6413b5c7ab35d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_97_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -97_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.0130462765693664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/S3/0_9_UVF.out b/run/stage_logs/NAPMD_SO2/S3/0_9_UVF.out deleted file mode 100644 index 20eaa980d34acb25b850e6f1faa4f2b13186da25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/S3/0_9_UVF.out +++ /dev/null @@ -1,23 +0,0 @@ -9_UVF -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.380243170261383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_103_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_103_UVF_D_GLOBAL.out deleted file mode 100644 index 99e74f37ca86f4a678249c08b4477ae65112a0c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_103_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.33745275338490804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_103_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_103_UVF_H_GLOBAL.out deleted file mode 100644 index 9e46b7a87690d0475434cfb02cd64bf7a9a5b66f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_103_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.38236021200815834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_103_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_103_UVF_M_GLOBAL.out deleted file mode 100644 index 27372f09b85ddf96349441b9d6d81e4b2736755f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_103_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -103_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05737223227818807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_104_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_104_UVF_D_GLOBAL.out deleted file mode 100644 index f253364ed80c60f728d01d223c0907520d961161..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_104_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6854141354560852 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_104_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_104_UVF_H_GLOBAL.out deleted file mode 100644 index 726adfb342e624d6302dab07cd0ae7d945e6bea9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_104_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1125506162643433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_104_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_104_UVF_M_GLOBAL.out deleted file mode 100644 index 68e6ffbea47669c5da0e3fcdfac61954f6199d7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_104_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -104_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4171040932337443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_105_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_105_UVF_D_GLOBAL.out deleted file mode 100644 index b1f707e675823a182a163e8d9d5c4e4789eafc06..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_105_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.70526655515035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_105_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_105_UVF_H_GLOBAL.out deleted file mode 100644 index 1c35084f243752f33aa5bf2f86da92cf3281409b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_105_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.086322816212972 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_105_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_105_UVF_M_GLOBAL.out deleted file mode 100644 index 83321018f8006cab29bc6d92fa0c145a26f1feaf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_105_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -105_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2696450074513753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_109_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_109_UVF_D_GLOBAL.out deleted file mode 100644 index d532b710e4a4776aebe75f24dcc40f52b1833e80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_109_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1796308159828186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_109_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_109_UVF_H_GLOBAL.out deleted file mode 100644 index 4bbda17dce24d1f9ff1c78060638e828cc1c6b08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_109_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3480687379837035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_109_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_109_UVF_M_GLOBAL.out deleted file mode 100644 index 27b703a9d5d867e68c46d15128774cd7e87deee8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_109_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -109_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3288596630096436 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_110_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_110_UVF_D_GLOBAL.out deleted file mode 100644 index 632585d6f97723975332da0efc924df19638292c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_110_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.025840703646342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_110_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_110_UVF_H_GLOBAL.out deleted file mode 100644 index 87631a0cda0754a80f3a8bc88ab2c377e1f14bb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_110_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8856467167536417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_110_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_110_UVF_M_GLOBAL.out deleted file mode 100644 index 0f87cfbe1a126c034ff290e687c21ab00409f37f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_110_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9948879321416219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_111_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_111_UVF_D_GLOBAL.out deleted file mode 100644 index d5b81eb597955d621f423f387d3c114000654c4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_111_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -111_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.345951517422994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_111_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_111_UVF_H_GLOBAL.out deleted file mode 100644 index 82dfbd845849dba4785d996835d656448378dc4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_111_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -111_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2130064646402994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_111_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_111_UVF_M_GLOBAL.out deleted file mode 100644 index 87835d751df024935a637a92fd3671b087de0b5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_111_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -111_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9244634588559468 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_113_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_113_UVF_D_GLOBAL.out deleted file mode 100644 index 6f584285d7b3675f6c52c87b0ec4f4ef0110ede0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_113_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0369780778884887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_113_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_113_UVF_H_GLOBAL.out deleted file mode 100644 index 58f21e37b41beafc29bf00ac4c88102b336b421c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_113_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7755646109580994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_113_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_113_UVF_M_GLOBAL.out deleted file mode 100644 index d46f8132292933fde5f928a3936240dbc17ac532..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_113_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -113_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7389623840649923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_114_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_114_UVF_D_GLOBAL.out deleted file mode 100644 index 26c798d146e13dffd3b0591063aecf7587988c49..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_114_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -114_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0241065541903178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_114_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_114_UVF_H_GLOBAL.out deleted file mode 100644 index 420259699d60c198787f33bcdd6ddd201b25bcf3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_114_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -114_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9103498379389445 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_114_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_114_UVF_M_GLOBAL.out deleted file mode 100644 index 4281745f06292a1e9f9f056243a8f1beefee6830..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_114_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -114_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0943018992741902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_119_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_119_UVF_D_GLOBAL.out deleted file mode 100644 index 2b8a7aff4a8194aa82ec27e39b28d663fff1c460..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_119_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.037880786259969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_119_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_119_UVF_H_GLOBAL.out deleted file mode 100644 index d3ab0c60f1cc4c4a054f1ef6efa178d0a486e549..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_119_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5191330115000408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_119_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_119_UVF_M_GLOBAL.out deleted file mode 100644 index 541ddac4403c42e48ba2f842dc524bad131ce360..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_119_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -119_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9547268907229106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_11_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_11_UVF_D_GLOBAL.out deleted file mode 100644 index 3232b842b377afec241dc45b97cec170fc3b0aff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_11_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7276400129000344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_11_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_11_UVF_H_GLOBAL.out deleted file mode 100644 index 47ece71afc0df59e54608033e929185d65ed0aa0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_11_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.30581925312678 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_11_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_11_UVF_M_GLOBAL.out deleted file mode 100644 index 5709696a73caa0b311636110688c3d34b5bca4ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_11_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -11_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7757959802945456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_120_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_120_UVF_D_GLOBAL.out deleted file mode 100644 index 4fac3eef232940da6348ce691034d9adf2ed7fec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_120_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -120_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6064685781796774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_120_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_120_UVF_H_GLOBAL.out deleted file mode 100644 index 0b3c4eeec3b3c7bad95bd7df5d3a462b85a993ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_120_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -120_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.023458445072174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_120_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_120_UVF_M_GLOBAL.out deleted file mode 100644 index 69d7f6a433794db8f6008784e46bea3555791274..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_120_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -120_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5556576808293661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_13_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_13_UVF_D_GLOBAL.out deleted file mode 100644 index 72b53ced6d82c478ecb26b13318351017a83f6d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_13_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.053565553824107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_13_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_13_UVF_H_GLOBAL.out deleted file mode 100644 index 587d1276f3d497ec9b17aca184b75ac60f8bf8dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_13_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.009421257177989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_13_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_13_UVF_M_GLOBAL.out deleted file mode 100644 index 1b7e85b25eb8f12cf1f0e0fe99588fc4255ebbfb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_13_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -13_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7232210556666057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_14_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_14_UVF_D_GLOBAL.out deleted file mode 100644 index b37a5e08bba1b34aa29039f01967048cb30f4d6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_14_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2455563108126322 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_14_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_14_UVF_H_GLOBAL.out deleted file mode 100644 index f7a93cdc1cbe3fe56d091c56d234575b311da27a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_14_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6490554213523865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_14_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_14_UVF_M_GLOBAL.out deleted file mode 100644 index 808244103f924e99bc4f326590e6ff70d9596c7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_14_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -14_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1449768940607707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_15_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_15_UVF_D_GLOBAL.out deleted file mode 100644 index 8972eae1b9aedf231f778049d930378bc93d8bc8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_15_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.79360435406367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_15_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_15_UVF_H_GLOBAL.out deleted file mode 100644 index 06a5cd40dc298f833aebcdff134662a148ca6c6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_15_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.029755651950836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_15_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_15_UVF_M_GLOBAL.out deleted file mode 100644 index 517210a5afb454d6380367b736dd1d666acffde4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_15_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -15_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.593857292334239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_20_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_20_UVF_D_GLOBAL.out deleted file mode 100644 index ac404fa074ac3d4a3e2d95e9a6f9315abe5fa162..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_20_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.036100169022878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_20_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_20_UVF_H_GLOBAL.out deleted file mode 100644 index 4c583e5557b74698328ff9dc7b7f2654089f7eaf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_20_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2874269644419352 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_20_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_20_UVF_M_GLOBAL.out deleted file mode 100644 index 8ac4f6da7e05813cd8a73cf732277b0bd72195b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_20_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -20_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7591767390569051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_21_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_21_UVF_D_GLOBAL.out deleted file mode 100644 index 159dcbbf48c1348054625bbd7368c42d3a8e95b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_21_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6151323517163595 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_21_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_21_UVF_H_GLOBAL.out deleted file mode 100644 index 241437aea01832beae589b89f94f80d79645d648..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_21_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9063030878702799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_21_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_21_UVF_M_GLOBAL.out deleted file mode 100644 index 81b2a31266ffdaec6adda4aa460c4c83a64f7fb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_21_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -21_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3700950860977173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_22_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_22_UVF_D_GLOBAL.out deleted file mode 100644 index cc04c8f6b6039ffe9e5d2996b8bdb14b53173043..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_22_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5688194592793783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_22_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_22_UVF_H_GLOBAL.out deleted file mode 100644 index 91c8549fff905ed6de04978be39ece49874c19b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_22_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6653718153635662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_22_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_22_UVF_M_GLOBAL.out deleted file mode 100644 index 9e91b011971ff393340b0d1350d3b6b50c97dda9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_22_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -22_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.079123302300771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_275_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_275_UVF_D_GLOBAL.out deleted file mode 100644 index cfcd68d10c8ea91b7c72c6cb1a9359b0bf040a74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_275_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3405604004859923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_275_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_275_UVF_H_GLOBAL.out deleted file mode 100644 index 4a593d180bc7d5fa6e589dd35cecca12d03769dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_275_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.865195365746816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_275_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_275_UVF_M_GLOBAL.out deleted file mode 100644 index 774892317aea54e140b8a75913b23d489ee9ec7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_275_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -275_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0143513758977254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_276_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_276_UVF_D_GLOBAL.out deleted file mode 100644 index 239cf889b9b76210f95b283fc6ab007ae413fb71..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_276_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -276_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7141467769940694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_276_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_276_UVF_H_GLOBAL.out deleted file mode 100644 index 4b4466853983d3efb6519c91110e085e5891fd8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_276_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -276_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2827454090118409 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_276_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_276_UVF_M_GLOBAL.out deleted file mode 100644 index fa31df9440ac35d2e9ffa1f9899cebe6c88df0d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_276_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -276_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6180585781733196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_278_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_278_UVF_D_GLOBAL.out deleted file mode 100644 index e5b22cd4049d4162dd520510d1bd67dcd45b8b59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_278_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7238998532295227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_278_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_278_UVF_H_GLOBAL.out deleted file mode 100644 index 2e703cd482e084d6b060fc5d9a34b7bd1c416126..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_278_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2535820523897807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_278_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_278_UVF_M_GLOBAL.out deleted file mode 100644 index f8dceba83fe2571933db9f9cf2ccf99d0d108689..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_278_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -278_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.32362255652745564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_27_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_27_UVF_D_GLOBAL.out deleted file mode 100644 index 9a97022fe757cee4e42460fdf0c69d185d68d986..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_27_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31101773579915365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_27_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_27_UVF_H_GLOBAL.out deleted file mode 100644 index 159305597709b82e58653a8a5c2017661bab8002..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_27_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7831595857938131 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_27_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_27_UVF_M_GLOBAL.out deleted file mode 100644 index b6bb89a33a3843b727644b116245c2a2be7052e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_27_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -27_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.375398313999176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_28_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_28_UVF_D_GLOBAL.out deleted file mode 100644 index 0676c7535c3362e782a22ad06baf1c1bb45ecc68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_28_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.048181362946828205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_28_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_28_UVF_H_GLOBAL.out deleted file mode 100644 index 9964af576e206f33a0a35e197de144bf96a3080c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_28_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24863348801930746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_28_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_28_UVF_M_GLOBAL.out deleted file mode 100644 index 25c8b72dff6051976dc2041701fa27f0cccefa86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_28_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -28_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03950330813725789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_29_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_29_UVF_D_GLOBAL.out deleted file mode 100644 index 91410c70014614e794babd7bb58b4406c26f94b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_29_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.273703388373057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_29_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_29_UVF_H_GLOBAL.out deleted file mode 100644 index abbe587142ccbaf90c852674fb9fe0eae58898db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_29_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.844126017888387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_29_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_29_UVF_M_GLOBAL.out deleted file mode 100644 index 48e4bed1720184d68bcee8fd3f54b6d2b808514b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_29_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -29_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5752874215443928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_30_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_30_UVF_D_GLOBAL.out deleted file mode 100644 index 8ec7442dc85fb6345580944846c9d8d985d498d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_30_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.39309741258621217 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_30_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_30_UVF_H_GLOBAL.out deleted file mode 100644 index aed4bf6461e03299f493731f0f4bd0381215e3a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_30_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5570250948270162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_30_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_30_UVF_M_GLOBAL.out deleted file mode 100644 index 32da7f305780690372deeda7e325f321e05509ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_30_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -30_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1501827836036682 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_31_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_31_UVF_D_GLOBAL.out deleted file mode 100644 index e257a1d7980a7a2feef82ec4b1594411b829f82a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_31_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0856951355934144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_31_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_31_UVF_H_GLOBAL.out deleted file mode 100644 index b155911fdc6da4afced6b784f837a5b80783a052..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_31_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0699266870816548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_31_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_31_UVF_M_GLOBAL.out deleted file mode 100644 index 486fdf8df74577596fd1cd1505a3dfb896bf3a13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_31_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -31_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7646499395370483 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_324_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_324_UVF_D_GLOBAL.out deleted file mode 100644 index 6f00ac5cf9db81b9ff64e06a3f3c3e796eaa68bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_324_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.953914745648702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_324_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_324_UVF_H_GLOBAL.out deleted file mode 100644 index b08d7c878d5837f98be57f75a49a341f49283205..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_324_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.335053026676178 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_324_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_324_UVF_M_GLOBAL.out deleted file mode 100644 index 41260b4861f6e8c59e98fcae4a780d9719cf79b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_324_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -324_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.139198390642802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_325_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_325_UVF_D_GLOBAL.out deleted file mode 100644 index e16aa3d6f5803deeaea8ea44359e56151f663dfe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_325_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6457606752713523 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_325_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_325_UVF_H_GLOBAL.out deleted file mode 100644 index 8ab6a514c1d61ba5f3b43d46352d18fff2a49563..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_325_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0661447008450824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_325_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_325_UVF_M_GLOBAL.out deleted file mode 100644 index 8bd7556578bbbd05480df3db39f6daf4c6a5f935..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_325_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -325_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9721024672190348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_326_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_326_UVF_D_GLOBAL.out deleted file mode 100644 index 23dcdafa7fcdb4c8a77ef71c9737adb4b9b37c40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_326_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9962986747423808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_326_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_326_UVF_H_GLOBAL.out deleted file mode 100644 index 1013f36a3f38be2f488dd701b1d12647dcb0b9b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_326_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0018834670384726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_326_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_326_UVF_M_GLOBAL.out deleted file mode 100644 index 8f002152ed7cff71ede46a554288388cf7a07405..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_326_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -326_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.962768308321635 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_32_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_32_UVF_D_GLOBAL.out deleted file mode 100644 index e3f8173565b7edc78985c28ed6a34d4e1b14bf08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_32_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23612610499064127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_32_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_32_UVF_H_GLOBAL.out deleted file mode 100644 index 4b3e328bac79113add91ed0a8f97d0dfcc8f870a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_32_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6652706066767374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_32_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_32_UVF_M_GLOBAL.out deleted file mode 100644 index 1bf493af00a3fa735def02638c03f741729e6409..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_32_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -32_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.43779531717300413 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_331_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_331_UVF_D_GLOBAL.out deleted file mode 100644 index ebd90cb4fb3779f2acdfa849525033e7c35e1040..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_331_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8097622235616049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_331_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_331_UVF_H_GLOBAL.out deleted file mode 100644 index e6bdab30eaeea3b4a74bed78eb247e3c3aa2cb80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_331_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8856317480405171 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_331_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_331_UVF_M_GLOBAL.out deleted file mode 100644 index c775778a35281035c992e56fd71649daadbbbeb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_331_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -331_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7623795429865519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_332_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_332_UVF_D_GLOBAL.out deleted file mode 100644 index 887b6368717142749f040d15036b453e6850f2b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_332_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2162891467412313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_332_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_332_UVF_H_GLOBAL.out deleted file mode 100644 index 45d405a856e81352be530e1bd40ec002bcc74479..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_332_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6837684909502664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_332_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_332_UVF_M_GLOBAL.out deleted file mode 100644 index 70af37e55f2db2cc834f1ace73a08f61cf425e35..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_332_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -332_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6981325348218281 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_336_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_336_UVF_D_GLOBAL.out deleted file mode 100644 index 2015d51be31bc5aeb30468f4afc21b4a8527f050..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_336_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6142021298408509 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_336_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_336_UVF_H_GLOBAL.out deleted file mode 100644 index 6c483657bfc8ba1042d1919eb738515b41a8a031..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_336_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8416519045829773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_336_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_336_UVF_M_GLOBAL.out deleted file mode 100644 index 1843cf2d1587370081fbe14157e6a3c55ca31cd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_336_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -336_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.95864946047465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_337_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_337_UVF_D_GLOBAL.out deleted file mode 100644 index 4ee9e94559993befb51092157c16ad24cc2631d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_337_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6614065289497375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_337_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_337_UVF_H_GLOBAL.out deleted file mode 100644 index 801b1dd3643fd55e4be08b04172346b19405db38..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_337_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7578687707583109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_337_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_337_UVF_M_GLOBAL.out deleted file mode 100644 index ffce0d9f875a19389bcbc967fc8c991c4db7cf89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_337_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -337_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8449094971021016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_340_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_340_UVF_D_GLOBAL.out deleted file mode 100644 index 38f0df7d484da72d9f5295600944351c33bfabc2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_340_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9976808428764343 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_340_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_340_UVF_H_GLOBAL.out deleted file mode 100644 index ef8f5e8bdffff6bd6b84f08d668781032a63f638..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_340_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9242682337760924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_340_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_340_UVF_M_GLOBAL.out deleted file mode 100644 index 7b3315e11ce3e5d6b428ce4657d765ae33f9ccac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_340_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -340_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6921473026275633 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_342_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_342_UVF_D_GLOBAL.out deleted file mode 100644 index a392af2b623930131df8556e09434307ceaa4326..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_342_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0113199909528097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_342_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_342_UVF_H_GLOBAL.out deleted file mode 100644 index aa95d99c13b9826103220aa43b5ad8fd0a568395..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_342_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.037886142730713 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_342_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_342_UVF_M_GLOBAL.out deleted file mode 100644 index 2c6e848bf0681266762c056b3dce003b4269f871..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_342_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -342_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.490541402498881 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_343_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_343_UVF_D_GLOBAL.out deleted file mode 100644 index d58e16dc9ea675d6c7a436266e79a034f6915370..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_343_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.019006510575612385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_343_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_343_UVF_H_GLOBAL.out deleted file mode 100644 index cbfee07766690ad0a606f49c59bcfbadedddce56..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_343_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18317837715148927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_343_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_343_UVF_M_GLOBAL.out deleted file mode 100644 index c6ced480b925075c42c2b341a665d6373663a29f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_343_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -343_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.01384735107421875 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_34_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_34_UVF_D_GLOBAL.out deleted file mode 100644 index 9d42e63edbb5668faae1386f8740eafccdaebd8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_34_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6266950408617655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_34_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_34_UVF_H_GLOBAL.out deleted file mode 100644 index 257878bd62f6091f7d9113aa0b45a7a61119d4f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_34_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0730586369832358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_34_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_34_UVF_M_GLOBAL.out deleted file mode 100644 index 0143ac45cde6c8fdc5c18ca61705262b7ced2b51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_34_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -34_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5699331839879354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_352_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_352_UVF_D_GLOBAL.out deleted file mode 100644 index b23ba7e8f4a025f63ec2d9bffbe97a00e5c81c6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_352_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0658046285311381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_352_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_352_UVF_H_GLOBAL.out deleted file mode 100644 index bfa823c98b73150d2b71a17f64e7643ce66a11b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_352_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.24725199540456136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_352_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_352_UVF_M_GLOBAL.out deleted file mode 100644 index 4542a253174dfacf7527581c6ec0d9a697a24d8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_352_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -352_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.030016477902730307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_356_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_356_UVF_D_GLOBAL.out deleted file mode 100644 index 82194a1ec4d58e32221d3b31f9e237dcf0ae12c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_356_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.15173675616582236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_356_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_356_UVF_H_GLOBAL.out deleted file mode 100644 index d5fdad340b8d38b98b1ce5f5ab9a4988415e86c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_356_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5297840793927511 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_356_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_356_UVF_M_GLOBAL.out deleted file mode 100644 index 5366ca829463f0a5e4ed0ae9f1b64f02c4941e33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_356_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -356_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18330666621526082 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_35_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_35_UVF_D_GLOBAL.out deleted file mode 100644 index ef4f6a56659244b6c3d883ad374ad21592508074..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_35_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.023266478379567464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_35_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_35_UVF_H_GLOBAL.out deleted file mode 100644 index 8421ca5e87355a3f95da1d430e46b02afabede76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_35_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.19193639357884726 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_35_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_35_UVF_M_GLOBAL.out deleted file mode 100644 index a563d934f2ff65c7363a54698557c21b433f38c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_35_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -35_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.022409478823343914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_360_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_360_UVF_D_GLOBAL.out deleted file mode 100644 index 1719d86fcd1d6d3cd97a893fdf477588d7021208..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_360_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.5748064319292703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_360_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_360_UVF_H_GLOBAL.out deleted file mode 100644 index a320c6291bc09b956b526d46ecf2fe38a64711bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_360_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.852094757556915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_360_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_360_UVF_M_GLOBAL.out deleted file mode 100644 index 089319908872f519947656fda5da4bde5a9860bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_360_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -360_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8074772278467814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_362_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_362_UVF_D_GLOBAL.out deleted file mode 100644 index b4db325851c39e0777d3168371efc8fc765b15ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_362_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -362_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.080625049273173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_362_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_362_UVF_H_GLOBAL.out deleted file mode 100644 index fa744f29009ed40028c4324d38afe2181eed444d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_362_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -362_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.272590494155884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_362_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_362_UVF_M_GLOBAL.out deleted file mode 100644 index f5541bf464271de1d3e842ed9a9a7c2bbe7af527..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_362_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -362_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.635354395707448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_363_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_363_UVF_D_GLOBAL.out deleted file mode 100644 index b260c6961001efce032e2644d7199c2cc37dbb1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_363_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0331132809321084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_363_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_363_UVF_H_GLOBAL.out deleted file mode 100644 index 05960ea0499e0bb0a615b856227b0b446d6dd6e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_363_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9446504871050516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_363_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_363_UVF_M_GLOBAL.out deleted file mode 100644 index 6694bc8558df0b3125a8e0a87ed217aebdecd19b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_363_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -363_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6161922852198285 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_368_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_368_UVF_D_GLOBAL.out deleted file mode 100644 index 22e700ac39c8a63f8ae92c021aa75d5919016535..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_368_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.03140886227289836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_368_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_368_UVF_H_GLOBAL.out deleted file mode 100644 index ebc602bfdf5356c9966638c6c10c85a3f97a23ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_368_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.21437150637308758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_368_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_368_UVF_M_GLOBAL.out deleted file mode 100644 index 9d5eb74a376a65e31400739ca74141231cb46b9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_368_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -368_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02386016845703125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_369_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_369_UVF_D_GLOBAL.out deleted file mode 100644 index 1f7f40ea612b62778e5921d3982e19a56bc6ead2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_369_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02346657117207845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_369_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_369_UVF_H_GLOBAL.out deleted file mode 100644 index 1870ec4fb50cc59a6eb641ac75a5c24030fdc5a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_369_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18770599365234375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_369_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_369_UVF_M_GLOBAL.out deleted file mode 100644 index 262445095bb4f6ce3e6cc00ddbc62d992708bd4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_369_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -369_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.012855160236358642 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_370_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_370_UVF_D_GLOBAL.out deleted file mode 100644 index 3c66038bb93c28a41da992fa17a56141253a1c40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_370_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1467509388923645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_370_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_370_UVF_H_GLOBAL.out deleted file mode 100644 index 304b1a8201a8dee8a452e5b3b1e6609320bb1531..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_370_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3625124414761861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_370_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_370_UVF_M_GLOBAL.out deleted file mode 100644 index 019c6d58464958d145746de23e4d4fa3df6fd8e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_370_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -370_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.13187189102172853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_372_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_372_UVF_D_GLOBAL.out deleted file mode 100644 index 10c79c7e706d1d34d9ac6a73a4bb4a07c8002496..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_372_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.10434868335723876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_372_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_372_UVF_H_GLOBAL.out deleted file mode 100644 index 8b91bbecdd0a8bc04cd47abda66a34d7a23ff426..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_372_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3045487642288208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_372_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_372_UVF_M_GLOBAL.out deleted file mode 100644 index 97c78b29a0a2b5acd2c28e2c215d3afe3788686d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_372_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -372_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.08737802505493164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_373_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_373_UVF_D_GLOBAL.out deleted file mode 100644 index 4ee736c77da1d3d814d51a0f3a26ebe32c970303..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_373_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.09623519579569499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_373_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_373_UVF_H_GLOBAL.out deleted file mode 100644 index 6b61c2e4f5fa2a4b4f6a3f797337667ecd3375fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_373_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3008991201718648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_373_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_373_UVF_M_GLOBAL.out deleted file mode 100644 index cfa71839aa549d151fb28dd211305023022f73c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_373_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -373_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0581089456876119 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_375_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_375_UVF_D_GLOBAL.out deleted file mode 100644 index 521a7be15af07f3017f0801c09640b56db1e315a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_375_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.15148146947224936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_375_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_375_UVF_H_GLOBAL.out deleted file mode 100644 index 2d8d9aba4dd00eccc8a7c26c9c163b637ace11c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_375_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3870622237523397 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_375_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_375_UVF_M_GLOBAL.out deleted file mode 100644 index bb3c884e3a790622d6ef7506c16932c8ff2432e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_375_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -375_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05137723286946615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_37_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_37_UVF_D_GLOBAL.out deleted file mode 100644 index 8aca02d45aa02ad53413ace4f8612ddf4bb07cea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_37_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2969655831654867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_37_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_37_UVF_H_GLOBAL.out deleted file mode 100644 index 795c55c6c5077e98a6026586e184165c3e81af7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_37_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6958147406578064 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_37_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_37_UVF_M_GLOBAL.out deleted file mode 100644 index ae794851c1e61c92cc48a372896dfbf878d04164..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_37_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -37_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.606440273920695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_40_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_40_UVF_D_GLOBAL.out deleted file mode 100644 index 3d2f6b27fee3dd03e4cea8189a7e8c72d33d3935..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_40_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.348974839846293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_40_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_40_UVF_H_GLOBAL.out deleted file mode 100644 index f1b773ea944b18eea29648c7ebe1c41bd252992d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_40_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9384074370066324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_40_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_40_UVF_M_GLOBAL.out deleted file mode 100644 index 250d972b6b87c277ea78333f45f858f884ed25cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_40_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -40_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3713135123252869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_42_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_42_UVF_D_GLOBAL.out deleted file mode 100644 index 76344108892f361c6503dc9d6da252af32613388..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_42_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.26314725081125895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_42_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_42_UVF_H_GLOBAL.out deleted file mode 100644 index c9a10784b164aecc10ac3bccd041ef8e8ae5a354..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_42_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.4769446611404419 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_42_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_42_UVF_M_GLOBAL.out deleted file mode 100644 index ac5f72ec2c9662debd07f2de8fd3d8a63b617a9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_42_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -42_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.11104768911997477 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_43_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_43_UVF_D_GLOBAL.out deleted file mode 100644 index f2639ada481cb4f0ebbe55f25e96559a66980e54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_43_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.9264335989952088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_43_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_43_UVF_H_GLOBAL.out deleted file mode 100644 index 7efdf1c53f93af54bfe8a9d42465a70bde4d5b58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_43_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.2755520224571226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_43_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_43_UVF_M_GLOBAL.out deleted file mode 100644 index 3b79b4833b88cb595307509f1836415ff054dfdb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_43_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -43_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3932326237360637 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_44_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_44_UVF_D_GLOBAL.out deleted file mode 100644 index f76c02b2a63ec83db598f816094ab82e3e67fd7f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_44_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.746643861134847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_44_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_44_UVF_H_GLOBAL.out deleted file mode 100644 index fd338bfd88633e4d92b86089bb09969b38fb2bee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_44_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.063016247749329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_44_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_44_UVF_M_GLOBAL.out deleted file mode 100644 index b9bc855dcda29eeb37e422bc225282f06409a725..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_44_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -44_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.76006547609965 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_45_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_45_UVF_D_GLOBAL.out deleted file mode 100644 index 09ae4c045eda88fccdbdf4b5d30d88415ec37ebf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_45_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6147186438242596 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_45_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_45_UVF_H_GLOBAL.out deleted file mode 100644 index 4b43fdfa18d60e91a14e2075926bf4d6d5d5fce0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_45_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9438122749328612 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_45_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_45_UVF_M_GLOBAL.out deleted file mode 100644 index a54cfb5e8c201cd5ab19ee9e49bc672986832441..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_45_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -45_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6464988946914674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_46_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_46_UVF_D_GLOBAL.out deleted file mode 100644 index 1628714c89dca3f58d0afb984c2c19e4da3a0c2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_46_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.6685809016227722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_46_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_46_UVF_H_GLOBAL.out deleted file mode 100644 index 59801f4124765ba4e2f4b218f1892e99368b2985..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_46_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1068283200263977 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_46_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_46_UVF_M_GLOBAL.out deleted file mode 100644 index f07d27a35d6ac16e7fb1a60d5821c96666d20330..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_46_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -46_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.41210930347442626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_48_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_48_UVF_D_GLOBAL.out deleted file mode 100644 index b61f84e6aa1e2b4bd6b4ebdd366c01d86179b3ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_48_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9126483162244161 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_48_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_48_UVF_H_GLOBAL.out deleted file mode 100644 index 28b6ecf5b24d63643d1f31eec5a347ab1c9be767..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_48_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.694438890616099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_48_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_48_UVF_M_GLOBAL.out deleted file mode 100644 index 904aba2c95f28a355bd0d04489e49e9936a80cee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_48_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -48_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8547704974810283 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_4_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_4_UVF_D_GLOBAL.out deleted file mode 100644 index 55928cf4b8b736be63c437d86f273ea6d83bc10e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_4_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9606870134671529 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_4_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_4_UVF_H_GLOBAL.out deleted file mode 100644 index 2969c98532039360b4c60f9d48c7152e8dcb1a99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_4_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4686720728874207 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_4_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_4_UVF_M_GLOBAL.out deleted file mode 100644 index 9d36c7786b70c9f9c1396e994e816eed06adbde4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_4_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -4_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5867841045061747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_52_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_52_UVF_D_GLOBAL.out deleted file mode 100644 index c39f26674be3c3ac273fe0e01c16528c308bda63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_52_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.49285263220469155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_52_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_52_UVF_H_GLOBAL.out deleted file mode 100644 index 78db2a904040c43481924d8b9fdaa0648eee2ed0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_52_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0295620997746786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_52_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_52_UVF_M_GLOBAL.out deleted file mode 100644 index 461b9c5f1e0cad26125239af0d14a259cc3315f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_52_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -52_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9515141844749451 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_534_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_534_UVF_D_GLOBAL.out deleted file mode 100644 index f80ee288c2f1d14a8acd879419997eaeac477cb6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_534_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.02917222579320272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_534_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_534_UVF_H_GLOBAL.out deleted file mode 100644 index 2af24ccd2397bbe64b8fbf953aac6efe3c159c7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_534_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.19792638222376505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_534_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_534_UVF_M_GLOBAL.out deleted file mode 100644 index 933b03b70f168b5ea86c30f748325287e9b21322..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_534_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -534_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.021699388821919758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_540_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_540_UVF_D_GLOBAL.out deleted file mode 100644 index dea862b84dc7498bfb09883182632c401b049194..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_540_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.012214167912801107 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_540_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_540_UVF_H_GLOBAL.out deleted file mode 100644 index 1d69a818965c14eccf960f77cc2abcae69467c4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_540_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.15898987452189128 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_540_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_540_UVF_M_GLOBAL.out deleted file mode 100644 index bc2ba9566103ddb4e06f76e6a763ab4a837f7671..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_540_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -540_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.004767688115437826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_54_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_54_UVF_D_GLOBAL.out deleted file mode 100644 index 77e5e2d1d552ef3859a691f5c6304c73e68876fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_54_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.7388901750246686 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_54_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_54_UVF_H_GLOBAL.out deleted file mode 100644 index 96e279b2a53906d1490183af2db6dc026de0dac3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_54_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8560072183609009 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_54_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_54_UVF_M_GLOBAL.out deleted file mode 100644 index 0d082c309b5c4511cdbfc5d420e20cc0e9a5922b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_54_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -54_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.468381138642629 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_551_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_551_UVF_D_GLOBAL.out deleted file mode 100644 index dfc84412d72d2861e3893e8c4a66f3f7dd597cd8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_551_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -551_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.018988303343454995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_551_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_551_UVF_H_GLOBAL.out deleted file mode 100644 index 7da92a8f2861fd39e6ee2ada4cb63b185496cfd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_551_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -551_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18050400416056314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_551_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_551_UVF_M_GLOBAL.out deleted file mode 100644 index 8407bfe9bd5fad0b491f772579c4641bc3f3b718..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_551_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -551_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.009509754180908204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_57_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_57_UVF_D_GLOBAL.out deleted file mode 100644 index 5d281a75af1be5fdd9f304e07a819a3324f87733..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_57_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0423739234606426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_57_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_57_UVF_H_GLOBAL.out deleted file mode 100644 index 0196b3af6aff79275efd3cbdcb87ec586758cb4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_57_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -3.2162267645200093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_57_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_57_UVF_M_GLOBAL.out deleted file mode 100644 index b8f1524f11ce94b3ba88ac9f06869b084f0aba07..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_57_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -57_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.6539923310279847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_59_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_59_UVF_D_GLOBAL.out deleted file mode 100644 index 0a9aaccc4af92b1745768b3d018b8623b6ab2085..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_59_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.3044941306114197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_59_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_59_UVF_H_GLOBAL.out deleted file mode 100644 index f4215ca152b8af1670a44f261f7466419333adeb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_59_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9695521195729574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_59_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_59_UVF_M_GLOBAL.out deleted file mode 100644 index ecc1a866cd9a175cec1d03b0bb81185734bdb47f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_59_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -59_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4056294123331705 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_5_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_5_UVF_D_GLOBAL.out deleted file mode 100644 index c9811375df75fccf532df09e25e5103ddbe9fba6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_5_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7747747699419657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_5_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_5_UVF_H_GLOBAL.out deleted file mode 100644 index 4596950ee36e63a279fcf8ff848fd1e1251c62e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_5_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.014084796110789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_5_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_5_UVF_M_GLOBAL.out deleted file mode 100644 index e7d03fb37520879b88374ebd9404b3ceaf615644..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_5_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -5_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7644158641497294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_61_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_61_UVF_D_GLOBAL.out deleted file mode 100644 index cfa28432844e68f72c184e75cf27f6442c6f1ee5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_61_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.018975154558817545 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_61_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_61_UVF_H_GLOBAL.out deleted file mode 100644 index b126788fde1eda42ddbc6af43e5018a43e58f552..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_61_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.16953138510386148 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_61_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_61_UVF_M_GLOBAL.out deleted file mode 100644 index 91587c24f3e192bb72f80ebc2bf7e9e7b119c547..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_61_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -61_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.011362763245900472 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_62_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_62_UVF_D_GLOBAL.out deleted file mode 100644 index dfe0b939a4319061ca14b6ce3df18e286d64a6f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_62_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.903142535686493 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_62_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_62_UVF_H_GLOBAL.out deleted file mode 100644 index 60e570999da49e294a1f510a8bb07b6093f811f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_62_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.9153449654579164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_62_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_62_UVF_M_GLOBAL.out deleted file mode 100644 index 399406049ddcb7cba20ce18c3c934e7947981d02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_62_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -62_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7618812084198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_63_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_63_UVF_D_GLOBAL.out deleted file mode 100644 index d433876237cc1b465fc81c41e93c6df4766ba3f2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_63_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7876509070396424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_63_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_63_UVF_H_GLOBAL.out deleted file mode 100644 index df49a828c3ef1d9ee1e4f1601ad4c9dfb4ce5cb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_63_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5735131223996481 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_63_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_63_UVF_M_GLOBAL.out deleted file mode 100644 index 5966af527dc64c4db1287b9ec0a3d346eebbbecd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_63_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -63_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5993897596995035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_64_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_64_UVF_D_GLOBAL.out deleted file mode 100644 index 2546a57628030e9819ac89e40a2d4880f01c824d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_64_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2498554309209189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_64_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_64_UVF_H_GLOBAL.out deleted file mode 100644 index 94b267ac3f4cc8fb139101188a434502c2fee8fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_64_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8851793964703878 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_64_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_64_UVF_M_GLOBAL.out deleted file mode 100644 index bc0381118a4cb0bdeee192326430c7d07118d439..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_64_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -64_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0232625484466553 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_65_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_65_UVF_D_GLOBAL.out deleted file mode 100644 index 70ec772d573009647f9575590fd0722defa2a374..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_65_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7026739994684855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_65_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_65_UVF_H_GLOBAL.out deleted file mode 100644 index 550df0dffe3ece135766637fb03a5dcb692e1765..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_65_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8406825065612793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_65_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_65_UVF_M_GLOBAL.out deleted file mode 100644 index 0513643f32001ce5e722c49ad869b066fdd5712f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_65_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -65_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.32663158973058065 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_6_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_6_UVF_D_GLOBAL.out deleted file mode 100644 index 9a7d6017898fa9c899fcddcd6b38c87fc7ef2b86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_6_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.3407190640767415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_6_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_6_UVF_H_GLOBAL.out deleted file mode 100644 index e7ae003ef21cb650bb328d64f7a1b947f25df67c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_6_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7823495189348857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_6_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_6_UVF_M_GLOBAL.out deleted file mode 100644 index 791cc10d8c2657688d5b2e5ba57db6796aad6d4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_6_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -6_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.1575308879216512 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_77_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_77_UVF_D_GLOBAL.out deleted file mode 100644 index 5dce3c354123fb77fbc4489d6dd28ade6e99dbe9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_77_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.15705243349075318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_77_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_77_UVF_H_GLOBAL.out deleted file mode 100644 index 7e0792fe776b0b425d12679d672ae187c55e4513..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_77_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.60008358558019 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_77_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_77_UVF_M_GLOBAL.out deleted file mode 100644 index c052041f48582c2278b67e5eef8a21bf8d9cd44c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_77_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -77_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5666994214057922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_79_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_79_UVF_D_GLOBAL.out deleted file mode 100644 index f31671ed47db0e7835c2a8e2135a216d66ced417..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_79_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7194782853126527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_79_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_79_UVF_H_GLOBAL.out deleted file mode 100644 index 749be2f4d5f79055ec58cd6b68c39007eac1e767..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_79_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2753139058748881 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_79_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_79_UVF_M_GLOBAL.out deleted file mode 100644 index ffea5eb336f290519b296f25317909f55395f04f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_79_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -79_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.9750212828318278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_80_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_80_UVF_D_GLOBAL.out deleted file mode 100644 index 3f5d68662ab74b0db5bde21362aae11b753fb74e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_80_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0913137515385947 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_80_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_80_UVF_H_GLOBAL.out deleted file mode 100644 index 3efe1665ce717833dd33d2d88321a3c644f8f3b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_80_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2801387468973795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_80_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_80_UVF_M_GLOBAL.out deleted file mode 100644 index b84f4d9b6c69df86d82e24d7b2b17dd41e434ba9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_80_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -80_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4511588295300801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_84_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_84_UVF_D_GLOBAL.out deleted file mode 100644 index 8276a370e1587d605f2a7a43597a2cb2d6405360..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_84_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.7224711179733276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_84_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_84_UVF_H_GLOBAL.out deleted file mode 100644 index b47b4a631790ea99e906915402f1e47ccbd758a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_84_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.908912762006124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_84_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_84_UVF_M_GLOBAL.out deleted file mode 100644 index c3cfbbebf89c7a265f3c8b57db235b877e62b3cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_84_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -84_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6878291249275208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_87_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_87_UVF_D_GLOBAL.out deleted file mode 100644 index 458c80ed2ebd040867ab479efc868ab958283682..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_87_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5079583724339802 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_87_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_87_UVF_H_GLOBAL.out deleted file mode 100644 index e9b3f1b59abf28edfe66f30a61e76cf8b52a1a0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_87_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8950253129005432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_87_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_87_UVF_M_GLOBAL.out deleted file mode 100644 index 55cebe60cf7494841ba20a672596c9bc01800c31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_87_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -87_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.1130376935005188 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_8_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_8_UVF_D_GLOBAL.out deleted file mode 100644 index 1140098932206427e17446c7bada3135f95228a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_8_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8252410292625427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_8_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_8_UVF_H_GLOBAL.out deleted file mode 100644 index 8f26971decc6e887ab0349506bd91d01a049f8ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_8_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2476128896077474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_8_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_8_UVF_M_GLOBAL.out deleted file mode 100644 index dcc2b8b1aae8c2dff6aa6125eab09d8a104de5de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_8_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -8_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.5187728722890218 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_95_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_95_UVF_D_GLOBAL.out deleted file mode 100644 index 990c41368e687a89dfb172d9cf3cdf24cd8b1a11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_95_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -95_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.8097640752792359 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_95_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_95_UVF_H_GLOBAL.out deleted file mode 100644 index eaac3ee6f692f667e600ea47053a9744f694fa18..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_95_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -95_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2143068234125773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_95_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_95_UVF_M_GLOBAL.out deleted file mode 100644 index 9048db0a3eace48371174ecd0eaecf3760f55961..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_95_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -95_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.0617530544598897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_96_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_96_UVF_D_GLOBAL.out deleted file mode 100644 index 5b74bd98c37c7f93a66cdfdd9f5bb9c455f8ba37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_96_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.5444634040196736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_96_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_96_UVF_H_GLOBAL.out deleted file mode 100644 index 3639b03111faa999baf7353b51e4a94f12cf88de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_96_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.7115003307660421 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_96_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_96_UVF_M_GLOBAL.out deleted file mode 100644 index b5eca58b5c7d40e7875ca10f9643bc5895cde896..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_96_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.2708362579345702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_97_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_97_UVF_D_GLOBAL.out deleted file mode 100644 index 6320e8b40c1156e1cfd8e6e0b510a5965f13d8c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_97_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -97_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.6877331217130025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_97_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_97_UVF_H_GLOBAL.out deleted file mode 100644 index 311b3d67f23e75640d5b745e420eefbdebae5ba2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_97_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -97_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.4872715671857197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_97_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_97_UVF_M_GLOBAL.out deleted file mode 100644 index 9c24ac00e28b7f78e7cbe0b6061e179e187e45b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_97_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -97_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.063062059879303 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_9_UVF_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_9_UVF_D_GLOBAL.out deleted file mode 100644 index 2a7030c3b1633cfd4c2358da8f4536b239dd9015..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_9_UVF_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.890202275911967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_9_UVF_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_9_UVF_H_GLOBAL.out deleted file mode 100644 index 841648002a034253eb7b111e932d9d6386089e8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_9_UVF_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -1.8827086647351583 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T1/0_9_UVF_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T1/0_9_UVF_M_GLOBAL.out deleted file mode 100644 index 4252a507c0c6bb996233e46ba08c3e594d498c80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T1/0_9_UVF_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -9_UVF -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -2.0066153089205425 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_198912_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_198912_D_GLOBAL.out deleted file mode 100644 index 5958991520822cd9f74521d6b93d72941ac8874b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_198912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.02918768326441447 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_198912_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_198912_H_GLOBAL.out deleted file mode 100644 index caeb7ef7d0617cf651f6c33373159f0a3b7fcb83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_198912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.045072102546691896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_198912_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_198912_M_GLOBAL.out deleted file mode 100644 index 5638735da0636b5b49b60198746a2dc9de209c98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_198912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 198912 STATION NETCDFs -0.04896845817565918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199001_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199001_D_GLOBAL.out deleted file mode 100644 index 331500d54ac56bd9b5c423e114a781c3c0b05a12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.04607761700948079 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199001_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199001_H_GLOBAL.out deleted file mode 100644 index a71a6a04d9d01c40f56c0c0de59c699c02db7255..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.02676865259806315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199001_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199001_M_GLOBAL.out deleted file mode 100644 index 41a07fb7415bf4c947d2faa3f321ba53a9682c8f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199001 STATION NETCDFs -0.03380043903986613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199002_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199002_D_GLOBAL.out deleted file mode 100644 index b03d3ca4589f4e2e119fae5e62a7aea24fd908b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.0437750776608785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199002_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199002_H_GLOBAL.out deleted file mode 100644 index 5ee4bc604b07dff40524f37476949cde507c7e58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.028185280164082845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199002_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199002_M_GLOBAL.out deleted file mode 100644 index 7e521885e7fa08fed124b22cc872fb3bfcd7fd96..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199002 STATION NETCDFs -0.026517593860626222 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199003_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199003_D_GLOBAL.out deleted file mode 100644 index e38c314a30d64a9f06ddcc52be65b96b795f8e3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.034087483088175455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199003_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199003_H_GLOBAL.out deleted file mode 100644 index cd09e6ac7fa939cdbfcd8989203bed2e98d5a3c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.02368752161661784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199003_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199003_M_GLOBAL.out deleted file mode 100644 index 00b56abf6c6fd52ca201728da30fa434d371de1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199003 STATION NETCDFs -0.022674524784088136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199004_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199004_D_GLOBAL.out deleted file mode 100644 index f79d4bbf510a71100f59dba0eb97ddf9ea33ce30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.02703065872192383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199004_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199004_H_GLOBAL.out deleted file mode 100644 index 6f59582c7a6a4322cf6f9144fd3b31491b94c1a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.02295371691385905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199004_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199004_M_GLOBAL.out deleted file mode 100644 index 64c78623c9310ada458eace53a11b100686b108f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199004 STATION NETCDFs -0.019700618584950765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199005_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199005_D_GLOBAL.out deleted file mode 100644 index cbee8ae7f097e4e28f51132278d7e7d694995aad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.02968086798985799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199005_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199005_H_GLOBAL.out deleted file mode 100644 index 557d74bb003fb61b9fa935073b5419193b6aea44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.03315522273381551 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199005_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199005_M_GLOBAL.out deleted file mode 100644 index e952b2fd4498c7efe1bea18b65ec8068e202e663..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199005 STATION NETCDFs -0.022754108905792235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199006_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199006_D_GLOBAL.out deleted file mode 100644 index be0889172376f51e243cc301e6b58b631b4338f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.051604163646697995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199006_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199006_H_GLOBAL.out deleted file mode 100644 index 3306ae726ae458ae6d56d5f8b9983228badd2d20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.025189228852589927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199006_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199006_M_GLOBAL.out deleted file mode 100644 index 4acde5d55d8bc8fabe5a91b58e7d21764b2bcca9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199006 STATION NETCDFs -0.026845463116963706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199007_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199007_D_GLOBAL.out deleted file mode 100644 index b23e0ec63a7816b6a6d4b9e6f156efe7df1c6ac0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.038676182428995766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199007_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199007_H_GLOBAL.out deleted file mode 100644 index 4e73777419950c7a3b8a36baa04b9e5f43432fbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.02977277437845866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199007_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199007_M_GLOBAL.out deleted file mode 100644 index d54fd2f8552766ab9ac155b6c6e8a4a118875d4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199007 STATION NETCDFs -0.03161024649937948 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199008_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199008_D_GLOBAL.out deleted file mode 100644 index 63d60769455f882bb324cfd301e2c2f45077a73a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.023090803623199464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199008_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199008_H_GLOBAL.out deleted file mode 100644 index 0773b331274f8599f8cbcab2b82542962e3f009b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.02549670139948527 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199008_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199008_M_GLOBAL.out deleted file mode 100644 index cf611aab477e7914544cf5ed62556dc3807c398c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199008 STATION NETCDFs -0.04479761918385824 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199009_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199009_D_GLOBAL.out deleted file mode 100644 index 537081cb95afbaebc7fd787e936e3cd060f10d8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.022036194801330566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199009_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199009_H_GLOBAL.out deleted file mode 100644 index 3cb49f5a38886d3ec0e4e8aeae6d3d2a9874737b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.04330447514851888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199009_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199009_M_GLOBAL.out deleted file mode 100644 index b3e453a72292c0a2983ddf49da3a5e575569fe67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199009 STATION NETCDFs -0.02575681209564209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199010_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199010_D_GLOBAL.out deleted file mode 100644 index f3ecd89822df1801d53ea4440f4c06ce9f83ebbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.04929735660552979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199010_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199010_H_GLOBAL.out deleted file mode 100644 index 14d2ed5d1af8f941a95057506cf2a305146241ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.022878801822662352 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199010_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199010_M_GLOBAL.out deleted file mode 100644 index c1dba64bf1522dee59e1788448cb8452db3b19f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199010 STATION NETCDFs -0.0231954296429952 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199011_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199011_D_GLOBAL.out deleted file mode 100644 index 8862431fc62978ae624a2bdd4aaee5a2224d63eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.02676616112391154 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199011_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199011_H_GLOBAL.out deleted file mode 100644 index 518a5a68c80164ac380dcc1d83440b3246912942..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.02417411804199219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199011_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199011_M_GLOBAL.out deleted file mode 100644 index bc2d0bf8b66c738caea0dad15d6fc3ff42c1caf0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199011 STATION NETCDFs -0.036472837130228676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199012_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199012_D_GLOBAL.out deleted file mode 100644 index 147e530dc9906066e07d87548bf725a3f34546f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.027501400311787924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199012_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199012_H_GLOBAL.out deleted file mode 100644 index fc604649e7af854704d5224c888179ce92af4eb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.025743921597798664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199012_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199012_M_GLOBAL.out deleted file mode 100644 index a7638803984f7ef08d8501e06e2e9dd81ac2cb58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199012 STATION NETCDFs -0.04620240926742554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199101_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199101_D_GLOBAL.out deleted file mode 100644 index a4b89aaf0d46bdf7bf082db5e59365f891826cbe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.026433817545572915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199101_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199101_H_GLOBAL.out deleted file mode 100644 index 6f81a81edd1bba053f4b9a16957461f08f603605..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.040057889620463055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199101_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199101_M_GLOBAL.out deleted file mode 100644 index 9d54bd405ddf4ae66a0c559e8ba6b79783481e2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199101 STATION NETCDFs -0.039378408590952554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199102_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199102_D_GLOBAL.out deleted file mode 100644 index 3da6405ee776bd4b167de3751bceef63077cd041..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.023640267054239907 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199102_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199102_H_GLOBAL.out deleted file mode 100644 index a4946f194595f44c600089c6e6df78310d5b2203..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.021798717975616454 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199102_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199102_M_GLOBAL.out deleted file mode 100644 index 6d152c81b1a1dddbe7f853d93e2fb2525d68b81c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199102 STATION NETCDFs -0.028246657053629557 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199103_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199103_D_GLOBAL.out deleted file mode 100644 index 476978237d1abcf1bf3cb9cef254bd176d2542ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.027430697282155355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199103_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199103_H_GLOBAL.out deleted file mode 100644 index 21ff0b86e4f87d98309bce059352efc8eab0ef2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.03700364033381144 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199103_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199103_M_GLOBAL.out deleted file mode 100644 index 0d28e8f88888934be06b42fa5063e11456288f62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199103 STATION NETCDFs -0.03976683616638184 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199104_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199104_D_GLOBAL.out deleted file mode 100644 index fcf39c45a575c2ce10d22a833ea510998133ddad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.025614078839619955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199104_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199104_H_GLOBAL.out deleted file mode 100644 index d90109535c6e2a923c1f3279c971751cc083b701..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.04910427729288737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199104_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199104_M_GLOBAL.out deleted file mode 100644 index b28e1cbba2afb4f5978fbe0dc6ee48ab0f27772d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199104 STATION NETCDFs -0.034643431504567467 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199105_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199105_D_GLOBAL.out deleted file mode 100644 index b56bea6ce8ed2149de554e30ef65bfee9f402a5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.023868815104166666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199105_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199105_H_GLOBAL.out deleted file mode 100644 index c7e76925dfa67b12eb2c9cf103e820372dfc93cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.03603061040242513 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199105_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199105_M_GLOBAL.out deleted file mode 100644 index 9497ae01c362ee0a5721e3d5616928d1c6db5748..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199105 STATION NETCDFs -0.032737608750661215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199106_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199106_D_GLOBAL.out deleted file mode 100644 index 1f36c6f3541c189485c54e3492a6537446386a2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.027885818481445314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199106_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199106_H_GLOBAL.out deleted file mode 100644 index 81fd8e8bb256e597cc7dbb1da4ac1df1d67f1d4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.02585516373316447 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199106_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199106_M_GLOBAL.out deleted file mode 100644 index 1873e1d3e65a8f2910ba1d30b541742f7c5e7cb1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199106 STATION NETCDFs -0.019128580888112385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199107_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199107_D_GLOBAL.out deleted file mode 100644 index 2ea633da907dc9a1e20bf72463157be98bb16972..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.04933487176895142 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199107_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199107_H_GLOBAL.out deleted file mode 100644 index 55e42c846414da7cf492ca029a816af065afac6c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.03234419027964274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199107_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199107_M_GLOBAL.out deleted file mode 100644 index 4a9fa9371bbc811de09550b5b037dc4c72209741..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199107 STATION NETCDFs -0.02655025323232015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199108_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199108_D_GLOBAL.out deleted file mode 100644 index fca3fa8585372b9af55e92c437d81b6b1b8563f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.029413692156473794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199108_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199108_H_GLOBAL.out deleted file mode 100644 index 072b291f66a8db3687302ff7a01f1e4cabbe06da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.04297143220901489 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199108_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199108_M_GLOBAL.out deleted file mode 100644 index ef2aba8e9c4a02bc0716dd890e43935b2fb54c2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199108 STATION NETCDFs -0.03731834093729655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199109_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199109_D_GLOBAL.out deleted file mode 100644 index da3bbed824c6c7d0dcbc78216d385474e395acc5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.02233418623606364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199109_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199109_H_GLOBAL.out deleted file mode 100644 index 574a0e6f4ea668816c3ff8927d8fe2516d9be7de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.022923727830251057 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199109_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199109_M_GLOBAL.out deleted file mode 100644 index 9348f09d4f11999b0b640e0c9baf49c5e770cfee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199109 STATION NETCDFs -0.024930910269419352 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199110_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199110_D_GLOBAL.out deleted file mode 100644 index 4643a89fb4d569a5bfdb36cad5b402ef93ab3b89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.03632030487060547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199110_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199110_H_GLOBAL.out deleted file mode 100644 index e4764f893c9ef35f1285cab8a488fe4278fc8e17..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.0321954091389974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199110_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199110_M_GLOBAL.out deleted file mode 100644 index bdb2032bbf5ea0370e84852500924434fe76d67f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199110 STATION NETCDFs -0.022407559553782146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199111_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199111_D_GLOBAL.out deleted file mode 100644 index b7845c43b5ec0be8584543406c2f4e00ba77e48c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.03126245737075806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199111_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199111_H_GLOBAL.out deleted file mode 100644 index 9443d7891ff1e1b1a498c52681704a5e367a7eff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.020934879779815674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199111_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199111_M_GLOBAL.out deleted file mode 100644 index f02750dba5ff97f5b186f8452fc7545012ede6d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199111 STATION NETCDFs -0.03949251969655355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199112_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199112_D_GLOBAL.out deleted file mode 100644 index 1887c6effe7a7c317585ffbf4d1d80b86c14e899..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.022294755776723227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199112_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199112_H_GLOBAL.out deleted file mode 100644 index 9da4d272b3a36acc42ee7d0327bc5bb8f73eb1d9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.03577799399693807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199112_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199112_M_GLOBAL.out deleted file mode 100644 index 4691aa3a4bfaa3382c4c5713415d2df055b5eed4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199112 STATION NETCDFs -0.04851014614105224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199201_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199201_D_GLOBAL.out deleted file mode 100644 index 435026c68e0a6c76de74cdcbfa73309054233d2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.024048248926798504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199201_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199201_H_GLOBAL.out deleted file mode 100644 index 8402277c348877b4b099c1a861d2f9a7c0d83e19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.020948485533396403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199201_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199201_M_GLOBAL.out deleted file mode 100644 index 5adcb7db2fb915d1b4396b973b1ff91808759a41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199201 STATION NETCDFs -0.03977894385655721 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199202_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199202_D_GLOBAL.out deleted file mode 100644 index 9cae1d03b0731aedf01e5dec15310ea6d72f5831..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.047734769185384114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199202_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199202_H_GLOBAL.out deleted file mode 100644 index 4ec205e5f29cb2e30729483c879c2d7da60ebca3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.02188818057378133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199202_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199202_M_GLOBAL.out deleted file mode 100644 index 2fa1c21f5a6515648528a7f5a53074e8337ee60e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199202 STATION NETCDFs -0.02251367171605428 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199203_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199203_D_GLOBAL.out deleted file mode 100644 index 0747633f4c6b37678d36dc7d446f131d21650157..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.03976444403330485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199203_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199203_H_GLOBAL.out deleted file mode 100644 index 4a6507477360de225ce83a9fc144a527f18b64e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.02460845708847046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199203_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199203_M_GLOBAL.out deleted file mode 100644 index 624eee9d0e4e123ce2a091817509a88b0160dfc3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199203 STATION NETCDFs -0.026990628242492674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199204_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199204_D_GLOBAL.out deleted file mode 100644 index e5c7adaed51a3e61413d2d5f97acce4bd235d338..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.029851003487904867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199204_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199204_H_GLOBAL.out deleted file mode 100644 index 302213262a2292b05cc163d03e327e12b4cad301..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.03319000005722046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199204_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199204_M_GLOBAL.out deleted file mode 100644 index 90850ef363039f263c89f31c1f9dccf645491bcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199204 STATION NETCDFs -0.05148499409357707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199205_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199205_D_GLOBAL.out deleted file mode 100644 index 6dc072ee894eca5c35444dc52069e30123515420..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199205 STATION NETCDFs -0.04521487156550089 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199205_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199205_H_GLOBAL.out deleted file mode 100644 index 2d77951afe8f25e38818ea77614c5bc3f5e193ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199205 STATION NETCDFs -0.02294517755508423 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199205_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199205_M_GLOBAL.out deleted file mode 100644 index 0fbb010e7ad7d77e4186cee5b6d18767d6f77675..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199205 STATION NETCDFs -0.031157859166463218 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199206_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199206_D_GLOBAL.out deleted file mode 100644 index bc90e2182015c8be7234a0d4fd95c30d21f17122..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199206 STATION NETCDFs -0.04645475149154663 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199206_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199206_H_GLOBAL.out deleted file mode 100644 index a2d6a186ea939de5dc1a10c10f1c4c047a9fa519..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199206 STATION NETCDFs -0.026276191075642902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199206_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199206_M_GLOBAL.out deleted file mode 100644 index a6901c713bf1553277fb7e64a505cfc1a2ca1ce2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199206 STATION NETCDFs -0.031603562831878665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199207_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199207_D_GLOBAL.out deleted file mode 100644 index 494fb5ab714a93e75e9d3d66e2608b12d9ddc067..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.02590051492055257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199207_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199207_H_GLOBAL.out deleted file mode 100644 index d7fb3bfe86c7cf79a32a4a8aae2c9e14345e5e29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.045407966772715254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199207_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199207_M_GLOBAL.out deleted file mode 100644 index ca3590e7e91bc668d26ba172b0fba289f6a72fb1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199207 STATION NETCDFs -0.022376048564910888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199208_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199208_D_GLOBAL.out deleted file mode 100644 index 945eb9be47d9b28114da3398a87f6888ea8f5e6d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.025106513500213624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199208_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199208_H_GLOBAL.out deleted file mode 100644 index ecec2d32407d75660d02c8a540a4fd037c6eb194..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.04525835514068603 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199208_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199208_M_GLOBAL.out deleted file mode 100644 index 6af400f8eb5c616721b367e51d1cabb4c54a6eb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199208 STATION NETCDFs -0.032046862443288165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199209_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199209_D_GLOBAL.out deleted file mode 100644 index 32c1f37a066bc68c9b70a7ec94658ab4283b53aa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.04520214796066284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199209_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199209_H_GLOBAL.out deleted file mode 100644 index f9ac13c4b133aa813b2c25a26d53b87d9fddc04a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.021787397066752114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199209_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199209_M_GLOBAL.out deleted file mode 100644 index 0f5a0ba2a8532e60f277e3e8077db3d2bc693851..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199209 STATION NETCDFs -0.027774405479431153 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199210_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199210_D_GLOBAL.out deleted file mode 100644 index d0d492a20744d385b7636e0c045d8c131ffbea6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.03629285891850789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199210_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199210_H_GLOBAL.out deleted file mode 100644 index 6a1ed48d869dfd77e85350f8d2cd43fd95ea248b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.0456177830696106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199210_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199210_M_GLOBAL.out deleted file mode 100644 index 601128b37a11e33943a2c1279057ce4ea1f169fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199210 STATION NETCDFs -0.020597441991170248 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199211_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199211_D_GLOBAL.out deleted file mode 100644 index fc178a3504cf549ea9e598dad592a8913456bec5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.028391476472218832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199211_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199211_H_GLOBAL.out deleted file mode 100644 index 96164544b7837e788e8637045701f6d94a670011..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.045011452833811444 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199211_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199211_M_GLOBAL.out deleted file mode 100644 index 17f8f094f356caeeb4ef1ffc98ce51d80446a8c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199211 STATION NETCDFs -0.02891361713409424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199212_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199212_D_GLOBAL.out deleted file mode 100644 index 0695a63c1a3ca1eea1f4c1db20ec7f2e62ae678f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.02961618105570475 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199212_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199212_H_GLOBAL.out deleted file mode 100644 index a885802ff8ece12d8f577b7a5f610d09f911e7ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.03496468861897786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199212_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199212_M_GLOBAL.out deleted file mode 100644 index 2656f620384a9993f81e157a56c1fbbe1166f474..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199212 STATION NETCDFs -0.025561277071634927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199301_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199301_D_GLOBAL.out deleted file mode 100644 index e39ae8528e5953212c2f4dc9946a374bb1400a71..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.04553221861521403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199301_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199301_H_GLOBAL.out deleted file mode 100644 index b36eece6e2f0640edd4e179c5279bcd5f51bf589..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.02489867607752482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199301_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199301_M_GLOBAL.out deleted file mode 100644 index ca587314f922ac5f41e4ae61e8da61ccedf60c6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199301 STATION NETCDFs -0.028510264555613198 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199302_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199302_D_GLOBAL.out deleted file mode 100644 index f5c5b26df743829a9432458e81f7e5798c68cf60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.021375147501627605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199302_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199302_H_GLOBAL.out deleted file mode 100644 index 464ddb7037af141ce4f5cac929298a706457c2b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.03399162292480469 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199302_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199302_M_GLOBAL.out deleted file mode 100644 index da3a343ff9e86ddd007f8da5944acad3d31fbc4c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199302 STATION NETCDFs -0.0341896931330363 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199303_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199303_D_GLOBAL.out deleted file mode 100644 index 8382ad8582e437bb914d37c713cc4148c6214d11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.022880983352661134 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199303_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199303_H_GLOBAL.out deleted file mode 100644 index 2c1f7147568ac0de2b48ec2743318bc742c8483a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.038375763098398845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199303_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199303_M_GLOBAL.out deleted file mode 100644 index 0e379890aa099d5e54572c2fe65885273e6c756d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199303 STATION NETCDFs -0.03707856734593709 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199304_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199304_D_GLOBAL.out deleted file mode 100644 index 4369db7418a3b7879b8459c98e2892a08918aa72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.028041088581085206 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199304_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199304_H_GLOBAL.out deleted file mode 100644 index 96ea19f72987639a608132df084ea7c219954ab2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.04719341198603312 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199304_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199304_M_GLOBAL.out deleted file mode 100644 index 780daed0bc9ad999aaf52b379a3f34cece0d5805..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199304 STATION NETCDFs -0.033012557029724124 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199305_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199305_D_GLOBAL.out deleted file mode 100644 index 939978af3b276fdb39dfb22448b7d5315ea9b827..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.04995044469833374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199305_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199305_H_GLOBAL.out deleted file mode 100644 index bcd74c2007f9a705a5a287ed728debc94bc864c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.04663344224294027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199305_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199305_M_GLOBAL.out deleted file mode 100644 index b87865952259f379579e23a7504b1de68171cc67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199305 STATION NETCDFs -0.02521752913792928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199306_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199306_D_GLOBAL.out deleted file mode 100644 index 05aea53ab4ce36b867ef21ba64c0cbd86adf3081..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.022478274504343667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199306_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199306_H_GLOBAL.out deleted file mode 100644 index 69a1186f050bc35155d85ffae9adc11c42d95780..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.04905813535054525 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199306_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199306_M_GLOBAL.out deleted file mode 100644 index 11b50782e189d2519af8f64526ab21374a596e3d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199306 STATION NETCDFs -0.020930083592732747 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199307_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199307_D_GLOBAL.out deleted file mode 100644 index dde59dbe05ceda151cf7434feba8675b748e72bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.021173171202341714 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199307_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199307_H_GLOBAL.out deleted file mode 100644 index e59da6540b772813fe8870ca183eca17297ebb6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.02359190781911214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199307_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199307_M_GLOBAL.out deleted file mode 100644 index 6af5697e63acf04e2c705e9bb86a04ec2f278b37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199307 STATION NETCDFs -0.03380499680836995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199308_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199308_D_GLOBAL.out deleted file mode 100644 index 46e8be981e30918b42044cbb50cb78ce56b9e7e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.020852406819661457 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199308_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199308_H_GLOBAL.out deleted file mode 100644 index 2e9ae2299c70864effa0bfd2e44ee1fb0dfe688f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.033471330006917314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199308_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199308_M_GLOBAL.out deleted file mode 100644 index 4b4d294db7f7832b982854451b7edf393a4d4d55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199308 STATION NETCDFs -0.036009013652801514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199309_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199309_D_GLOBAL.out deleted file mode 100644 index fb194ed939752119bb3d3ad2832e62175dcf9eaf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.026174883047739666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199309_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199309_H_GLOBAL.out deleted file mode 100644 index ec71284ad215afabfbeb505917181fd7d7a178c1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.026091225941975913 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199309_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199309_M_GLOBAL.out deleted file mode 100644 index 207f0e054481cfe83467c55e0d085becaad0bfe0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199309 STATION NETCDFs -0.02623033126195272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199310_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199310_D_GLOBAL.out deleted file mode 100644 index c4f789960f0222251722ae34ea467f17ff64ac3f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.049798786640167236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199310_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199310_H_GLOBAL.out deleted file mode 100644 index eafdca3a3a16d2a2a339b79eb59e491dab9b20f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.021555721759796143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199310_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199310_M_GLOBAL.out deleted file mode 100644 index 716c3fc2ef797bd1259bead62227bb84264b6729..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199310 STATION NETCDFs -0.02059605121612549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199311_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199311_D_GLOBAL.out deleted file mode 100644 index 1d65678c2b6fb11c3fb2abb3069232fe80150fc1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.023833445707956948 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199311_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199311_H_GLOBAL.out deleted file mode 100644 index 2286bf5afca01c133a9560bcccd9815192dddc31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.025026373068491616 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199311_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199311_M_GLOBAL.out deleted file mode 100644 index f53ea2244830824b37b36fb6485da15f3446773e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199311 STATION NETCDFs -0.023648361365000408 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199312_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199312_D_GLOBAL.out deleted file mode 100644 index d9ad22e0f589631c0d088c4e5ce9e30dd8bd45a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.02752028703689575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199312_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199312_H_GLOBAL.out deleted file mode 100644 index 745625a212c8cc4deb09dae33e70bb9e6c20c066..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.0235358198483785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199312_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199312_M_GLOBAL.out deleted file mode 100644 index 8fb00c2a9a208d801fae17252cb4a736a4aa31fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199312 STATION NETCDFs -0.029859169324239095 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199401_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199401_D_GLOBAL.out deleted file mode 100644 index 5b211c213e897ba1176920e87cad78a499af33cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.046624342600504555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199401_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199401_H_GLOBAL.out deleted file mode 100644 index debb5e785cd3bdd60828e4f1bc9640f0d15ad91c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.03300663232803345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199401_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199401_M_GLOBAL.out deleted file mode 100644 index c3da0f0433e016a254faa4fbdad9ba9d6e2ad7e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199401 STATION NETCDFs -0.049571375052134194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199402_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199402_D_GLOBAL.out deleted file mode 100644 index f88747fe785e792debbed3051132b04cc4ac4135..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.035487409432729086 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199402_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199402_H_GLOBAL.out deleted file mode 100644 index 46d180cdc5e47f03f3f9e4d293556100ae6d5bb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.04636152982711792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199402_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199402_M_GLOBAL.out deleted file mode 100644 index a85a8ecdeeba0db32724fcf1d75187c1a0e4bafb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199402 STATION NETCDFs -0.046329756577809654 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199403_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199403_D_GLOBAL.out deleted file mode 100644 index f49c2420759315cc0d93c96b614efdf217e33cba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.061289095878601076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199403_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199403_H_GLOBAL.out deleted file mode 100644 index f37b8e0b112a254607e062e889d67e78d5029faa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.05562169949213664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199403_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199403_M_GLOBAL.out deleted file mode 100644 index abd28b358653d7f521997d5dba7e26a4c0bab02b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199403 STATION NETCDFs -0.04074262777964274 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199404_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199404_D_GLOBAL.out deleted file mode 100644 index 5ec5cb4d52544e8d365db75aa36033775cbf228e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.040064239501953126 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199404_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199404_H_GLOBAL.out deleted file mode 100644 index 4d6312b8d9e8d208318b4504a717d5ac0984fe72..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.036776959896087646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199404_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199404_M_GLOBAL.out deleted file mode 100644 index 21a5fd82e0e699856dc99bf870e001c079d68a99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199404 STATION NETCDFs -0.029232521851857502 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199405_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199405_D_GLOBAL.out deleted file mode 100644 index 15307f2f9de6f1efc846664b4a6691ca28fc54e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.03216198682785034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199405_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199405_H_GLOBAL.out deleted file mode 100644 index 9a5e173042c7f257558de156487ec8939626ac8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.03297205766042074 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199405_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199405_M_GLOBAL.out deleted file mode 100644 index f38e1238018328d90cc4030b266597c3edeccc75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199405 STATION NETCDFs -0.042317577203114826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199406_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199406_D_GLOBAL.out deleted file mode 100644 index 0ac6784b1bba402b125651c6401bf75a3d5f4486..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.047934051354726157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199406_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199406_H_GLOBAL.out deleted file mode 100644 index a3175d34d02f88c34887cffe7feecc3ae8440c0a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.04181327025095622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199406_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199406_M_GLOBAL.out deleted file mode 100644 index f33f73ba2904cf5d3bea3e5543625717baf91831..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199406 STATION NETCDFs -0.03705947796503703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199407_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199407_D_GLOBAL.out deleted file mode 100644 index 86251cbcf83c2be29a7453dba4f00d1d5ba6b9a4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.05177598794301351 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199407_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199407_H_GLOBAL.out deleted file mode 100644 index 078a01239215312b1d7b36e62dad3a2f95575349..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.031946098804473876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199407_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199407_M_GLOBAL.out deleted file mode 100644 index 7d72cb5a28e00201e298da7a0a25a80f5c19d6ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199407 STATION NETCDFs -0.04049240748087565 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199408_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199408_D_GLOBAL.out deleted file mode 100644 index 37c14f43940b865db4f5717b8943deb34ce74da3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.03936714728673299 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199408_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199408_H_GLOBAL.out deleted file mode 100644 index 284106160b8730be5b9968e3a594d51815557e90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.05537489652633667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199408_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199408_M_GLOBAL.out deleted file mode 100644 index 90d06f41805209d8e397380ac2f4df8e69d9061d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199408 STATION NETCDFs -0.061690203348795575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199409_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199409_D_GLOBAL.out deleted file mode 100644 index 3c055096ed1fe586df6125970263d6c646f7373b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.040385639667510985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199409_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199409_H_GLOBAL.out deleted file mode 100644 index e4bb31b6fc3ce77ae25dc9237bcd2c1428ca5787..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.03295841614405314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199409_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199409_M_GLOBAL.out deleted file mode 100644 index c1af78d1a2d15b53c23e5079c7a9332fc88e4ba3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199409 STATION NETCDFs -0.030373859405517577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199410_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199410_D_GLOBAL.out deleted file mode 100644 index 495b05b0c7d50d664d7e587df20e61d08dc9a71e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.033534153302510576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199410_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199410_H_GLOBAL.out deleted file mode 100644 index 1c8a136ad1cca34d4e7c4c51ddc644439cf0a700..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.03066091537475586 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199410_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199410_M_GLOBAL.out deleted file mode 100644 index a35c2ecc4fd3b508b585f3f8434d249ebcbcbe80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199410 STATION NETCDFs -0.04266274372736613 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199411_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199411_D_GLOBAL.out deleted file mode 100644 index 036e1c4887dc8bcfe71a7b648bdbb38d40284e83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.03163865009943644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199411_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199411_H_GLOBAL.out deleted file mode 100644 index 42feea6129b4ac8c007cf4eea427838db907eb6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.029552698135375977 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199411_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199411_M_GLOBAL.out deleted file mode 100644 index bb56bfdeb7997b633f0a970dad0831c287898bf2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199411 STATION NETCDFs -0.05268582503000895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199412_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199412_D_GLOBAL.out deleted file mode 100644 index ae12d37937f50751fb79d5aeb51098660258a6a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.030925822257995606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199412_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199412_H_GLOBAL.out deleted file mode 100644 index 1e395a665cf3098d2c27544788d8c82102be315e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.03997558355331421 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199412_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199412_M_GLOBAL.out deleted file mode 100644 index 899a877aa90df6d3e99fe58ca10a8d3fe02e86f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199412 STATION NETCDFs -0.04256605307261149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199501_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199501_D_GLOBAL.out deleted file mode 100644 index 2f01c71c9473bdf87e254a0878b5725419ae5b47..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.054293620586395266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199501_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199501_H_GLOBAL.out deleted file mode 100644 index c309ba7dd1f9c01ca2499fc8cc76152a2db206f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.03294546604156494 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199501_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199501_M_GLOBAL.out deleted file mode 100644 index f52659b5a30d0671f00ce01d47b10557df43b9c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199501 STATION NETCDFs -0.03530466953913371 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199502_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199502_D_GLOBAL.out deleted file mode 100644 index 882241e81265934fb2f9e1d66f1869936dd26fce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.028389251232147215 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199502_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199502_H_GLOBAL.out deleted file mode 100644 index bcb82a5999b49fc16a177a11ebbddf332b617392..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.033031141757965087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199502_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199502_M_GLOBAL.out deleted file mode 100644 index 89eb5516231ac489b5a1f00a1f0a368385b38189..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199502 STATION NETCDFs -0.0479207714398702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199503_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199503_D_GLOBAL.out deleted file mode 100644 index 01c706df709546bc14a8d9f06b839ed40e764a55..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.04872626066207886 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199503_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199503_H_GLOBAL.out deleted file mode 100644 index 20f72d499db316a1a02e0d4d724a70c840ab526f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.030865554014841715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199503_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199503_M_GLOBAL.out deleted file mode 100644 index e9d253ac4debf2dda197d1516587655565d87ae9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199503 STATION NETCDFs -0.042530544598897296 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199504_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199504_D_GLOBAL.out deleted file mode 100644 index dd8605e816945431b456695d09c2f345bcbf7451..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.029134690761566162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199504_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199504_H_GLOBAL.out deleted file mode 100644 index 7cd70f0e9103728cc458103986dbb3d5404defb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.043322300910949706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199504_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199504_M_GLOBAL.out deleted file mode 100644 index e6df80eef2ee77b198b0f831f692cadd0f4cfe37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199504 STATION NETCDFs -0.031089611848195395 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199505_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199505_D_GLOBAL.out deleted file mode 100644 index 4eef16a63a03baf565c6b24b7a1755b100415318..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.04885607163111369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199505_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199505_H_GLOBAL.out deleted file mode 100644 index ba1288ce5fe23f218fa4344f063497ac3aed8ce2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.051984270413716636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199505_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199505_M_GLOBAL.out deleted file mode 100644 index b9ccd1ad12079f379eef7a30c0567d981fb3caaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199505 STATION NETCDFs -0.03128422101338704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199506_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199506_D_GLOBAL.out deleted file mode 100644 index c620401506d9edece4be3937720a5157a9f915e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.03474806547164917 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199506_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199506_H_GLOBAL.out deleted file mode 100644 index 7950ef9200ca94c68f488352e13e20dbd2554808..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.030289419492085776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199506_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199506_M_GLOBAL.out deleted file mode 100644 index 141b9fa71e238c6cecd55537c669a33366b66635..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199506 STATION NETCDFs -0.047612913449605304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199507_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199507_D_GLOBAL.out deleted file mode 100644 index f61d336fb851b8651b3ff65133f04f82fa8537b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.050071152051289876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199507_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199507_H_GLOBAL.out deleted file mode 100644 index 6fb6675bbb2294d218dc81b49da05e27d68f732f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.05211814641952515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199507_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199507_M_GLOBAL.out deleted file mode 100644 index a89592811b422b6ed728e92d7585bd23c7bb4f9c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199507 STATION NETCDFs -0.038905787467956546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199508_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199508_D_GLOBAL.out deleted file mode 100644 index d4b9007c7d95d0815041247132b40fa84715ce7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.055790054798126223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199508_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199508_H_GLOBAL.out deleted file mode 100644 index ff18db0f21500336be8cd0c34be33d2e2a1ec59e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.026318363348642983 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199508_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199508_M_GLOBAL.out deleted file mode 100644 index 59b536fdde01ff5bb78f1abe74673093a524f14b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199508 STATION NETCDFs -0.03416800896326701 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199509_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199509_D_GLOBAL.out deleted file mode 100644 index 6ffb2285674a44e54db65118f6e08262fca94852..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.03986105521519979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199509_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199509_H_GLOBAL.out deleted file mode 100644 index 87037fcae562d0a21a09cd5d02890e0c997a3101..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.044782809416453045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199509_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199509_M_GLOBAL.out deleted file mode 100644 index e4db8f8da8e668c516fa7156731b94ffcf02852f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199509 STATION NETCDFs -0.048149049282073975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199510_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199510_D_GLOBAL.out deleted file mode 100644 index f3158eb8967b86493ede78c1d40610e32e6d2d4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.03198918104171753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199510_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199510_H_GLOBAL.out deleted file mode 100644 index d7c0a24437dffbcb6e0adaba879d1ff03d13bd8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.04619698127110799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199510_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199510_M_GLOBAL.out deleted file mode 100644 index b5451d3e0f8f290af016ac40c9dbd8e56c282297..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199510 STATION NETCDFs -0.05533738931020101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199511_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199511_D_GLOBAL.out deleted file mode 100644 index 14e20648097f2abca15a22034efe8788801d7e52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.030348340670267742 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199511_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199511_H_GLOBAL.out deleted file mode 100644 index 36dc3b7b16d9aeb125ae06a4e60567b8f988df46..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.03688805103302002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199511_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199511_M_GLOBAL.out deleted file mode 100644 index d1b5658f08b009c67b26a3a0ba7171791884cb30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199511 STATION NETCDFs -0.04063394864400228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199512_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199512_D_GLOBAL.out deleted file mode 100644 index 6bcb18edae51edcea0659f85260fc5819fb764ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.040727682908376056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199512_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199512_H_GLOBAL.out deleted file mode 100644 index 21e50fb0ada3ffcc831352035f5028859b971ca3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.028616666793823242 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199512_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199512_M_GLOBAL.out deleted file mode 100644 index f30c2a8d4c42961305d801c5f9a8af921027fdf4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199512 STATION NETCDFs -0.04262806574503581 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199601_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199601_D_GLOBAL.out deleted file mode 100644 index 146e2b7b143e5cc063efe22ff949eaedbe868d87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.04230635166168213 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199601_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199601_H_GLOBAL.out deleted file mode 100644 index 8c2e2bcf1832ec5951d5352065029a0764d4e603..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.03751579523086548 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199601_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199601_M_GLOBAL.out deleted file mode 100644 index f007021a5037f6865e6623ed00726a5c9778838b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199601 STATION NETCDFs -0.02715621789296468 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199602_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199602_D_GLOBAL.out deleted file mode 100644 index 9546365ba88728e250ee31f7fb72a1fafe51a8f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.029724419116973877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199602_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199602_H_GLOBAL.out deleted file mode 100644 index 9f5d042952ca81b520722b8c56b48dbc702df489..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.027481035391489664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199602_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199602_M_GLOBAL.out deleted file mode 100644 index 96f6695fa713140e9d48e7483f2d8a98cceca7a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199602 STATION NETCDFs -0.03610390822092692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199603_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199603_D_GLOBAL.out deleted file mode 100644 index 205a225a36ed2e5ee54af013aea720437f61e36e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.027466670672098795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199603_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199603_H_GLOBAL.out deleted file mode 100644 index 2e69e2c543ae17469e82366f4664d4ac5b60fdc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.026400522391001383 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199603_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199603_M_GLOBAL.out deleted file mode 100644 index cf565a8c7d12b27ae9b5944dcec98e12443759f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199603 STATION NETCDFs -0.03573634624481201 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199604_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199604_D_GLOBAL.out deleted file mode 100644 index 3b11a884e152ef69335d99fd7444624feea3301f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.02780119180679321 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199604_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199604_H_GLOBAL.out deleted file mode 100644 index c1bff34ef9e3548d0b1a5c0244d8135758b536ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.03447386423746745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199604_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199604_M_GLOBAL.out deleted file mode 100644 index e715f500fe3b9891169a89e90f0215bf07989e54..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199604 STATION NETCDFs -0.029543161392211914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199605_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199605_D_GLOBAL.out deleted file mode 100644 index c3295f17559abd41dba14eac3c90b25ff6cd25f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.0318867286046346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199605_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199605_H_GLOBAL.out deleted file mode 100644 index 721de95fb575f01e3bcbb506fdf6d6eb6cf6ca91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.03049392302831014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199605_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199605_M_GLOBAL.out deleted file mode 100644 index 1a41ffe98f4d42105614a65d47be1bbd571ac84a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199605 STATION NETCDFs -0.05428027709325155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199606_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199606_D_GLOBAL.out deleted file mode 100644 index 4e4a37f6e3443bac3b67bc96381b6e5631f693c9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.04955516258875529 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199606_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199606_H_GLOBAL.out deleted file mode 100644 index 2191b501ff718ed802affa417253b21f310de518..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.04883086681365967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199606_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199606_M_GLOBAL.out deleted file mode 100644 index 89ab1d2dd77df79888993d6263ec84450a487d33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199606 STATION NETCDFs -0.034769920508066814 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199607_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199607_D_GLOBAL.out deleted file mode 100644 index daeab0d693df7a10d0821604549b4d39835c9538..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.05508698225021362 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199607_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199607_H_GLOBAL.out deleted file mode 100644 index b9726234d37a68b57602eb4a5c13d0ba02a9e14f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.0438801646232605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199607_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199607_M_GLOBAL.out deleted file mode 100644 index 459ff2edb73b3345fb40ddfd4e39a0d0b61e5795..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199607 STATION NETCDFs -0.050216046969095866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199608_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199608_D_GLOBAL.out deleted file mode 100644 index 448c762fcfa4e5e1691da3696ef8327146fd72dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.0479665478070577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199608_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199608_H_GLOBAL.out deleted file mode 100644 index 252051e7a778e2597d0e1710defe56c172561515..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.038301976521809895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199608_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199608_M_GLOBAL.out deleted file mode 100644 index 905bd2fda812a91033480b0998a26bb3810bc0c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199608 STATION NETCDFs -0.05394152800242106 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199609_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199609_D_GLOBAL.out deleted file mode 100644 index 40c6ec1416cfbf738e8daa61d13e7a9303c9188a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.05808282693227132 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199609_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199609_H_GLOBAL.out deleted file mode 100644 index 871aa558b0a317d398375b916f3339de7acb3329..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.04940149386723836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199609_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199609_M_GLOBAL.out deleted file mode 100644 index 0e8aa820fc58ab42577a5cc79fdfca08bf8f2522..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199609 STATION NETCDFs -0.032178831100463864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199610_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199610_D_GLOBAL.out deleted file mode 100644 index 4e3bb98c370babb15c2e58500c8d31ea6cecfd88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.042029424508412676 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199610_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199610_H_GLOBAL.out deleted file mode 100644 index 3c0af88e058edf9a7a36275b01433914cf997f60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.03845227559407552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199610_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199610_M_GLOBAL.out deleted file mode 100644 index 9d45413ee4488c00d8b7d21b4eb7f1fb8912cfc0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199610 STATION NETCDFs -0.03685173193613688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199611_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199611_D_GLOBAL.out deleted file mode 100644 index 4ef5c0fa6c11b89e894b8f61f96ec09aecd953a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.04631774028142293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199611_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199611_H_GLOBAL.out deleted file mode 100644 index ed98df5b791d871147b559ac839063ea5647b3b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.037174904346466066 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199611_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199611_M_GLOBAL.out deleted file mode 100644 index e4a4d087cb24a08cbe8dfb766a674412d44f7446..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199611 STATION NETCDFs -0.04929185310999552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199612_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199612_D_GLOBAL.out deleted file mode 100644 index 6db333498af01bfdd0083a9ecc5a905ea4cd637c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.040554551283518474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199612_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199612_H_GLOBAL.out deleted file mode 100644 index 06654e6a5bbd2696ac18325c045853b6188ff8e9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.04988041321436564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199612_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199612_M_GLOBAL.out deleted file mode 100644 index ba48521c0c4d9c104a060e5e8f4626a35dc9b421..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199612 STATION NETCDFs -0.04660717646280924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199701_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199701_D_GLOBAL.out deleted file mode 100644 index cf08c3bd2983237d07c124cdcca0aeccaff8d5e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.04725625514984131 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199701_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199701_H_GLOBAL.out deleted file mode 100644 index 00df51110fbe034e7232877e299c272643f38c2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.0333961288134257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199701_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199701_M_GLOBAL.out deleted file mode 100644 index 298da7e1abbca1d56b4b259de69a402b701c45f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199701 STATION NETCDFs -0.037060097853342695 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199702_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199702_D_GLOBAL.out deleted file mode 100644 index a9ee88168e9213a76b96cdaa3decc4aed4e08b0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.03633271455764771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199702_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199702_H_GLOBAL.out deleted file mode 100644 index f2d4466d2a2d6c603af6faf99ae255ba2d686011..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.05613113244374593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199702_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199702_M_GLOBAL.out deleted file mode 100644 index ea3931a2f577bec100f345276f155b4b0000df60..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199702 STATION NETCDFs -0.04063345591227214 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199703_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199703_D_GLOBAL.out deleted file mode 100644 index d8b1e76788fe6f624c9f87226a53db1cecafde93..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.032984912395477295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199703_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199703_H_GLOBAL.out deleted file mode 100644 index e29cd0150db6b0d506f950442244721d5f5c48cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.03836355606714884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199703_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199703_M_GLOBAL.out deleted file mode 100644 index 825cbca1954c0c764a47b63bd1da0f425d58ead9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199703 STATION NETCDFs -0.043976740042368574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199704_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199704_D_GLOBAL.out deleted file mode 100644 index 57d8a9707847878fb214ff768be24fefce831489..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.04945693810780843 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199704_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199704_H_GLOBAL.out deleted file mode 100644 index bf9a29b9cf449d45d2b55ec23ff514b8902f56ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.04675851265589396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199704_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199704_M_GLOBAL.out deleted file mode 100644 index e5cb3a1a88f15240e97feed714d336ec9b4b551d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199704 STATION NETCDFs -0.04406776825586955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199705_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199705_D_GLOBAL.out deleted file mode 100644 index 7d4132a82fccb36d0a50348493232616dfafad8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.06533682743708293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199705_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199705_H_GLOBAL.out deleted file mode 100644 index dfcc280bc6887bae9353f5cf9e24c2a2a5f2ff08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.03731357256571452 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199705_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199705_M_GLOBAL.out deleted file mode 100644 index 98738cbd38af8afa49f384b487233057b235e57c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199705 STATION NETCDFs -0.034169920285542804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199706_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199706_D_GLOBAL.out deleted file mode 100644 index b4c8b23a65c0e0544dd272352c46828c686e40b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.03635902404785156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199706_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199706_H_GLOBAL.out deleted file mode 100644 index f34df506d9a1d24fb6dce70c458bbc1fdd409bdc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.05214044650395711 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199706_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199706_M_GLOBAL.out deleted file mode 100644 index f8d22f783cb22dbe17b4b8ec5bfc08fe756751ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199706 STATION NETCDFs -0.03141866127649943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199707_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199707_D_GLOBAL.out deleted file mode 100644 index 186a98ff1918bd281896d1119d230b8c22d64e11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.053902538617451985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199707_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199707_H_GLOBAL.out deleted file mode 100644 index 7baf2984d4e683df913f2dc33c21339939753968..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.040549989541371664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199707_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199707_M_GLOBAL.out deleted file mode 100644 index 77755a688a6b438734f1ca455e8116f0483614a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199707 STATION NETCDFs -0.037189292907714847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199708_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199708_D_GLOBAL.out deleted file mode 100644 index c7c5e9ee8195d2b7e47bb3840765a9018ccbfaae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.0418642520904541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199708_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199708_H_GLOBAL.out deleted file mode 100644 index 3840aab7f28e2aa9a20165b3dd46e8d65cc488b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.03918223778406779 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199708_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199708_M_GLOBAL.out deleted file mode 100644 index 5f769ea6290d208346ce145544037c5818da6edc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199708 STATION NETCDFs -0.05312265157699585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199709_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199709_D_GLOBAL.out deleted file mode 100644 index 0ca6eb6a5b24a576fe91a3483bea4668486dee5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.03677788972854614 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199709_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199709_H_GLOBAL.out deleted file mode 100644 index ab70e9e43530ce47c0bfb8749272beca8c316c2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.03147027095158895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199709_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199709_M_GLOBAL.out deleted file mode 100644 index 25bfd8c12a4a9988f3ea216a2c5bd9ff18e76a1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199709 STATION NETCDFs -0.043025656541188555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199710_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199710_D_GLOBAL.out deleted file mode 100644 index e7a004fcf1044e5510a2fbb41b15ea93678c4eb1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.04519102573394775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199710_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199710_H_GLOBAL.out deleted file mode 100644 index 881188740416eb0bd43ba358caab6641e7589f74..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.057139885425567624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199710_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199710_M_GLOBAL.out deleted file mode 100644 index 44d7f37c0905c7b9adbbc8f3deedf55e6fd4fa25..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199710 STATION NETCDFs -0.038246711095174156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199711_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199711_D_GLOBAL.out deleted file mode 100644 index 3b81fd0250e82471be313eef3ee618ddb6cfdda9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.04695385694503784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199711_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199711_H_GLOBAL.out deleted file mode 100644 index 7df173808553e7bac35f0087026c2d681554b619..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.0343683918317159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199711_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199711_M_GLOBAL.out deleted file mode 100644 index 74684c8a9cf2d7ebdbbcd86dad62bd7edc74d168..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199711 STATION NETCDFs -0.034770039717356364 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199712_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199712_D_GLOBAL.out deleted file mode 100644 index 1162cb5f3c86fb96da59486635ed6981f03a512c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.05610112349192301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199712_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199712_H_GLOBAL.out deleted file mode 100644 index 6be7005e998e64d7d94b6f5926e50760b1a68b0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.03751033941904704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199712_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199712_M_GLOBAL.out deleted file mode 100644 index 1fc2029b333036b191d0d8c37f2a6cf6b0199f7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199712 STATION NETCDFs -0.03815935850143433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199801_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199801_D_GLOBAL.out deleted file mode 100644 index fd1f0812a5fe93a8c87a5026f3d4e5394df0ea22..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.0484927773475647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199801_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199801_H_GLOBAL.out deleted file mode 100644 index 2b64b89b12b8407b9b8a42031873276557cb1982..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.041167863210042316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199801_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199801_M_GLOBAL.out deleted file mode 100644 index 73b27fc9345b2b2fb27c774938f51ab66623851f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199801 STATION NETCDFs -0.04895018736521403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199802_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199802_D_GLOBAL.out deleted file mode 100644 index 1a8738386bcdc1a1511e08d8974a3d8207112ccc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.04154036045074463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199802_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199802_H_GLOBAL.out deleted file mode 100644 index 7336729c460e1ee362bd51cbc74c9fbde1ed2286..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.046900216738382974 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199802_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199802_M_GLOBAL.out deleted file mode 100644 index 0d741755c73363b6bbd6953b80998d366bc65979..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199802 STATION NETCDFs -0.05474885702133179 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199803_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199803_D_GLOBAL.out deleted file mode 100644 index 35a4e86a97f076f52e1b1c8082040afa5ba6db1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.05059629281361898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199803_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199803_H_GLOBAL.out deleted file mode 100644 index 6adffa47d017b3fba12b05df9206e195f3156fc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.03403635025024414 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199803_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199803_M_GLOBAL.out deleted file mode 100644 index 74b4f267c918cd6283ebc51a5f9023833d635a5c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199803 STATION NETCDFs -0.05287339687347412 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199804_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199804_D_GLOBAL.out deleted file mode 100644 index e6611c00cbf89c5017b1dd21463f9e2731dcbfd4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.05244895617167155 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199804_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199804_H_GLOBAL.out deleted file mode 100644 index acde24fb07c729c4f715c77dc8d7c20c86962566..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.04880990982055664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199804_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199804_M_GLOBAL.out deleted file mode 100644 index 6be9adf3f54caceb227299668e33a3b08e645ebb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199804 STATION NETCDFs -0.0573874831199646 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199805_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199805_D_GLOBAL.out deleted file mode 100644 index 715da2f6eb5009b818ef08b4f5f711088aad7501..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.04452691078186035 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199805_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199805_H_GLOBAL.out deleted file mode 100644 index 45aea10648c1abd128e2748a448a25edb1330a02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.03820599714914958 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199805_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199805_M_GLOBAL.out deleted file mode 100644 index 9f2431f755f53701a7713058962ec9c16ffbdd03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199805 STATION NETCDFs -0.046311322848002115 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199806_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199806_D_GLOBAL.out deleted file mode 100644 index 525ceae159dae2377604f65534ca8ada7b8f6692..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.040997401873270674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199806_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199806_H_GLOBAL.out deleted file mode 100644 index 76701e9cdc54d0e1b6901334bce1fdb21004e706..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.05391135613123576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199806_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199806_M_GLOBAL.out deleted file mode 100644 index 2b21df591fbf8eb30c6b966a96f609d34c238673..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199806 STATION NETCDFs -0.03731480042139689 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199807_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199807_D_GLOBAL.out deleted file mode 100644 index c18e5759ce5de05f87bc271b14932a12b6d8c184..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.037662700812021895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199807_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199807_H_GLOBAL.out deleted file mode 100644 index 1b1333019e35c56ce2c42d3ba53d1cf1db20e6f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.03530925909678141 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199807_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199807_M_GLOBAL.out deleted file mode 100644 index ea0b41533861abb6a31a76e0311d803b0a4deb6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199807 STATION NETCDFs -0.04346524477005005 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199808_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199808_D_GLOBAL.out deleted file mode 100644 index beb2c870917f4892774c70aa47e05ce742e7fd52..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.05631411075592041 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199808_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199808_H_GLOBAL.out deleted file mode 100644 index 7f6525e3a2b9508477157dbdf59b5b3a7d9a25b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.03364948034286499 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199808_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199808_M_GLOBAL.out deleted file mode 100644 index c2446bc20798202de8c28c50d5c6349b44ea0f23..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199808 STATION NETCDFs -0.05563961267471314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199809_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199809_D_GLOBAL.out deleted file mode 100644 index c0ba6179e75bb2fc82679f6298fcc168bad50873..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.05492343902587891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199809_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199809_H_GLOBAL.out deleted file mode 100644 index 4a16fadfafa51dc7f630a08f1d5a76656b936a24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.07029331127802531 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199809_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199809_M_GLOBAL.out deleted file mode 100644 index eedbddb3f8b946d50ba8e46d3620bd48f2b8357e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199809 STATION NETCDFs -0.04112577040990194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199810_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199810_D_GLOBAL.out deleted file mode 100644 index a4c7912644249b47b7f65a5cebe52d80ebc44ad0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.05779274304707845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199810_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199810_H_GLOBAL.out deleted file mode 100644 index 52c52e282972c5b5368623877459048045bf3eaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.04259850184122722 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199810_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199810_M_GLOBAL.out deleted file mode 100644 index 5b3a258cfb310b0f386c8da7a8abd4f6b85c5a9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199810 STATION NETCDFs -0.04322249889373779 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199811_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199811_D_GLOBAL.out deleted file mode 100644 index dc324a188de60a57e66e3f115fdabd7d528fe3b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.04376566012700399 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199811_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199811_H_GLOBAL.out deleted file mode 100644 index a547b1bdab4834e7e39671d01ca1217148775eca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.047125248114267985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199811_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199811_M_GLOBAL.out deleted file mode 100644 index b4653bdd1f167c2c70deb2451ad00968e715b100..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199811 STATION NETCDFs -0.04041275183359782 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199812_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199812_D_GLOBAL.out deleted file mode 100644 index 82fdf8364f1302ba3a97ef921c209e98262a90d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.05765816370646159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199812_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199812_H_GLOBAL.out deleted file mode 100644 index 6e109273b705505965b2cd2d91a86629bbcb2cd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.0424970547358195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199812_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199812_M_GLOBAL.out deleted file mode 100644 index 8a4d74313ce468384422d3c7eb1fed91a185b94f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199812 STATION NETCDFs -0.05757447878519694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199901_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199901_D_GLOBAL.out deleted file mode 100644 index 678f49a1ee1d7e1341e0b5ce0d40331adce66914..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.051171461741129555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199901_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199901_H_GLOBAL.out deleted file mode 100644 index aad8d1283b893641140d998b9c37af7cb1d42fe6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.03155218362808228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199901_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199901_M_GLOBAL.out deleted file mode 100644 index 4067fae73651289311aac44e76ab2f062269978c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199901 STATION NETCDFs -0.04304968516031901 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199902_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199902_D_GLOBAL.out deleted file mode 100644 index 11c23a65c170b73e64e1e5c1ce5fbe761a86730b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.03842995166778564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199902_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199902_H_GLOBAL.out deleted file mode 100644 index ab5f74df4b65721c6df08c5d5ce3515a9a8cdd2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.03998330036799113 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199902_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199902_M_GLOBAL.out deleted file mode 100644 index 2b410efceb147df04078b88661692cb3664905a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199902 STATION NETCDFs -0.05542064905166626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199903_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199903_D_GLOBAL.out deleted file mode 100644 index 170e730e706d2d356346e6577e6067fb5aeda218..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.03991786241531372 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199903_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199903_H_GLOBAL.out deleted file mode 100644 index 3d7101f8a684c15a2de6b0630a72c577807f57bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.037045602003733316 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199903_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199903_M_GLOBAL.out deleted file mode 100644 index 3948cc4c42bc540216391a61e6a9f2d055e0dd51..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199903 STATION NETCDFs -0.034116689364115396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199904_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199904_D_GLOBAL.out deleted file mode 100644 index 69001830b6fcb4b36d4c70cb31f0ade7de1267c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.05736071268717448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199904_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199904_H_GLOBAL.out deleted file mode 100644 index fd6dc4f9a8c6d3460fc3a12f07fddfddb3b73fb4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.03881192207336426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199904_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199904_M_GLOBAL.out deleted file mode 100644 index 0f6e89175182da6a865af586a25ba0af86bb0fee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199904 STATION NETCDFs -0.046311386426289874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199905_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199905_D_GLOBAL.out deleted file mode 100644 index 552f3a2a5614ad6e400904430a52e5f0fa009edb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.05482085148493449 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199905_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199905_H_GLOBAL.out deleted file mode 100644 index f38d6d7f73df2c4c9ffa81461f59222eca5ce249..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.06121761798858642 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199905_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199905_M_GLOBAL.out deleted file mode 100644 index 58cf79b843bb9cfcbab74b6d685e1ec4d4a86579..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199905 STATION NETCDFs -0.05846989154815674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199906_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199906_D_GLOBAL.out deleted file mode 100644 index 7a1ada7af550a8becc2ef6440c0dd113ab610a63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.06140929857889811 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199906_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199906_H_GLOBAL.out deleted file mode 100644 index 6e748c4f6ae0c211dc8c6425a3d169e124bc869c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.040385607878367105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199906_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199906_M_GLOBAL.out deleted file mode 100644 index 109538d4aedc9158e773efb358602643e27da692..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199906 STATION NETCDFs -0.05032831033070882 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199907_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199907_D_GLOBAL.out deleted file mode 100644 index 33db8e955ed755e2d348e0d05c301ff7b284c067..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.05299886465072632 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199907_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199907_H_GLOBAL.out deleted file mode 100644 index 05388d5f9ce67cbc7f2d9a79b1365d64a3dbabb2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.043735170364379884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199907_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199907_M_GLOBAL.out deleted file mode 100644 index 985263f5b34332be7b99b8ebe48e3b216abb821a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199907 STATION NETCDFs -0.056140653292338055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199908_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199908_D_GLOBAL.out deleted file mode 100644 index 8e570900b7f179a7923665a227d7a15dc7b9b033..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.042176695664723714 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199908_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199908_H_GLOBAL.out deleted file mode 100644 index e62a5a673d97bbcf4248d8db2439baddaf2906fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.04745167891184489 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199908_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199908_M_GLOBAL.out deleted file mode 100644 index f39bf9a98313c3b2a0290a6110b68e04b1230d13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199908 STATION NETCDFs -0.039923628171284996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199909_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199909_D_GLOBAL.out deleted file mode 100644 index a5f3b9d93cf40ed95d09915d10c932280b24af03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.061610313256581624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199909_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199909_H_GLOBAL.out deleted file mode 100644 index 88b92c055f72a0eca061141db6904a901a871d28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.053028535842895505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199909_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199909_M_GLOBAL.out deleted file mode 100644 index 8b746a68b9cc9d7e30f4787a812f9099be77737f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199909 STATION NETCDFs -0.0465691606203715 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199910_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199910_D_GLOBAL.out deleted file mode 100644 index 20d7ca3a5657cbfe45ac17f24d5fc5fe448a379a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.051466759045918783 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199910_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199910_H_GLOBAL.out deleted file mode 100644 index f8ab3266dcc46b12fc8041b65a898a115314a97d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.05248110294342041 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199910_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199910_M_GLOBAL.out deleted file mode 100644 index d462fa5e905db95c24a55e86b49f37bcd9a10409..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199910 STATION NETCDFs -0.05655699173609416 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199911_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199911_D_GLOBAL.out deleted file mode 100644 index 7d475fd904d7239038b969bd2513ea842295f18e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.04122280279795329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199911_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199911_H_GLOBAL.out deleted file mode 100644 index a65d33177130af258669b5970a6e0b97b68261b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.049781835079193114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199911_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199911_M_GLOBAL.out deleted file mode 100644 index 4db5bf54f1c9c264091d67ad100129df73a556e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199911 STATION NETCDFs -0.048722330729166666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199912_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199912_D_GLOBAL.out deleted file mode 100644 index f9a63ae21a149a65e59444e77aa6397f9570fff7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.06501731872558594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199912_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199912_H_GLOBAL.out deleted file mode 100644 index 758f5987f7e3d905ea4b610980322f7509e2747d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.046890779336293535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_199912_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_199912_M_GLOBAL.out deleted file mode 100644 index aaf2f51ce958c4e1a949a272be00244591118a15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_199912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 199912 STATION NETCDFs -0.04990321397781372 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200001_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200001_D_GLOBAL.out deleted file mode 100644 index 4b3cb90037bcd84b1ad22041be34380072001d7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.062148332595825195 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200001_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200001_H_GLOBAL.out deleted file mode 100644 index 1663faac8ade63eb8416e5e879576106a92d1e76..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.05172633727391561 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200001_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200001_M_GLOBAL.out deleted file mode 100644 index a04c6e2b202d59d6dc97c3548ededabd2589be1b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200001 STATION NETCDFs -0.04174345334370931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200002_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200002_D_GLOBAL.out deleted file mode 100644 index f8ccc1924633e9bf73362ab84f2840de34b1184e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.05772481362024943 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200002_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200002_H_GLOBAL.out deleted file mode 100644 index d33e23d89253228da402938a7b756f37edd2f2d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.07241637309392293 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200002_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200002_M_GLOBAL.out deleted file mode 100644 index 93e49d0d0f2aeefb58b7968f62cecb4af12b661a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200002 STATION NETCDFs -0.061047891775767006 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200003_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200003_D_GLOBAL.out deleted file mode 100644 index 653f6c1bab7e4047814468731497b98badb83bb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.05919029712677002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200003_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200003_H_GLOBAL.out deleted file mode 100644 index bc66e5a2397943c815267c694e565053e929173e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.058464916547139485 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200003_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200003_M_GLOBAL.out deleted file mode 100644 index e2e3f8f839ae7daf05ce40161aab814146d867a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200003 STATION NETCDFs -0.05969359079996745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200004_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200004_D_GLOBAL.out deleted file mode 100644 index 2a3aa986756b63843013d093af7f847a85d9c5cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.05381023486455282 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200004_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200004_H_GLOBAL.out deleted file mode 100644 index 96ab9e8c26edb954e0c18b2f6d29cc879a24ce5e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.05524522066116333 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200004_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200004_M_GLOBAL.out deleted file mode 100644 index 2e9f2cd1dde4a78ef953ab9e87d1ea7e423a8801..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200004 STATION NETCDFs -0.058954477310180664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200005_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200005_D_GLOBAL.out deleted file mode 100644 index 9b76d827e80ffe72cfc37a1337902bc8f1322ff6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.06521014372507732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200005_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200005_H_GLOBAL.out deleted file mode 100644 index 1066ee8d8d3ada81aafe544f3d9123edfe609bc4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.07245093584060669 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200005_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200005_M_GLOBAL.out deleted file mode 100644 index 865435581add28f1020b152db04f16c1ac50f31d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200005 STATION NETCDFs -0.05329369306564331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200006_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200006_D_GLOBAL.out deleted file mode 100644 index 3fd8acdfe0f512ee9d5033f9be811649190326a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.04252074162165324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200006_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200006_H_GLOBAL.out deleted file mode 100644 index 499ed68d1559e7618d7e0b5385ebe820fe083d04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.05901957750320434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200006_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200006_M_GLOBAL.out deleted file mode 100644 index c903aecbeebb21edced7f7d294679996955d4e61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200006 STATION NETCDFs -0.07085882822672526 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200007_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200007_D_GLOBAL.out deleted file mode 100644 index f6217db147f22d691b22d03cb9eb046ec9c526a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.056524749596913657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200007_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200007_H_GLOBAL.out deleted file mode 100644 index 997d1180d43b9741373c270ba85fb67f9ba55889..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.03461186091105143 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200007_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200007_M_GLOBAL.out deleted file mode 100644 index eb680253ab8d7520e9270a640157d763921dadc8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200007 STATION NETCDFs -0.038106365998586016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200008_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200008_D_GLOBAL.out deleted file mode 100644 index d5096737d72fb76dfa8a5d09b5130613897b5742..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.03905941247940063 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200008_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200008_H_GLOBAL.out deleted file mode 100644 index 2cc937aa36c4041e562776fed60dd538ad6fe61b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.07434454361597696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200008_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200008_M_GLOBAL.out deleted file mode 100644 index d726961a2de4ec524db79929313f6e76d5f1b0d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200008 STATION NETCDFs -0.045378708839416505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200009_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200009_D_GLOBAL.out deleted file mode 100644 index 09430136d09cca2adb912d7f6966820861b941fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.057754913965861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200009_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200009_H_GLOBAL.out deleted file mode 100644 index 581e94bde1be4a015116d4968a1a7d0404fa2820..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.04015316168467204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200009_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200009_M_GLOBAL.out deleted file mode 100644 index 5330abd0bea05aef1b84971fea02dbf23a2ef262..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200009 STATION NETCDFs -0.07451864083607991 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200010_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200010_D_GLOBAL.out deleted file mode 100644 index ee0443684ca958646f8b39e47b183500b2296ef1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.043488963445027666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200010_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200010_H_GLOBAL.out deleted file mode 100644 index 4cc80a91221074db740810a55931199b0e0aa308..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.04967599312464396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200010_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200010_M_GLOBAL.out deleted file mode 100644 index a29ed15b67bfcc6b7c954b6e3a08351bec6a0c03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200010 STATION NETCDFs -0.07632441123326619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200011_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200011_D_GLOBAL.out deleted file mode 100644 index db451ca38d7fae747781ec0d3de03a7d6676cb80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.07018224795659384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200011_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200011_H_GLOBAL.out deleted file mode 100644 index 1de70092836cafff6d066efc7aea2ed4677a5454..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.0455941359202067 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200011_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200011_M_GLOBAL.out deleted file mode 100644 index d9461f1e14bb15c682681f33ed79cbeafb59ad27..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200011 STATION NETCDFs -0.06363114118576049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200012_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200012_D_GLOBAL.out deleted file mode 100644 index 307cf0e9df1abd95aadba404326ee0b3e63138ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.04846045176188151 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200012_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200012_H_GLOBAL.out deleted file mode 100644 index fb8198253145ca4d06f90390a268cb8ed059790a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.056384813785552976 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200012_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200012_M_GLOBAL.out deleted file mode 100644 index 53780f2eb0f6be0adcafd6462169b78b3cbab357..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200012 STATION NETCDFs -0.045679903030395506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200101_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200101_D_GLOBAL.out deleted file mode 100644 index 609e9d8e9b5c48774e3dcef69706aa2edf06b456..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.05587435166041056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200101_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200101_H_GLOBAL.out deleted file mode 100644 index dedf5aaac4999d7bb4cff155760650ce648edce1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.0424075444539388 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200101_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200101_M_GLOBAL.out deleted file mode 100644 index 53f3fc938eba3d2359821908e58f080807ae468e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200101 STATION NETCDFs -0.04042789538701375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200102_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200102_D_GLOBAL.out deleted file mode 100644 index 0c679418b1942bbca9c0aa09200bfe5f9cc00774..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.06488587061564127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200102_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200102_H_GLOBAL.out deleted file mode 100644 index 7925baac3049f67bc25411917589fc62da946483..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.06468356450398763 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200102_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200102_M_GLOBAL.out deleted file mode 100644 index ce0dca1aba00bc79480bec80ff51fb9bf6fa55a0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200102 STATION NETCDFs -0.046979041894276936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200103_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200103_D_GLOBAL.out deleted file mode 100644 index f4737286def5646c144e87789b91582397538582..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.044029800097147624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200103_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200103_H_GLOBAL.out deleted file mode 100644 index 2b30c629acfa55ef041a0ae97c4f3e0ab70b6756..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.039492313067118326 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200103_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200103_M_GLOBAL.out deleted file mode 100644 index a6c641bd7e244ba267197da00622c1aab084b85f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200103 STATION NETCDFs -0.06767828067143758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200104_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200104_D_GLOBAL.out deleted file mode 100644 index d6754cddb1c23f2d7785b32d8403753d440b80fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.06607255140940348 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200104_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200104_H_GLOBAL.out deleted file mode 100644 index 04731145d2f1ce15f12140511a10112bdfd13fa7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.061268357435862224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200104_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200104_M_GLOBAL.out deleted file mode 100644 index 562a1dcf37cbac7fca1f430d50e3811f0617a2f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200104 STATION NETCDFs -0.06026213169097901 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200105_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200105_D_GLOBAL.out deleted file mode 100644 index b77fb729f7bdf80ec894306f224757c96b181ea4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.05619039535522461 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200105_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200105_H_GLOBAL.out deleted file mode 100644 index e4d8ee62c34ab9593fd77118c4c0cb633de9080b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.040019492308298744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200105_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200105_M_GLOBAL.out deleted file mode 100644 index 9e824a3c1b98f2ec8eb8093aa8dafe69f1e8cc40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200105 STATION NETCDFs -0.05698259274164836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200106_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200106_D_GLOBAL.out deleted file mode 100644 index 164a73c4d7da0ea7001585a94979dcb1c4af6f31..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.05071434179941813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200106_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200106_H_GLOBAL.out deleted file mode 100644 index 1d0ef4ca7576165105faca00aa7201345c76d9ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.05976353089014689 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200106_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200106_M_GLOBAL.out deleted file mode 100644 index f653c68a7844f9d551af068506ae091212de98f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200106 STATION NETCDFs -0.0476870854695638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200107_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200107_D_GLOBAL.out deleted file mode 100644 index 920d312ced415cafbb48becb426ab0fa52772ac5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.061323551336924235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200107_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200107_H_GLOBAL.out deleted file mode 100644 index ca862ab8ca1ea60217af0619120ebe67af5bae67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.037079175313313804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200107_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200107_M_GLOBAL.out deleted file mode 100644 index 1c0e30c8bf70eb48a6acd7457d1dc4e470c598d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200107 STATION NETCDFs -0.039726110299428304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200108_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200108_D_GLOBAL.out deleted file mode 100644 index ae91ea25674fccb569ba5b70dfa25b97bcece942..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.05963836113611857 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200108_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200108_H_GLOBAL.out deleted file mode 100644 index 333176ba9e397e6a9e3430c541de9c04d2782195..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.049613054593404135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200108_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200108_M_GLOBAL.out deleted file mode 100644 index 4fb696d456306443b1e01154de58ed4ed9c023ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200108 STATION NETCDFs -0.0664516568183899 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200109_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200109_D_GLOBAL.out deleted file mode 100644 index a70bdc8af4bfe3804c6b6463f292b99d3fc92d02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.06227312882741292 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200109_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200109_H_GLOBAL.out deleted file mode 100644 index 09409aa910bfe676fc48da31b3ae1daf3372bd95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.064437735080719 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200109_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200109_M_GLOBAL.out deleted file mode 100644 index ee8edb74d9b774e4deb96bf55e22942d81706693..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200109 STATION NETCDFs -0.04158647060394287 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200110_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200110_D_GLOBAL.out deleted file mode 100644 index fda7529cbe7587a74e48e2f341f5043609d8dd4f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.07856232722600301 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200110_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200110_H_GLOBAL.out deleted file mode 100644 index 6af913767664e9f225782af25dbf3b10196d2885..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.05758865276972453 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200110_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200110_M_GLOBAL.out deleted file mode 100644 index eee9f86a44b4eab3787c1bf5b2c9f585cf68e018..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200110 STATION NETCDFs -0.04056069850921631 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200111_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200111_D_GLOBAL.out deleted file mode 100644 index 723917eebf1515b593c034064c2052cff74b39e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.06875335772832235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200111_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200111_H_GLOBAL.out deleted file mode 100644 index f4885ba6b70ba7108de9fa8a86b2b2c6348e96b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.04079516728719076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200111_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200111_M_GLOBAL.out deleted file mode 100644 index 1c914024bf1a4c5bbe66c90826230d48582a1ced..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200111 STATION NETCDFs -0.04750986893971761 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200112_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200112_D_GLOBAL.out deleted file mode 100644 index e47575f101b04bcd4880920c8e42a2f4ee69dede..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.06290565729141236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200112_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200112_H_GLOBAL.out deleted file mode 100644 index e5f9d267c279d62079ae322681f108d9d88f6854..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.07047126690546672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200112_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200112_M_GLOBAL.out deleted file mode 100644 index 8cc912adbbd50831b79554c83680da25c1c383e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200112 STATION NETCDFs -0.08322069644927979 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200201_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200201_D_GLOBAL.out deleted file mode 100644 index b68f712a58d1408ee15b4dc4c81aded418a726e6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.06468495527903238 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200201_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200201_H_GLOBAL.out deleted file mode 100644 index 8df4eac5da2fa10311104458379d8ab79c98f0dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.06731131871541342 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200201_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200201_M_GLOBAL.out deleted file mode 100644 index 467816f636f174009593d9b60686b3773dc68322..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200201 STATION NETCDFs -0.08452176253000895 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200202_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200202_D_GLOBAL.out deleted file mode 100644 index 1493131c74954d00904add65fa6b50e8a01ade39..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.06390307744344076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200202_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200202_H_GLOBAL.out deleted file mode 100644 index cd1008bf59063448e4b2c019bf6d86d677b173e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.06157247225443522 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200202_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200202_M_GLOBAL.out deleted file mode 100644 index 2c89fb8e7d7061ebc0191fef2c46c13a62276aa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200202 STATION NETCDFs -0.048467858632405596 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200203_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200203_D_GLOBAL.out deleted file mode 100644 index 78012c8ef72682132f66ea2195fc56d00b8ff0e1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.08429487943649291 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200203_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200203_H_GLOBAL.out deleted file mode 100644 index 3f415020afd74e45dd16b3424ba5f98e97d56dbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.06317725181579589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200203_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200203_M_GLOBAL.out deleted file mode 100644 index 6abfe679ff6158177db5de73754dc323b2b21cf8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200203 STATION NETCDFs -0.05626580715179443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200204_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200204_D_GLOBAL.out deleted file mode 100644 index c9e625c658d178bac06ac9e875f168e9c58c6470..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.06556457281112671 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200204_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200204_H_GLOBAL.out deleted file mode 100644 index 10e5f995fdb7a03543c46c00f75198c360349525..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.05876094897588094 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200204_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200204_M_GLOBAL.out deleted file mode 100644 index c4d8925a5582364eea5abcd833883fd3da779adf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200204 STATION NETCDFs -0.06452146371205648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200205_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200205_D_GLOBAL.out deleted file mode 100644 index ec466ab3cda2b1afbfc9561cd9e278da397dec4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.050872798760732016 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200205_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200205_H_GLOBAL.out deleted file mode 100644 index 2f35d9cb4371ed8ddc18c50cc164fd55a2e442b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.054379359881083174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200205_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200205_M_GLOBAL.out deleted file mode 100644 index 2321e10ebd4421af34abe0f0f62987552b79277a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200205 STATION NETCDFs -0.06356784105300903 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200206_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200206_D_GLOBAL.out deleted file mode 100644 index 4fcee37feb76b81999cd4fee64e9cfc6c248be30..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.06195510228474935 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200206_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200206_H_GLOBAL.out deleted file mode 100644 index 22e4520631f5230607aa1b363a27789b619a3474..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.050725611050923665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200206_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200206_M_GLOBAL.out deleted file mode 100644 index 733fb8bfbad88e99b2f27f82a2f74091d206ad40..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200206 STATION NETCDFs -0.07141593297322592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200207_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200207_D_GLOBAL.out deleted file mode 100644 index 947a0d451356c1f818cb75409acaaf91f2c64bcc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.05460414886474609 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200207_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200207_H_GLOBAL.out deleted file mode 100644 index f38577d6fe7413168bed33f920bd043b9db70769..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.045207786560058597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200207_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200207_M_GLOBAL.out deleted file mode 100644 index e5306e191ea582af475b5fec9d7862408b0e2cda..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200207 STATION NETCDFs -0.046668012936909996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200208_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200208_D_GLOBAL.out deleted file mode 100644 index 7e2fb246baa2769de3be22a90bafd76b24d1996a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.05880349079767863 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200208_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200208_H_GLOBAL.out deleted file mode 100644 index d6617e273308da678f747754e28028bed13c903b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.045684560139973955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200208_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200208_M_GLOBAL.out deleted file mode 100644 index b9ea1c95dc9770eaa46199300233dea0050a43d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200208 STATION NETCDFs -0.04991390307744344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200209_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200209_D_GLOBAL.out deleted file mode 100644 index 54a30dbaa271a7f378d692b03f5cea3e96ef3dfc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.05421907504399617 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200209_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200209_H_GLOBAL.out deleted file mode 100644 index 97fdc5c4eeb7684239139fa907368cea9135e7ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.04654062191645304 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200209_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200209_M_GLOBAL.out deleted file mode 100644 index fdfb5b7a1537291819185c305237ac27c1732d53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200209 STATION NETCDFs -0.07055691480636597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200210_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200210_D_GLOBAL.out deleted file mode 100644 index 22604b03316ecdba41e3b7a3b0e7a912d31a336d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.06549787521362305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200210_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200210_H_GLOBAL.out deleted file mode 100644 index 0318e0aada34c9a76b6de04a46e5002ca60be227..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.04379019339879354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200210_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200210_M_GLOBAL.out deleted file mode 100644 index 22105609a01d074ad6a448695c98874966749cde..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200210 STATION NETCDFs -0.05242412090301514 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200211_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200211_D_GLOBAL.out deleted file mode 100644 index 0a62c819d8144265ece04d138cfb01d43631f728..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.08528883059819539 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200211_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200211_H_GLOBAL.out deleted file mode 100644 index c0af798a79ef678974b07d2f56bab5c8e0d89250..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.06440284649531046 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200211_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200211_M_GLOBAL.out deleted file mode 100644 index 0be5d97b6a866403ae9eea4e64ef8791ecb38089..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200211 STATION NETCDFs -0.06062546968460083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200212_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200212_D_GLOBAL.out deleted file mode 100644 index ebeafe952cb57815ee48f7d90e302fc7e955d619..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.07859094937642415 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200212_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200212_H_GLOBAL.out deleted file mode 100644 index 309ced8cbf83ffebcaa64e3dca6549032f2c2aab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.05217487017313639 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200212_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200212_M_GLOBAL.out deleted file mode 100644 index 7795bda70269d6dd62167b05535b6da81bbcb2f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200212 STATION NETCDFs -0.07503614823023479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200301_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200301_D_GLOBAL.out deleted file mode 100644 index 65b3984606bacaff6847bd2a855f7d44ea5f5aeb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.06582170724868774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200301_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200301_H_GLOBAL.out deleted file mode 100644 index 017d3921a09f7e5ad9d26d8ce78388d407a5fb2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.05058118502298991 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200301_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200301_M_GLOBAL.out deleted file mode 100644 index c608cfb7977af785621d9fa994a20d480a852d7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200301 STATION NETCDFs -0.052750746409098305 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200302_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200302_D_GLOBAL.out deleted file mode 100644 index ebbad8a0a65892033ea222e021c0b1d6bd89c176..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.05486777623494466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200302_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200302_H_GLOBAL.out deleted file mode 100644 index f0f888bce1d5cdb100dc61f19b9bc804395d3c58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.08659388621648152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200302_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200302_M_GLOBAL.out deleted file mode 100644 index cf2d0d0b1756fbfd7c97a90a3ee1f1a502e93062..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200302 STATION NETCDFs -0.04833465417226156 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200303_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200303_D_GLOBAL.out deleted file mode 100644 index 7c85ebcbefd7734d909fedcd16be3ad8e37d0243..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.06435173749923706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200303_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200303_H_GLOBAL.out deleted file mode 100644 index 7781d5a4b58b518711c66dad20c9770a2706ed79..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.04417927662531535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200303_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200303_M_GLOBAL.out deleted file mode 100644 index f2ded6ee038c09441fc9028ecacbdf5abbd29f05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200303 STATION NETCDFs -0.05599623521169027 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200304_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200304_D_GLOBAL.out deleted file mode 100644 index d82d87c622bc72dcb9d28eba3914175475b0d55e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.05932643810908 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200304_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200304_H_GLOBAL.out deleted file mode 100644 index 4e2e53de2b000c08f56534716a5ecfc93f1cf1b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.06322195529937744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200304_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200304_M_GLOBAL.out deleted file mode 100644 index b51115ab53be0b09370c2736f4d787e04fd20a84..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200304 STATION NETCDFs -0.06435559193293254 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200305_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200305_D_GLOBAL.out deleted file mode 100644 index 92ccc47fa9e2537690a17a0ebc949a05a279892a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.0710335373878479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200305_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200305_H_GLOBAL.out deleted file mode 100644 index 7ec83132268c9fdfcaec3cd863cf89faf20b4e36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.041118029753367105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200305_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200305_M_GLOBAL.out deleted file mode 100644 index 31367e4b184d3e6dbf90e6b1958e08dd97664080..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200305 STATION NETCDFs -0.06658436854680379 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200306_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200306_D_GLOBAL.out deleted file mode 100644 index 7dee16ade43ef65f09aba4f01ba390392bcad821..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.08602263530095418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200306_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200306_H_GLOBAL.out deleted file mode 100644 index 1200aa5f9e771b7dc18be33721c053ded685f044..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.07921119928359985 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200306_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200306_M_GLOBAL.out deleted file mode 100644 index c8d6d9472b732e18fb5001e7e36838b9a3e484ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200306 STATION NETCDFs -0.059628617763519284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200307_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200307_D_GLOBAL.out deleted file mode 100644 index 62807c26634f62f250a8e09fb25c7119015da5bd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.06464841763178507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200307_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200307_H_GLOBAL.out deleted file mode 100644 index bfc326edbdac4e4ee72112833bd84245a15ae7b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.06776231129964193 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200307_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200307_M_GLOBAL.out deleted file mode 100644 index 6ec00d91a2ebaad5803e60f51da433f07638c23a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200307 STATION NETCDFs -0.07623722553253173 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200308_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200308_D_GLOBAL.out deleted file mode 100644 index 65f8493c0bbe49cdbc2109af4deff2332339a7f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.07148219347000122 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200308_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200308_H_GLOBAL.out deleted file mode 100644 index b5bbfa103bce55a79d4ceb778ebf3fb33be6561a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.04534160296122233 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200308_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200308_M_GLOBAL.out deleted file mode 100644 index a27166663bcde854f9265c00a5a1cd1ff5b15a99..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200308 STATION NETCDFs -0.07756101687749227 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200309_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200309_D_GLOBAL.out deleted file mode 100644 index ed87125318a6a4897f8a840ffecc943ea2e61ece..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.08256729046503702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200309_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200309_H_GLOBAL.out deleted file mode 100644 index e9269968bacf2d06fe5fce2df32d77e715d11c34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.06426875193913778 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200309_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200309_M_GLOBAL.out deleted file mode 100644 index 42369854cc20de12c5d202cdfdd079d4148f2d86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200309 STATION NETCDFs -0.07292879819869995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200310_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200310_D_GLOBAL.out deleted file mode 100644 index 4b18da42c268f0fa62de6392c0131ec416bae1e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.06852842171986898 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200310_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200310_H_GLOBAL.out deleted file mode 100644 index e3b2c1c6d52faff55f45bafa262ebf18bd40ec1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.04412240982055664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200310_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200310_M_GLOBAL.out deleted file mode 100644 index fcd0cf2aaa2244c81cf24218570fbcef1fa1e77a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200310 STATION NETCDFs -0.06623602708180745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200311_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200311_D_GLOBAL.out deleted file mode 100644 index 4ff66f0eaa99cb05cd1205860da895ab9d6687c7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.060438764095306394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200311_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200311_H_GLOBAL.out deleted file mode 100644 index c3fa392631649cd6c35eda4933b1af730f094097..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.08541075785954794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200311_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200311_M_GLOBAL.out deleted file mode 100644 index a1a8dcca888aa7ac9852bf14ab327445007009e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200311 STATION NETCDFs -0.08696545362472534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200312_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200312_D_GLOBAL.out deleted file mode 100644 index 8f4ac88886bcc8335d9dbbb264155102cce0c922..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.048973830540974934 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200312_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200312_H_GLOBAL.out deleted file mode 100644 index ca89ec12203a98cb82bb6bae52f5cacdd8005f67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.08322903315226236 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200312_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200312_M_GLOBAL.out deleted file mode 100644 index 522d8b8d2069720d954d1bb3ca7a95037badf188..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200312 STATION NETCDFs -0.06555926005045573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200401_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200401_D_GLOBAL.out deleted file mode 100644 index d4b7571d21b2c0c4cbd539d3ab02dbe027085b41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.049681246280670166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200401_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200401_H_GLOBAL.out deleted file mode 100644 index 6965bee6f113922db6d7049b42a3c524498d0ffb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.04496312936147054 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200401_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200401_M_GLOBAL.out deleted file mode 100644 index f7d0861fcbe4703cd283e1f512a99f20b7af9da6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200401 STATION NETCDFs -0.0471867044766744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200402_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200402_D_GLOBAL.out deleted file mode 100644 index 85a30df1b12e86d3f6a64da8775b281eab66cc70..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.07340719699859619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200402_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200402_H_GLOBAL.out deleted file mode 100644 index 2060a8a232e5d873a7c46444253588840e8d5aeb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.06471784512201945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200402_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200402_M_GLOBAL.out deleted file mode 100644 index 18f7badc11eff51bff793f7116b04c49c426c731..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200402 STATION NETCDFs -0.07756245136260986 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200403_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200403_D_GLOBAL.out deleted file mode 100644 index 06ff501a6a44d2e17c29a65af6d9d3cd7df05c11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.05068490505218506 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200403_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200403_H_GLOBAL.out deleted file mode 100644 index 171ef6336f53fd0106354f8130cf88a413ee847b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.0604314128557841 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200403_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200403_M_GLOBAL.out deleted file mode 100644 index 7b94a45daa79d619024efc69b20e5dc5cffa2e15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200403 STATION NETCDFs -0.06259154081344605 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200404_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200404_D_GLOBAL.out deleted file mode 100644 index 3ac3d97d97100d3b55d37310426899125ceefa6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.06485716899236044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200404_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200404_H_GLOBAL.out deleted file mode 100644 index bc8398728317ff8c57a3561d2b4e5e5b1c733516..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.08506035010019938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200404_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200404_M_GLOBAL.out deleted file mode 100644 index 170fb2f57b75e4964b7db467d209122b8344c222..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200404 STATION NETCDFs -0.07682409683863321 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200405_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200405_D_GLOBAL.out deleted file mode 100644 index ee6ccb2e0723308223b76e3f4f7d230b8e591bd7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.05057942072550456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200405_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200405_H_GLOBAL.out deleted file mode 100644 index 354bda2bab027cf2303999da02c9160b9feed704..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.04925235509872437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200405_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200405_M_GLOBAL.out deleted file mode 100644 index 448fb5ec31b3af1dc87708d70198bb8fc7cb830a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200405 STATION NETCDFs -0.07221363385518392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200406_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200406_D_GLOBAL.out deleted file mode 100644 index f622fb9951266bd8f22499efdd09731e355281d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.06101042826970418 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200406_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200406_H_GLOBAL.out deleted file mode 100644 index 02ec24132b2e40fcec21d7c048cf4dc205f1f672..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.05743252436319987 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200406_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200406_M_GLOBAL.out deleted file mode 100644 index 29e28d7d73bb6c8758fcdbc7b4b20e64e8c1d2ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200406 STATION NETCDFs -0.0774886965751648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200407_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200407_D_GLOBAL.out deleted file mode 100644 index 720d0d98cec3ddfd7fa3adc3342ec31860861b11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.06923198699951172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200407_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200407_H_GLOBAL.out deleted file mode 100644 index 93f19c8321d1e10fc446a2ef6c1dfcf457e7c15c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.06807908217112223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200407_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200407_M_GLOBAL.out deleted file mode 100644 index b1b81016569109d8c501dc53b21d94577ed750c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200407 STATION NETCDFs -0.0736489454905192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200408_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200408_D_GLOBAL.out deleted file mode 100644 index fbecd647125c89325558c9a4b1d0771d0db02dee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.047358938058217365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200408_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200408_H_GLOBAL.out deleted file mode 100644 index 76cbe45da36712b1fac6f6b574b4f5d99d8c6a8d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.0628531813621521 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200408_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200408_M_GLOBAL.out deleted file mode 100644 index 8adede3585f7e61e213aae077303718e7cfc48dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200408 STATION NETCDFs -0.06529875596364339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200409_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200409_D_GLOBAL.out deleted file mode 100644 index 9be4a7d86a2baf603ab47237e02535ab4df29eed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.06799829006195068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200409_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200409_H_GLOBAL.out deleted file mode 100644 index cfa1e36cdf48b185960f957e54cf6c23d7a6adce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.04343743721644084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200409_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200409_M_GLOBAL.out deleted file mode 100644 index 6f1eeafc9cfbd2ccec1e2ccf6e478e98fd7838d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200409 STATION NETCDFs -0.04714825948079427 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200410_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200410_D_GLOBAL.out deleted file mode 100644 index e163e33f2af8c0dc4789c1f4ab11045afc70404f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.06659096876780192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200410_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200410_H_GLOBAL.out deleted file mode 100644 index 352894c1637c03aee58648af586ebdd7b817b9d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.0802502711613973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200410_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200410_M_GLOBAL.out deleted file mode 100644 index 2b4cb8ee132e719ec2d814ac5df8eda00790af9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200410 STATION NETCDFs -0.045958038171132407 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200411_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200411_D_GLOBAL.out deleted file mode 100644 index 253777f7f1bca3af2c02b72251209e49d5f199c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.07066157261530558 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200411_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200411_H_GLOBAL.out deleted file mode 100644 index cfa25813b0df8796c598864b33322b5fa2a610b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.06291526953379313 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200411_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200411_M_GLOBAL.out deleted file mode 100644 index 6c69438cf073e79b8fba17eecde67d2169f0bfce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200411 STATION NETCDFs -0.06973590850830078 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200412_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200412_D_GLOBAL.out deleted file mode 100644 index a6ef2fd5303d11ca8bd5174e597fc5ea89e3a680..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.07925820748011271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200412_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200412_H_GLOBAL.out deleted file mode 100644 index b23b913b53a5ba012235b599f525e6705ac23659..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.06178164482116699 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200412_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200412_M_GLOBAL.out deleted file mode 100644 index 81acd6fd51de0b12d6c6f391cf4a8e4fafcaadea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200412 STATION NETCDFs -0.04875104427337647 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200501_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200501_D_GLOBAL.out deleted file mode 100644 index bba58893a77dd6da0db03392c470fdf9af6bf454..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.052785170078277585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200501_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200501_H_GLOBAL.out deleted file mode 100644 index 2030d9a848e79ea9012a8acaaf39e46b2f3ead33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.054783610502878825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200501_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200501_M_GLOBAL.out deleted file mode 100644 index 41585a2a8f633a7f29542d6806ab5e9853ec9f7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200501 STATION NETCDFs -0.05346065362294515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200502_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200502_D_GLOBAL.out deleted file mode 100644 index 251c532be779ceefb05812c6977b0970dd4d911f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.07235856850941975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200502_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200502_H_GLOBAL.out deleted file mode 100644 index fa711ed27bea7fcdbc51fcc60890e7c3a3484fb5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.06103376547495524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200502_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200502_M_GLOBAL.out deleted file mode 100644 index bec407e3c8682883ee7eb83c44ef91f391e11aba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200502 STATION NETCDFs -0.05299371878306071 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200503_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200503_D_GLOBAL.out deleted file mode 100644 index ca6f1aa1034ef3538c304d72791c0cbe7382d428..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.0569430152575175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200503_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200503_H_GLOBAL.out deleted file mode 100644 index 125c3aa7405d8fb890d3196da4083ff07667b58e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.0580413818359375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200503_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200503_M_GLOBAL.out deleted file mode 100644 index d7a8fd7a541820c5480e1aaa28f52ac0284bc634..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200503 STATION NETCDFs -0.058511575063069664 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200504_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200504_D_GLOBAL.out deleted file mode 100644 index 0bdfc5611bc9ab14665cd9842815f46cb26109e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.06143671671549479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200504_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200504_H_GLOBAL.out deleted file mode 100644 index 9f011815cf7e6c44b794d03cf6cbdae863e314b0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.061656673749287925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200504_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200504_M_GLOBAL.out deleted file mode 100644 index 822fd4684d55f0bc74b39bd369957b182dee604d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200504 STATION NETCDFs -0.061137561003367105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200505_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200505_D_GLOBAL.out deleted file mode 100644 index b3d7c6a273a9b9edd9f7febe676aff43daef3e9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.046838752428690594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200505_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200505_H_GLOBAL.out deleted file mode 100644 index 989446dc131c80f97a0052ed2b551f23319897e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.049220112959543864 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200505_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200505_M_GLOBAL.out deleted file mode 100644 index 91987262201f416078e049943318a7e977642d1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200505 STATION NETCDFs -0.04512120882670085 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200506_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200506_D_GLOBAL.out deleted file mode 100644 index 29b39a57e068133ecdb2b779a40a6b7174776fc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.06131217877070109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200506_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200506_H_GLOBAL.out deleted file mode 100644 index c4f7bd807ace1cf521d6574e19a148bc802a2b83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.04429557720820109 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200506_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200506_M_GLOBAL.out deleted file mode 100644 index 3242e6bde57d9239f1c39148170f71b6417c1c65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200506 STATION NETCDFs -0.04986384312311808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200507_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200507_D_GLOBAL.out deleted file mode 100644 index a7fe9502b224baded17f6878776aa9954a1c76c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.05292277733484904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200507_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200507_H_GLOBAL.out deleted file mode 100644 index 95de6149dfb2d2b70a7cd314bf1562ac34168964..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.04376637538274129 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200507_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200507_M_GLOBAL.out deleted file mode 100644 index 5914d41c16ba4c91659bbb56bdf037b9eee764d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200507 STATION NETCDFs -0.06315740744272867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200508_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200508_D_GLOBAL.out deleted file mode 100644 index 9ec8f034d5a3b7b9c6691f8f2cfe08a840c0220c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.0714558998743693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200508_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200508_H_GLOBAL.out deleted file mode 100644 index f5864c01e1171006108318631709dcd920b5d3c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.08485173384348552 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200508_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200508_M_GLOBAL.out deleted file mode 100644 index 3c04324abb11b4c81ddff7640b49a73703ad2c20..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200508 STATION NETCDFs -0.06678434213002522 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200509_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200509_D_GLOBAL.out deleted file mode 100644 index 9019b2ab9cfdbd3d0a35947719ad1726eeea871e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.06593384742736816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200509_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200509_H_GLOBAL.out deleted file mode 100644 index 015f0448735e648c30b6175f88c37b0eaedde8ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.0638707160949707 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200509_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200509_M_GLOBAL.out deleted file mode 100644 index a48dc8911a708fd2c6de0c869de733adcf073bb4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200509 STATION NETCDFs -0.055723261833190915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200510_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200510_D_GLOBAL.out deleted file mode 100644 index cb49d07d836f5ab9fbdf8556be9e5562fb383c81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.055097468694051105 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200510_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200510_H_GLOBAL.out deleted file mode 100644 index a75e90d02b52daf923114434eaa619ddcbf7e69c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.057706940174102786 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200510_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200510_M_GLOBAL.out deleted file mode 100644 index 2d99bd41dbf7aa8c3194377d636f49b3b1652899..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200510 STATION NETCDFs -0.0607461134592692 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200511_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200511_D_GLOBAL.out deleted file mode 100644 index b63a6185ff140f05c9eb288e8e25109e1dfde544..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.058842790126800534 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200511_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200511_H_GLOBAL.out deleted file mode 100644 index 4bf969072a47c79860099a2137acd7ba1cd79760..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.05761593182881673 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200511_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200511_M_GLOBAL.out deleted file mode 100644 index b739b229cf764520022528836f073deb71f62cce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200511 STATION NETCDFs -0.08280196984608969 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200512_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200512_D_GLOBAL.out deleted file mode 100644 index a5f64723f5faeb1af3983e78e0e8ef2f4605e77e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.05930468241373698 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200512_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200512_H_GLOBAL.out deleted file mode 100644 index 88d07eff3a6d96d56859e76925ba94f9b8f40b8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.062425100803375246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200512_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200512_M_GLOBAL.out deleted file mode 100644 index e70094cb1f63548edbe5eeccc75190b96640ae67..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200512 STATION NETCDFs -0.060669132073720294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200601_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200601_D_GLOBAL.out deleted file mode 100644 index 67670d0a8e69314fc39e34fefe8135ba448eccb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.08693735996882121 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200601_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200601_H_GLOBAL.out deleted file mode 100644 index ac8ca08da035f839be58f17a8491ea023eb84b13..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.05694025754928589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200601_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200601_M_GLOBAL.out deleted file mode 100644 index 9b4bb5a1897ea46e68f2eb0a47608d71ee31b90d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200601 STATION NETCDFs -0.04451892375946045 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200602_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200602_D_GLOBAL.out deleted file mode 100644 index bfb5eeaeb53bb57fe3f026fc5de8a470bdf3fd2e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.08568177223205567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200602_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200602_H_GLOBAL.out deleted file mode 100644 index 18c8ff5aad767d0bf3981907213c5eb3057c59b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.06103079716364543 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200602_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200602_M_GLOBAL.out deleted file mode 100644 index 8f138d58aa855e67b7531c8dc4fed85fa3866472..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200602 STATION NETCDFs -0.05777579148610433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200603_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200603_D_GLOBAL.out deleted file mode 100644 index b15757a73458736bb91f2594ec2121099c8e8f94..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.06478145122528076 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200603_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200603_H_GLOBAL.out deleted file mode 100644 index ec2f1087c81f5b17a513ab0b5e8eecd519c7e6f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.0505846381187439 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200603_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200603_M_GLOBAL.out deleted file mode 100644 index 2107e1479700520093e3def7a31ff029607d02b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200603 STATION NETCDFs -0.06826750834782919 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200604_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200604_D_GLOBAL.out deleted file mode 100644 index 5727ea38c11e430b5771d68251e1db851ad8c27d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.048289565245310466 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200604_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200604_H_GLOBAL.out deleted file mode 100644 index 76a7af9b150fb74f635f11b9afb309094588ff3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.05078818400700887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200604_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200604_M_GLOBAL.out deleted file mode 100644 index 8e67052c72fa86594ac6d6ef35107b954a6158c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200604 STATION NETCDFs -0.056562193234761554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200605_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200605_D_GLOBAL.out deleted file mode 100644 index b4f31f2afeb6a338402d62539b9a5ec6f44ac33d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.06878058910369873 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200605_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200605_H_GLOBAL.out deleted file mode 100644 index e10f64e962c09469c8325b8a2fde52dd0dd64be4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.07139863967895507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200605_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200605_M_GLOBAL.out deleted file mode 100644 index a135e225ea48c6ba60e3ce6676961f532c58a1ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200605 STATION NETCDFs -0.061273876825968424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200606_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200606_D_GLOBAL.out deleted file mode 100644 index 4961782f116d16df7ab9c715a16e260c1ccd0d0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.06611780325571696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200606_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200606_H_GLOBAL.out deleted file mode 100644 index 00ff838217222d04946097b63f60bfa3a0c859ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.04830953280131022 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200606_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200606_M_GLOBAL.out deleted file mode 100644 index 1a2947f9373a0658ee721ea7e0842687e2fc1076..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200606 STATION NETCDFs -0.06259677410125733 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200607_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200607_D_GLOBAL.out deleted file mode 100644 index eaa7e594a8270afddd5b280148df83de9af1629e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.06647778352101644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200607_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200607_H_GLOBAL.out deleted file mode 100644 index 58e313c4f23adb7b643fade57a9f61ec734e71a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.06715389887491861 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200607_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200607_M_GLOBAL.out deleted file mode 100644 index 69ad85e17cf5d9178631404010a09d7ce4c8059c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200607 STATION NETCDFs -0.04830901225407918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200608_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200608_D_GLOBAL.out deleted file mode 100644 index 6279bc6224e2d4ec33014080734bc7bae39b05cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.062230277061462405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200608_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200608_H_GLOBAL.out deleted file mode 100644 index 24f38e36ec7026c998592b11080e62d3e8a76be1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.05417450269063314 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200608_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200608_M_GLOBAL.out deleted file mode 100644 index f2b1d68527ec5fffdeebefb2db819fbf2bed87c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200608 STATION NETCDFs -0.054156291484832766 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200609_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200609_D_GLOBAL.out deleted file mode 100644 index eb9f9d633a2e45bb32aa23974f653313fc81060e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.07242457866668701 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200609_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200609_H_GLOBAL.out deleted file mode 100644 index e5943300515d8d8343da5858cf3f472dc1b0984b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.060854800542195636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200609_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200609_M_GLOBAL.out deleted file mode 100644 index 2d6f92a9603a8b993dff83f2ec2391866d8dc003..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200609 STATION NETCDFs -0.07461774746576945 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200610_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200610_D_GLOBAL.out deleted file mode 100644 index db47f590d3b6acb0f16eb55c69e34e742dd7b9fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.05133640766143799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200610_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200610_H_GLOBAL.out deleted file mode 100644 index a9884bb9028418513f8c79c7209580f42f1d319a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.06888245344161988 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200610_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200610_M_GLOBAL.out deleted file mode 100644 index 75b62e031222eae9e01309766c9e1211da9a375f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200610 STATION NETCDFs -0.06194870471954346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200611_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200611_D_GLOBAL.out deleted file mode 100644 index a91ed1401a4932148cce852e6d44c74e65f404fc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.07257496118545533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200611_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200611_H_GLOBAL.out deleted file mode 100644 index e1f6d4d367cde8f43a4edae94063f8955b63853b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.0824063261349996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200611_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200611_M_GLOBAL.out deleted file mode 100644 index c449caf091b4db9382582bb0a513319c3d6d0bf6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200611 STATION NETCDFs -0.08299419085184732 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200612_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200612_D_GLOBAL.out deleted file mode 100644 index d650ada456e1b638433652808d51a746c722be00..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.05187005996704101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200612_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200612_H_GLOBAL.out deleted file mode 100644 index fae8a06ea7ef9c0ac4d1608b6d609d52755e8046..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.05795888106028239 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200612_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200612_M_GLOBAL.out deleted file mode 100644 index 0c6568f822776073d7e928449a6d9640c652f4e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200612 STATION NETCDFs -0.06820272207260132 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200701_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200701_D_GLOBAL.out deleted file mode 100644 index 634a193f5a3230ef73c418bf9b8ea039a2a3e9d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.060387051105499266 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200701_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200701_H_GLOBAL.out deleted file mode 100644 index 9a6afa6fe1fed1e176fef2f1b602ee22520225b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.05063932736714681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200701_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200701_M_GLOBAL.out deleted file mode 100644 index 38f3a9b1b5e1fc180f4f89d7f9687e89209f75cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200701 STATION NETCDFs -0.06782363653182984 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200702_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200702_D_GLOBAL.out deleted file mode 100644 index 420e602d5187e4663a24108e30796a7a6695b7a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.06711452802022298 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200702_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200702_H_GLOBAL.out deleted file mode 100644 index fce2d0dfb3cc88789edb236c25d7df93aa8b59d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.054668553670247394 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200702_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200702_M_GLOBAL.out deleted file mode 100644 index c9fe8f5ad166ed65cf3365b0aa0235d6b4aebe1a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200702 STATION NETCDFs -0.060772597789764404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200703_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200703_D_GLOBAL.out deleted file mode 100644 index a600df2d62dd7db03ba5dc4b713169a723f73e03..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.05509959061940511 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200703_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200703_H_GLOBAL.out deleted file mode 100644 index d5c770b691795afa3206775693d7cc3c23a6755c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.042405104637145995 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200703_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200703_M_GLOBAL.out deleted file mode 100644 index 9696bf70744ade3ebbcfc2cfc54134bed6aa31c8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200703 STATION NETCDFs -0.045344165960947674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200704_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200704_D_GLOBAL.out deleted file mode 100644 index 3e926c9f581f0931b1c99b0e513f84ec9eeef83f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.061476794878641765 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200704_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200704_H_GLOBAL.out deleted file mode 100644 index f130f21479edd634046435a32c101af5b772afb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.06683450142542521 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200704_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200704_M_GLOBAL.out deleted file mode 100644 index fcc2e761a7580f94f9e180a1e1f1f6c1bd1b70ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200704 STATION NETCDFs -0.04287092685699463 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200705_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200705_D_GLOBAL.out deleted file mode 100644 index ba22a6ec5d2fe28f6ff484fa038e9449b871b512..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.04732170104980469 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200705_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200705_H_GLOBAL.out deleted file mode 100644 index b369395c84af1c011f5d84b985c6746139057c0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.0426090399424235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200705_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200705_M_GLOBAL.out deleted file mode 100644 index 77f3c4bbd9ca6a33514d1eff051e4f4c8a78c129..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200705 STATION NETCDFs -0.06241994301478068 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200706_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200706_D_GLOBAL.out deleted file mode 100644 index 82e05d8c0f294a424fb2c4a0f213b93fbe4de57f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.06257800658543905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200706_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200706_H_GLOBAL.out deleted file mode 100644 index 681a5a5716466023c5d9852fcf75b87a3e66750c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.06627380847930908 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200706_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200706_M_GLOBAL.out deleted file mode 100644 index 29656d41f890bb8be3db18f8f42d3c072c290234..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200706 STATION NETCDFs -0.0507730762163798 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200707_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200707_D_GLOBAL.out deleted file mode 100644 index bece69e06b34a6f05c0219c3398344d32078ded5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.04014641841252645 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200707_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200707_H_GLOBAL.out deleted file mode 100644 index 25469d63f508575384a80a18c5d8bfeff04d1596..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.05405213832855225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200707_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200707_M_GLOBAL.out deleted file mode 100644 index fa5c40a8bcebed30e0c89990f9fbd0c48c0b4b02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200707 STATION NETCDFs -0.055353037516276044 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200708_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200708_D_GLOBAL.out deleted file mode 100644 index bf6ef3dbfb4f4dc2de9952579a0a70faf7a0b767..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.055703151226043704 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200708_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200708_H_GLOBAL.out deleted file mode 100644 index cc4b1dc80e624a56385b8d6457d03a1b76a28ec9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.05846300522486369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200708_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200708_M_GLOBAL.out deleted file mode 100644 index 6fbeb6cbbb9b583400284ec19376e9103973e31a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200708 STATION NETCDFs -0.07933978239695232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200709_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200709_D_GLOBAL.out deleted file mode 100644 index 4eaf7c629c45c1b99a526c9fe91bbd4cfbc0ac26..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.08141668637593587 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200709_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200709_H_GLOBAL.out deleted file mode 100644 index ca6a27f951e7bd94d818286aaf7c17943861cc1f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.05178676843643189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200709_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200709_M_GLOBAL.out deleted file mode 100644 index e261c122be630f7b2d431e6f25da9500b94e0bef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200709 STATION NETCDFs -0.06437648137410482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200710_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200710_D_GLOBAL.out deleted file mode 100644 index d5682c6f9c3c805856bd37bda26ea222b6233903..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.0642456849416097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200710_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200710_H_GLOBAL.out deleted file mode 100644 index 47ee7078c0807efdcf4ef565010a7d02c7fe1ede..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.05630108912785848 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200710_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200710_M_GLOBAL.out deleted file mode 100644 index c85c165ad40fe3c1912fda5647f3ba789a4b4189..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200710 STATION NETCDFs -0.062021493911743164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200711_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200711_D_GLOBAL.out deleted file mode 100644 index e151e48716d31ec74f7fff7ae8c1da5d8cb3bd3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.06388405958811443 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200711_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200711_H_GLOBAL.out deleted file mode 100644 index e01cae8cd2ae0c6fd909b81587e75faecec014a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.05698559284210205 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200711_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200711_M_GLOBAL.out deleted file mode 100644 index ac0c22abdd8e5bafc44218c94460cc114f567295..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200711 STATION NETCDFs -0.06263550519943237 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200712_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200712_D_GLOBAL.out deleted file mode 100644 index 21dfdba7e5e8b62e8fa0073df1f51f489d58a7cc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.06847193241119384 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200712_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200712_H_GLOBAL.out deleted file mode 100644 index a7a1a96a5c04bbb68f8b8adb8fee4874eedfb9ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.06074591875076294 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200712_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200712_M_GLOBAL.out deleted file mode 100644 index dc73666684a297e0808c510f1540cb07725755de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200712 STATION NETCDFs -0.07504197756449381 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200801_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200801_D_GLOBAL.out deleted file mode 100644 index 0e93667ee29de692be0cf896d37cc939f7bba315..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.046272961298624675 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200801_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200801_H_GLOBAL.out deleted file mode 100644 index 3ebb0f0db50d534dea7a0687a7a93ea94d3757b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.0801892360051473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200801_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200801_M_GLOBAL.out deleted file mode 100644 index 927ab652aa292a8aecd447f140149e4cbbe08d29..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200801 STATION NETCDFs -0.05290573835372925 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200802_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200802_D_GLOBAL.out deleted file mode 100644 index 6605c76b2756b33301b3451b74392b4aabdb45d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.04490788777669271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200802_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200802_H_GLOBAL.out deleted file mode 100644 index 6dc741dba01e3d39bbb47d804798913a3432280b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.06566557884216309 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200802_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200802_M_GLOBAL.out deleted file mode 100644 index 90442398771db3e77b6ee9284926d89694eb60c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200802 STATION NETCDFs -0.04669824043909709 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200803_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200803_D_GLOBAL.out deleted file mode 100644 index f0479844cde8481a4c7846caf1c41e4ac3aa8e11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.04691896041234334 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200803_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200803_H_GLOBAL.out deleted file mode 100644 index f75b9a69db2f151626ea8e2090c648a2426bc38d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.0646121621131897 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200803_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200803_M_GLOBAL.out deleted file mode 100644 index b39423f31d9a0e0a7d8cfb40d0295e62d105fc24..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200803 STATION NETCDFs -0.06845085620880127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200804_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200804_D_GLOBAL.out deleted file mode 100644 index 87704aad892ad91d3c7c2b223171ab00dc1e1276..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.05411754449208577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200804_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200804_H_GLOBAL.out deleted file mode 100644 index 1a4f68b37d7bdadab238ff267a8eb083d61c502d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.05197366078694662 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200804_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200804_M_GLOBAL.out deleted file mode 100644 index 0f6f6ebcf89e018cf568736e10265801aeea5093..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200804 STATION NETCDFs -0.06525662740071615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200805_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200805_D_GLOBAL.out deleted file mode 100644 index 63b41fbc6264d4be98a60680c6a7c2e36f20c193..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.04477175871531169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200805_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200805_H_GLOBAL.out deleted file mode 100644 index 2648e3dc1a8f877df98928178894cb025f0751ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.04378045399983724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200805_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200805_M_GLOBAL.out deleted file mode 100644 index ebf9a33ec592ce154bd1fad1c1c0be550ff88cc1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200805 STATION NETCDFs -0.04620798031489055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200806_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200806_D_GLOBAL.out deleted file mode 100644 index 51553bb8bd5a06070a5fd95e6dc8d83c218a13cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.062406396865844725 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200806_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200806_H_GLOBAL.out deleted file mode 100644 index c1854587da5352b5037c0c36682749bb79cda3de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.06250908374786376 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200806_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200806_M_GLOBAL.out deleted file mode 100644 index 0c46a324a0299abde481dc14cb5e4451dd0a2984..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200806 STATION NETCDFs -0.06454804340998331 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200807_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200807_D_GLOBAL.out deleted file mode 100644 index b1ccd2682d07b1dd4d05a96078abf31178897c65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.060761924584706625 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200807_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200807_H_GLOBAL.out deleted file mode 100644 index 0a12b6275fe9fa40a15feb403a02c3e41347cff7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.0582649310429891 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200807_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200807_M_GLOBAL.out deleted file mode 100644 index ef325d6de445bbf5f84b73b4cbfa059092d378d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200807 STATION NETCDFs -0.05375016132990519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200808_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200808_D_GLOBAL.out deleted file mode 100644 index 5b2e894fbaf3c706b2951987a05fdab4bea9d7e4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.072640327612559 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200808_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200808_H_GLOBAL.out deleted file mode 100644 index 9cce11acdd1b8213707bc861fba6eef02f263a78..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.06707285642623902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200808_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200808_M_GLOBAL.out deleted file mode 100644 index 4e43280327abfb2f099d1a20283d7ad2b33175e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200808 STATION NETCDFs -0.056047614415486655 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200809_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200809_D_GLOBAL.out deleted file mode 100644 index ed260215a96f5d5330a9db12e9a0adbf066bd820..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.07412716547648111 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200809_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200809_H_GLOBAL.out deleted file mode 100644 index 155176d80e4af6ece290a2bd859888346daa5354..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.04852977196375529 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200809_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200809_M_GLOBAL.out deleted file mode 100644 index d1446ccd7a67ea2e02ad7bee1dcb5a43a61f94f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200809 STATION NETCDFs -0.04599004586537679 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200810_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200810_D_GLOBAL.out deleted file mode 100644 index 44ab9a6504a14c4c4300454a9a354d38a5096692..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.0660165786743164 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200810_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200810_H_GLOBAL.out deleted file mode 100644 index eab4907738d102c7634ac05a74470b339b8b998f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.05907394886016846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200810_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200810_M_GLOBAL.out deleted file mode 100644 index b657147a86dd6ca9015df73139fb6e5076d20d6a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200810 STATION NETCDFs -0.04600172837575277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200811_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200811_D_GLOBAL.out deleted file mode 100644 index cbb30e3eea0678117b7b988d878a436c99f393d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.06569182475407918 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200811_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200811_H_GLOBAL.out deleted file mode 100644 index c403ae0ee79ae76033483f5f8af8ec064dcde32f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.06284099022547404 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200811_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200811_M_GLOBAL.out deleted file mode 100644 index 2215febc35156cdc36bfb61a3139b53b2e8bf989..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200811 STATION NETCDFs -0.08504978020985922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200812_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200812_D_GLOBAL.out deleted file mode 100644 index 0fecdf66bd5b0e2d659c77e4322ac901d7e38af3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.0699552853902181 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200812_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200812_H_GLOBAL.out deleted file mode 100644 index 6bbc0d3744ad8797ebeedd3d07f401d7a5761f4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.05038181145985921 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200812_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200812_M_GLOBAL.out deleted file mode 100644 index b194243b10eb65d72362b5b8e89cbe9679ba47f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200812 STATION NETCDFs -0.06403456926345825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200901_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200901_D_GLOBAL.out deleted file mode 100644 index 42332366920d3c185e32d3f4fe18a78c8f52693a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.07337106068929036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200901_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200901_H_GLOBAL.out deleted file mode 100644 index a50ffcfb159213088f63a092001090246f2f5924..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.06624842087427775 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200901_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200901_M_GLOBAL.out deleted file mode 100644 index 3cb2cddd5fea659dc9b296f1dc7dc63cdc60a435..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200901 STATION NETCDFs -0.07642764647801717 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200902_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200902_D_GLOBAL.out deleted file mode 100644 index 7308ff684d4f564026a182c610ec218683805083..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.05363614956537883 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200902_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200902_H_GLOBAL.out deleted file mode 100644 index 9de0a24c66bb18983a6a41bc92b8ae35d36f458b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.039263224601745604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200902_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200902_M_GLOBAL.out deleted file mode 100644 index 7f9b2c532bbb942ff6f8cdcf6c4386e5224326a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200902 STATION NETCDFs -0.0601231058438619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200903_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200903_D_GLOBAL.out deleted file mode 100644 index cf40f9da674f833c6b47777ff07c699d96852328..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.07040844360987346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200903_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200903_H_GLOBAL.out deleted file mode 100644 index cae850cc2b25a3826c67c97a072347a59cf076ea..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.07000906864802042 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200903_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200903_M_GLOBAL.out deleted file mode 100644 index dc242fdeb8ec1600a0bba74ef7b7168392f6f45d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200903 STATION NETCDFs -0.07241848309834799 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200904_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200904_D_GLOBAL.out deleted file mode 100644 index a87228a56449e956ad356d874317a12076428381..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.0739067037900289 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200904_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200904_H_GLOBAL.out deleted file mode 100644 index 69804cb142ba7dfccef4b8bfd0b36558e46660f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.05115386247634888 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200904_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200904_M_GLOBAL.out deleted file mode 100644 index 9fd2928f105756acd9ef4a82b07da95144c4f7cf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200904 STATION NETCDFs -0.04564562638600667 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200905_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200905_D_GLOBAL.out deleted file mode 100644 index 40e3e7c62685dd6304d8072c669fd6d9c01704ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.08631842533747355 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200905_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200905_H_GLOBAL.out deleted file mode 100644 index e6c8900845490277430462e15428d6bebb8d3eca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.05242859522501628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200905_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200905_M_GLOBAL.out deleted file mode 100644 index ab3037aa8ec96ca230873c96e1e35aa326fff5c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200905 STATION NETCDFs -0.05610926946004232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200906_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200906_D_GLOBAL.out deleted file mode 100644 index 66a9402574a699caae987913c8784aaa939f8813..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.046474746863047284 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200906_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200906_H_GLOBAL.out deleted file mode 100644 index c472113fd86c557b8d1f72bdf6d41dee32da9e36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.07400945027669271 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200906_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200906_M_GLOBAL.out deleted file mode 100644 index 365860b66e22d70fc9a47a6a247ee2c51f093c2d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200906 STATION NETCDFs -0.06657733519872029 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200907_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200907_D_GLOBAL.out deleted file mode 100644 index d18c542efccd8f6d0f4df35c0dbf4372de004763..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.07126375834147135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200907_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200907_H_GLOBAL.out deleted file mode 100644 index e9022350bdb0a8a4481ac2f37f77aef9c7a78256..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.06747358640034994 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200907_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200907_M_GLOBAL.out deleted file mode 100644 index d51a79480cc18d3b7892aad30490dd32d69b6435..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200907 STATION NETCDFs -0.05430126587549845 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200908_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200908_D_GLOBAL.out deleted file mode 100644 index a4320524f2611724269d6b3734d218a7479ffd04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.06368319193522136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200908_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200908_H_GLOBAL.out deleted file mode 100644 index 62eeafa85b0cc1ad40ac266f4d1ba1c8c7d02a28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.04293198188145955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200908_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200908_M_GLOBAL.out deleted file mode 100644 index 56c78999caa044acb3dff3f151cd371df831f26d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200908 STATION NETCDFs -0.06250909566879273 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200909_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200909_D_GLOBAL.out deleted file mode 100644 index dac3bdbd6210d042edd13939b9d08da6be3114ab..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.06335072120030721 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200909_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200909_H_GLOBAL.out deleted file mode 100644 index 4627a75bdfed3792d43960478f99bbbe509eeedf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.05576019287109375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200909_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200909_M_GLOBAL.out deleted file mode 100644 index c20d6b01b516a16e54314e9362096f1a43c07a61..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200909 STATION NETCDFs -0.05619376500447591 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200910_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200910_D_GLOBAL.out deleted file mode 100644 index b578454a42c417bd31d050efeeae5d2deb1dc66b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.0525131106376648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200910_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200910_H_GLOBAL.out deleted file mode 100644 index 2b15f559852622e5e0371f99d7ad5edef64db088..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.054734702905019125 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200910_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200910_M_GLOBAL.out deleted file mode 100644 index 26701047aa3b25789dc25cdb5ed4151a08ef98df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200910 STATION NETCDFs -0.06900701522827149 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200911_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200911_D_GLOBAL.out deleted file mode 100644 index c9fe0a4597cd6eed90060a06c9764e5e1500e920..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.06564710934956869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200911_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200911_H_GLOBAL.out deleted file mode 100644 index 836148fbf76dabc54806712929a9a6ec2f82b8d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.06564157803853353 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200911_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200911_M_GLOBAL.out deleted file mode 100644 index 1c4e5be05d48083c2818c589a3a27eda07eff656..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200911 STATION NETCDFs -0.0620314637819926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200912_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200912_D_GLOBAL.out deleted file mode 100644 index 5e64f941512874b09332bf338ceb0100e7050d2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.06547067562739055 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200912_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200912_H_GLOBAL.out deleted file mode 100644 index 56f2b6d87de1e08fa540c8f655cb3b3791f27ea7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.05978734493255615 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_200912_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_200912_M_GLOBAL.out deleted file mode 100644 index e715fb7e348b87b44fca6f9f8e91aa023ad15966..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_200912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 200912 STATION NETCDFs -0.08438518842061361 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201001_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201001_D_GLOBAL.out deleted file mode 100644 index cf30fa123bdf14ade8a4a7cfaef7440b4bc2a154..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.064507528146108 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201001_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201001_H_GLOBAL.out deleted file mode 100644 index cbe180c54e694332f6e76c7e2d22de933ac8f4e3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.07352500756581624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201001_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201001_M_GLOBAL.out deleted file mode 100644 index 5b1625cd750d7f4229841d63d1916b0698452ee4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201001 STATION NETCDFs -0.06335816383361817 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201002_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201002_D_GLOBAL.out deleted file mode 100644 index dc1b3873502c9195a0e9f8ab5d69f305c33a06bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.07650258938471476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201002_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201002_H_GLOBAL.out deleted file mode 100644 index b8d0e23dacac7e8e64361d5af28b16b33082865e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.05740018685658773 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201002_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201002_M_GLOBAL.out deleted file mode 100644 index 5c6e20dab2d5623b420af6822ba053e15883750d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201002 STATION NETCDFs -0.06463630199432373 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201003_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201003_D_GLOBAL.out deleted file mode 100644 index 2ae45fa7de547eb32e1450056bcac511927f1498..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.07889554103215536 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201003_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201003_H_GLOBAL.out deleted file mode 100644 index 0b42ec2ea2e476b85cbbc602cd102c521b53c198..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.06348569790522257 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201003_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201003_M_GLOBAL.out deleted file mode 100644 index 7960202a35929c51a2cabf05c1c197345f5b585a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201003 STATION NETCDFs -0.06798572142918904 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201004_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201004_D_GLOBAL.out deleted file mode 100644 index cfde00e0dfdd0512bea8f3db21b096bfee3d62e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.06446722745895386 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201004_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201004_H_GLOBAL.out deleted file mode 100644 index 94ae73c6ae1c9a8cd54ec9750588fc5a528f1f7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.08856444756189982 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201004_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201004_M_GLOBAL.out deleted file mode 100644 index 851b6898fd905a1ed6d7343f4a200788e4d1a10e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201004 STATION NETCDFs -0.06937274932861329 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201005_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201005_D_GLOBAL.out deleted file mode 100644 index 7eda9e006fa6709380cd142d4a0f99bce6aeb4df..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.08207271893819174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201005_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201005_H_GLOBAL.out deleted file mode 100644 index cfbf4ee007f3e9bfa9bbc799a9aaec4de9c5bee2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.08396267493565877 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201005_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201005_M_GLOBAL.out deleted file mode 100644 index 64942593612551103339df817261ebe729b232c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201005 STATION NETCDFs -0.08059159914652507 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201006_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201006_D_GLOBAL.out deleted file mode 100644 index e636e4695f07a5a1e63a844b6b1ac16e2e169c15..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.08376800219217936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201006_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201006_H_GLOBAL.out deleted file mode 100644 index b44d2a6bb3cd44fec7abe502d71f3b9a7fa4e78e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.09118579626083374 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201006_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201006_M_GLOBAL.out deleted file mode 100644 index 5e7a920ff0e983d7af26743d954351858b2c21e0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201006 STATION NETCDFs -0.08490241368611653 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201007_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201007_D_GLOBAL.out deleted file mode 100644 index eca8129e52735507185fe354fe74bf9b554b58f9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.07364108562469482 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201007_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201007_H_GLOBAL.out deleted file mode 100644 index 3a038cb8eb24cd6378a875f5ca0855ff2487ec0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.08569876750310262 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201007_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201007_M_GLOBAL.out deleted file mode 100644 index b8cbba38fb11e07761bcd7114f9dc7795b725eef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201007 STATION NETCDFs -0.08286412159601847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201008_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201008_D_GLOBAL.out deleted file mode 100644 index ab17d5b44deb54d5db4ae89a2de0388e085c5134..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.0819126844406128 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201008_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201008_H_GLOBAL.out deleted file mode 100644 index 165cfa5d5a4ddb5572dcead5d43aa762becbbd81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.05963486830393473 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201008_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201008_M_GLOBAL.out deleted file mode 100644 index 87ffa1f7d023760af02f99f84139aaa73cf15cf9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201008 STATION NETCDFs -0.06308103799819946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201009_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201009_D_GLOBAL.out deleted file mode 100644 index 0db6da53642da0f66683e834a6610442f208b922..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.08608822027842204 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201009_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201009_H_GLOBAL.out deleted file mode 100644 index a0366dbefa60a360f20303f92fc92361d5ef52b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.0769847591718038 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201009_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201009_M_GLOBAL.out deleted file mode 100644 index 6f5b692ad6b840fc261a0d29ad2545a78a909715..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201009 STATION NETCDFs -0.08939733505249023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201010_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201010_D_GLOBAL.out deleted file mode 100644 index 6e1852dcc6f89eccc837bfc8d5ae9e45820bc1f5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.08672890663146973 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201010_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201010_H_GLOBAL.out deleted file mode 100644 index 07dd7595a7fb67275901f36ef8f4ff7da6e542bb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.07507488330205282 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201010_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201010_M_GLOBAL.out deleted file mode 100644 index bbda824d8256a092f7bf3fa407d04085b263f111..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201010 STATION NETCDFs -0.08169630368550619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201011_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201011_D_GLOBAL.out deleted file mode 100644 index 0ba139d67e912b5f969c61af0cadd96087c45eec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.08169416983922323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201011_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201011_H_GLOBAL.out deleted file mode 100644 index cc7538d85c4107add0412482e790660d95ca0582..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.05866559743881226 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201011_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201011_M_GLOBAL.out deleted file mode 100644 index 9d1e514faff3b8e2c1041d7f9e4214d073a3373c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201011 STATION NETCDFs -0.08007978200912476 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201012_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201012_D_GLOBAL.out deleted file mode 100644 index 7878b2c1579d0e84ffdb64c397ce6279e94bed4e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.08378492593765259 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201012_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201012_H_GLOBAL.out deleted file mode 100644 index 0a28f77b919aa5d2d7fe44cb094fd9e895de6184..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.07151784896850585 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201012_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201012_M_GLOBAL.out deleted file mode 100644 index a10e11eece635c666e3c24601f326af3efe8fc33..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201012 STATION NETCDFs -0.09180699586868286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201101_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201101_D_GLOBAL.out deleted file mode 100644 index 0338abf5dd18ffb3eebe9a965e18e423515b84cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.08599853118260702 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201101_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201101_H_GLOBAL.out deleted file mode 100644 index e1b886243656b4816c933c7e7443319020a56697..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.06230260133743286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201101_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201101_M_GLOBAL.out deleted file mode 100644 index 57fdc7395f3644515f4076ebdbfb879aa3d1525b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201101 STATION NETCDFs -0.08523305257161458 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201102_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201102_D_GLOBAL.out deleted file mode 100644 index 5aa190963da47b4c5c32099d66941d2784d38012..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.08975557088851929 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201102_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201102_H_GLOBAL.out deleted file mode 100644 index 81107db2dc7a64ffd4b6058bdce65692c11d7461..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.06551304658253988 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201102_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201102_M_GLOBAL.out deleted file mode 100644 index 51152f2886724efbcf888de7b8a51fe6a49a87b3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201102 STATION NETCDFs -0.07939995129903157 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201103_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201103_D_GLOBAL.out deleted file mode 100644 index 2bfd4e5f0f51dc92f750e68bbd0c91568941f2ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.07161095142364501 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201103_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201103_H_GLOBAL.out deleted file mode 100644 index fde6e1bfc1060b4db7d327721061b6ef9e0b5e83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.07510608037312826 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201103_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201103_M_GLOBAL.out deleted file mode 100644 index c86f2c52e26088bc92a7a476d41f2817ea81535f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201103 STATION NETCDFs -0.10551771720250448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201104_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201104_D_GLOBAL.out deleted file mode 100644 index 0ea30b36559fc3b14f12a7185f62505aac886f86..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.07096351385116577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201104_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201104_H_GLOBAL.out deleted file mode 100644 index 95be207e9676d682cd476ff7032fe732e4fc4aa2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.08420887788136801 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201104_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201104_M_GLOBAL.out deleted file mode 100644 index 8fa0d23daa49d9ffab8479e0c93eb7b1b8182d19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201104 STATION NETCDFs -0.06333024501800537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201105_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201105_D_GLOBAL.out deleted file mode 100644 index 992584d5966a8bee5152a0bc6b64e0d90412c541..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.07928762833277385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201105_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201105_H_GLOBAL.out deleted file mode 100644 index f49a6feab89d187c3f8406c4ec3621b7ec11a400..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.07678162654240926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201105_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201105_M_GLOBAL.out deleted file mode 100644 index 8d4758390157bc222dd30c8d3e440f63af8a8cbc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201105 STATION NETCDFs -0.06426777839660644 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201106_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201106_D_GLOBAL.out deleted file mode 100644 index 90b21693de89a630d05c2a85c2e7cd5dc3e239ee..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.09382880528767903 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201106_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201106_H_GLOBAL.out deleted file mode 100644 index 6ea0af89233b76214fc3e02417b924c7af873fc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.07475377321243286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201106_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201106_M_GLOBAL.out deleted file mode 100644 index e25e42ba52b55e0c9781b24393dcc7208205d949..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201106 STATION NETCDFs -0.08335150480270385 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201107_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201107_D_GLOBAL.out deleted file mode 100644 index 9300736893ae91ebc38100f7289c1160cbda89ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201107_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.06777328252792358 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201107_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201107_H_GLOBAL.out deleted file mode 100644 index 2c428f492bb1b99b92452d01acdf4dce7daf5df5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201107_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.08670719067255656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201107_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201107_M_GLOBAL.out deleted file mode 100644 index 1c9e5cc57a61b54f36333d0c90669c84bca28127..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201107_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201107 STATION NETCDFs -0.08015620708465576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201108_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201108_D_GLOBAL.out deleted file mode 100644 index ad38136525f2983137e17c8bb7e3884f3a33b9c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201108_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.08084007104237874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201108_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201108_H_GLOBAL.out deleted file mode 100644 index fe990c9a041de7477860fd52aa3bf8fc7eb5ee62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201108_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.07556427319844564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201108_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201108_M_GLOBAL.out deleted file mode 100644 index 20e2213e7e73ff62fee0a029ac0a34d6e2f4e58b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201108_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201108 STATION NETCDFs -0.06591808398564657 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201109_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201109_D_GLOBAL.out deleted file mode 100644 index 242f8698340fc3ca0ea8d01ce3fbbea2efbf53e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201109_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.08578492800394694 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201109_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201109_H_GLOBAL.out deleted file mode 100644 index 5e572c002fba28237d731a2333d5661cdd6c9aa8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201109_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.06046671470006307 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201109_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201109_M_GLOBAL.out deleted file mode 100644 index 54fa7387caffab267e9dec97ec6d66388d1cee65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201109_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201109 STATION NETCDFs -0.08976021607716879 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201110_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201110_D_GLOBAL.out deleted file mode 100644 index 27e10d4c271820a9deb6deac5d8dc02baac289da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201110_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.09289639790852865 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201110_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201110_H_GLOBAL.out deleted file mode 100644 index 111d34f646420cb9e2996b77b24888756c279c9b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201110_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.057882833480834964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201110_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201110_M_GLOBAL.out deleted file mode 100644 index 00e861bee7ff12080a8d4fa9d5602df939fb96fd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201110_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201110 STATION NETCDFs -0.0810810685157776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201111_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201111_D_GLOBAL.out deleted file mode 100644 index 6d682044d3f5e34ba7404867463b6e5be231428d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201111_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.07915250857671102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201111_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201111_H_GLOBAL.out deleted file mode 100644 index cf55952d872d2fb2f95af0f2c69b02184d1453fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201111_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.079233717918396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201111_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201111_M_GLOBAL.out deleted file mode 100644 index 74a0ba388cf6d25f842b9baee4b6dc05cbe28270..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201111_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201111 STATION NETCDFs -0.08043691317240396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201112_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201112_D_GLOBAL.out deleted file mode 100644 index bd4a7e46b603461861e9df9db41c0a3e7542cf97..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201112_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.09905630350112915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201112_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201112_H_GLOBAL.out deleted file mode 100644 index 52f5fe722aead8847e7180972e285d1a5e5fad37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201112_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.08182632128397624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201112_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201112_M_GLOBAL.out deleted file mode 100644 index 60d7440c0c9a1f3fc1542158031511f1e3d39dce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201112_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201112 STATION NETCDFs -0.07635593811670939 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201201_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201201_D_GLOBAL.out deleted file mode 100644 index 839cf50ec5c432a7c4b7c29c79f1f92da1d0a57d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201201_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.08494322299957276 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201201_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201201_H_GLOBAL.out deleted file mode 100644 index adafb2a48a370a3e99f6c9f0176c9869e112e422..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201201_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.09034910599390665 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201201_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201201_M_GLOBAL.out deleted file mode 100644 index 5e5003cc4f3f836388f5136890de9363be0777b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201201_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201201 STATION NETCDFs -0.07733635107676189 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201202_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201202_D_GLOBAL.out deleted file mode 100644 index 8d60dc0b97def785115042032d90bb40a31af776..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201202_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.0901025652885437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201202_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201202_H_GLOBAL.out deleted file mode 100644 index 95dfdb625dd046c4aabdc8b4a8ff091e53f18e11..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201202_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.08655602931976318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201202_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201202_M_GLOBAL.out deleted file mode 100644 index c0571e0e6fdadfbd7841419afa10e80b1720d76f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201202_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201202 STATION NETCDFs -0.07627090215682983 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201203_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201203_D_GLOBAL.out deleted file mode 100644 index eb919dbdb41bd1ccff81562be23f9316481874a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201203_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.08869921366373698 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201203_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201203_H_GLOBAL.out deleted file mode 100644 index 4b41dc1b55e0c72e584706e36bca47b8153a0558..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201203_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.06423858404159546 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201203_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201203_M_GLOBAL.out deleted file mode 100644 index 787a82e5286772d2653738bf9c125781df5ebc91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201203_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201203 STATION NETCDFs -0.07683535019556681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201204_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201204_D_GLOBAL.out deleted file mode 100644 index 23ffc05bbf0479a6289b067f3896e7ca596fc81a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201204_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.06920176347096761 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201204_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201204_H_GLOBAL.out deleted file mode 100644 index 42938ee630671d90a4efacebb6b9d9ae584d1ebb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201204_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.06450508038202922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201204_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201204_M_GLOBAL.out deleted file mode 100644 index ec4bbb3cd1202f599fe7397db8afe28d6d29bfb8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201204_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201204 STATION NETCDFs -0.07298710346221923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201205_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201205_D_GLOBAL.out deleted file mode 100644 index a9895da101d65f00f403e6b4188451c300e11ec0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201205_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.08123888572057088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201205_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201205_H_GLOBAL.out deleted file mode 100644 index c35631418b0038f61ecc46a93492aa99a1d969f7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201205_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.08527162075042724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201205_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201205_M_GLOBAL.out deleted file mode 100644 index e434a94be006b47eca3eb3d0601268e9914d88cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201205_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201205 STATION NETCDFs -0.08486700455347697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201206_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201206_D_GLOBAL.out deleted file mode 100644 index 0643a3c15d689d57ec4ed5090c72521b05a06f5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201206_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.0951319694519043 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201206_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201206_H_GLOBAL.out deleted file mode 100644 index 06f1383d3ef101c1c72827c1e4f1248f96b357a5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201206_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.09241145849227905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201206_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201206_M_GLOBAL.out deleted file mode 100644 index f0e4e79e01cc41bee6574d637aab0768faba93ba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201206_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201206 STATION NETCDFs -0.06828622023264568 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201207_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201207_D_GLOBAL.out deleted file mode 100644 index ca50b4aaf9dec5214432d8dcc20e4f021a660fd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201207_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.07377030452092488 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201207_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201207_H_GLOBAL.out deleted file mode 100644 index 6231c41c571a2b045abfe979bf054dd77f42256b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201207_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.06797033548355103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201207_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201207_M_GLOBAL.out deleted file mode 100644 index 59f87c3c9ae7c053f55c8f1602d49119aad258d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201207_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201207 STATION NETCDFs -0.08355383078257243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201208_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201208_D_GLOBAL.out deleted file mode 100644 index 0d1a98c40b666973c7d2a20ac80e0cfe62d94afb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201208_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.06591803232828776 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201208_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201208_H_GLOBAL.out deleted file mode 100644 index e7b1ac4bec4b389804085eacf2cd61d93cbb4141..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201208_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.07355316480000813 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201208_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201208_M_GLOBAL.out deleted file mode 100644 index def253ec1d325b5bf69fad2a59e5cc35ceea551c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201208_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201208 STATION NETCDFs -0.06683745384216308 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201209_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201209_D_GLOBAL.out deleted file mode 100644 index 8e8cecb5bb0cb4326ff0e7f5350954dcf61a19b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201209_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.08270242611567179 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201209_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201209_H_GLOBAL.out deleted file mode 100644 index e0b5ea25886cfba437da95622730ca002d7844cb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201209_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.08050003051757812 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201209_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201209_M_GLOBAL.out deleted file mode 100644 index b30f8d672375ac2c527d3d0b0ad7c31310b884ac..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201209_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201209 STATION NETCDFs -0.08632516860961914 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201210_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201210_D_GLOBAL.out deleted file mode 100644 index 27ba81f941819209bc2e3b2acbdbf988c79a6b9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201210_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.09424335956573486 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201210_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201210_H_GLOBAL.out deleted file mode 100644 index 5c75879f3b9b483fdaa8619de30d5ab49f357012..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201210_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.08285826047261556 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201210_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201210_M_GLOBAL.out deleted file mode 100644 index 82ebdc8716aa3203034a95f5c84941f80076c50b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201210_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201210 STATION NETCDFs -0.09469629923502604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201211_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201211_D_GLOBAL.out deleted file mode 100644 index a3298bae8ee461eb117f3a5238db1c24152bc845..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201211_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.10016175111134847 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201211_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201211_H_GLOBAL.out deleted file mode 100644 index 94c20a9e4e1ff597d3ee681a9ce4810d00fe7fb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201211_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.06628483136494955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201211_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201211_M_GLOBAL.out deleted file mode 100644 index f09f9fe2deb0724bdaa1ab1adaa01f6431ce6662..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201211_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201211 STATION NETCDFs -0.08283481200536093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201212_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201212_D_GLOBAL.out deleted file mode 100644 index 19f21402c354dcf9c80ee30e3f64919323ef0eb4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201212_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.08256616989771524 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201212_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201212_H_GLOBAL.out deleted file mode 100644 index 0d7fb36e054cbb2e9e67480dde1d6b6eb952355d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201212_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.09190374612808228 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201212_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201212_M_GLOBAL.out deleted file mode 100644 index beda28ee02f0cae20478c2f6cf0c93efa6534a12..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201212_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201212 STATION NETCDFs -0.07111696402231853 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201301_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201301_D_GLOBAL.out deleted file mode 100644 index 477ea39258406a0a6016219188aa398b1c650f4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201301_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.08459659814834594 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201301_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201301_H_GLOBAL.out deleted file mode 100644 index 77f40a6b930c00fbe8e2f97d826d816ae24a4d0b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201301_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.08969569206237793 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201301_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201301_M_GLOBAL.out deleted file mode 100644 index 8a1f45b712df028d2e092a888266b758a0c002d6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201301_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201301 STATION NETCDFs -0.09023200273513794 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201302_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201302_D_GLOBAL.out deleted file mode 100644 index d3fda0ff10e2824ff4fdc2906f9764b513eaefa9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201302_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.06528361241022745 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201302_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201302_H_GLOBAL.out deleted file mode 100644 index b1fa7db4650093ded98a94bef85a165ad19018e5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201302_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.08182848294576009 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201302_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201302_M_GLOBAL.out deleted file mode 100644 index 684aa129d4207dfb8e0b7db86676420f2dc5fb59..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201302_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201302 STATION NETCDFs -0.08219416936238606 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201303_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201303_D_GLOBAL.out deleted file mode 100644 index 2321a21042c06411e1b9738600fc6fdc4057ef7d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201303_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.08185405731201172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201303_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201303_H_GLOBAL.out deleted file mode 100644 index fb11647369c18dee3ac7a208c65f4467b899d6f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201303_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.08393578926722209 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201303_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201303_M_GLOBAL.out deleted file mode 100644 index 93cc0306a49e824a630c09c4f7ea96752998432c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201303_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201303 STATION NETCDFs -0.08309280474980672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201304_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201304_D_GLOBAL.out deleted file mode 100644 index 0cbe2d0f2156fcb6d8b7821a97c6b78df003ff2f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201304_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.0742702047030131 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201304_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201304_H_GLOBAL.out deleted file mode 100644 index eb6acf6fdc74a5ba21ebdd202fde835dc4352a0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201304_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.0812459111213684 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201304_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201304_M_GLOBAL.out deleted file mode 100644 index b8537bb6f92362732fa30657d18e42bb84b8e513..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201304_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201304 STATION NETCDFs -0.08062334458033243 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201305_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201305_D_GLOBAL.out deleted file mode 100644 index b85d53cf49cf6c062eafc9132e249aff2cdf2674..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201305_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.08604844411214192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201305_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201305_H_GLOBAL.out deleted file mode 100644 index d1576552efbcb94d2550594be58deb98b854875d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201305_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.08748643795649211 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201305_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201305_M_GLOBAL.out deleted file mode 100644 index b0fe7767b3606cc7d748892bb0c9011f55c6d27b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201305_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201305 STATION NETCDFs -0.07558157444000244 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201306_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201306_D_GLOBAL.out deleted file mode 100644 index c0e7600aa4fd99550f588ea79c8fc326c890653b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201306_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.09593750238418579 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201306_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201306_H_GLOBAL.out deleted file mode 100644 index cf27583ab79b501438ea9ff940534fb36a5e8f91..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201306_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.06961149374643961 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201306_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201306_M_GLOBAL.out deleted file mode 100644 index b152013ebd6177dee05482742572ab5d3a3723dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201306_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201306 STATION NETCDFs -0.07346450885136922 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201307_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201307_D_GLOBAL.out deleted file mode 100644 index b60977486a33210c52e3bf66f8fd03d3e49a624f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201307_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.08001871109008789 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201307_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201307_H_GLOBAL.out deleted file mode 100644 index ecf761aea2c4ed2b056d2d8cebdd7a1d6cf01972..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201307_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.08363118171691894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201307_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201307_M_GLOBAL.out deleted file mode 100644 index d8994e7198e60e071e0431432f8caf835ffc679e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201307_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201307 STATION NETCDFs -0.06832204659779867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201308_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201308_D_GLOBAL.out deleted file mode 100644 index ccb0c988e0dbc814fc49bc3ac9cee7d0d038b15c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201308_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.10296658674875896 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201308_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201308_H_GLOBAL.out deleted file mode 100644 index 624813ea77a570eab71633374e650e6c1fc5771c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201308_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.07173055013020833 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201308_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201308_M_GLOBAL.out deleted file mode 100644 index c5c2930d631aafd25384894beb85a46c25a3c90c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201308_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201308 STATION NETCDFs -0.06880009174346924 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201309_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201309_D_GLOBAL.out deleted file mode 100644 index d7f92e4a79be19274b2b0b51e8616943400d7ad5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201309_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.07514756917953491 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201309_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201309_H_GLOBAL.out deleted file mode 100644 index 027cbc9cd1c670a0465dc9dc5a944dd77da6d4f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201309_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.07793310880661011 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201309_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201309_M_GLOBAL.out deleted file mode 100644 index 47e21408845814d4972a5e5690a981e061238c19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201309_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201309 STATION NETCDFs -0.07236331701278687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201310_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201310_D_GLOBAL.out deleted file mode 100644 index 0127f9d67a3d939d42122d2bc1a5e3a8f6990b80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201310_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.07123688856760661 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201310_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201310_H_GLOBAL.out deleted file mode 100644 index 93f977cb2f154e90cfed74958cd7ac87e04124ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201310_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.06483834187189738 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201310_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201310_M_GLOBAL.out deleted file mode 100644 index be6540c2fea6c730029160abe6e9c07c2e8d3d53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201310_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201310 STATION NETCDFs -0.09626276890436808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201311_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201311_D_GLOBAL.out deleted file mode 100644 index bf8513836b26065a37e066bc7f0082acd9b94c36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201311_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.0850012222925822 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201311_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201311_H_GLOBAL.out deleted file mode 100644 index 6b42524f0ccaed8bcff091e0f92ef528a9d43ecf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201311_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.0931033174196879 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201311_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201311_M_GLOBAL.out deleted file mode 100644 index e5a1ffd30281c96c4ac8eac70680808e937d9036..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201311_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201311 STATION NETCDFs -0.07927876710891724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201312_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201312_D_GLOBAL.out deleted file mode 100644 index ecdefa3fac8b40f8b153f433e4148d24bcafb918..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201312_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.07316922744115194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201312_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201312_H_GLOBAL.out deleted file mode 100644 index 5539edbeff144dc9168c6ddb396a2f392eea82ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201312_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.0875472903251648 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201312_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201312_M_GLOBAL.out deleted file mode 100644 index dfc49f768ddd81ebb08ea9f713c865d093e88d80..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201312_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201312 STATION NETCDFs -0.09523769617080688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201401_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201401_D_GLOBAL.out deleted file mode 100644 index 91d9ad20bae82a09c8d5e5fefe6511baaf754fca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201401_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.11004391113917032 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201401_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201401_H_GLOBAL.out deleted file mode 100644 index c103e2ab5eb91e4051488f0195313d4599b1d856..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201401_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.09115428924560547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201401_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201401_M_GLOBAL.out deleted file mode 100644 index ece9ba85b0a85baa265f9f7d0e39b255a9b19cf8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201401_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201401 STATION NETCDFs -0.10169414679209392 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201402_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201402_D_GLOBAL.out deleted file mode 100644 index 8c4b08d9954d9b67e063dc9eaa8ccaf0217cc4a2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201402_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.09701360861460367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201402_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201402_H_GLOBAL.out deleted file mode 100644 index ace3cf492dd66ce2c1b641dce963d030c45494a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201402_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.09462996323903401 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201402_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201402_M_GLOBAL.out deleted file mode 100644 index c241d163cdbfc0840eab70f90acfb58eefdfaf4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201402_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201402 STATION NETCDFs -0.0850503166516622 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201403_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201403_D_GLOBAL.out deleted file mode 100644 index acb1d1b30982d8997ca4211ca2fc344e526c1655..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201403_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.07246565421422323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201403_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201403_H_GLOBAL.out deleted file mode 100644 index 45c5d2323ca4efdda7de18b7c1da7e0cc812f4fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201403_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.09541962146759034 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201403_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201403_M_GLOBAL.out deleted file mode 100644 index 9fb52f31e0df3f7f54f8abb79c5c1e40a8a9372a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201403_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201403 STATION NETCDFs -0.08522022167841593 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201404_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201404_D_GLOBAL.out deleted file mode 100644 index e6d7ef81d8812604b6d5b597e79b019ecca3b48a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201404_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.0783064087231954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201404_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201404_H_GLOBAL.out deleted file mode 100644 index f8d727319c7922dcf7b28d89358e0a24d7778f1d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201404_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.07485467592875163 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201404_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201404_M_GLOBAL.out deleted file mode 100644 index ab732b9ee53d021d2953249f584930d6df3422eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201404_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201404 STATION NETCDFs -0.08059149583180746 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201405_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201405_D_GLOBAL.out deleted file mode 100644 index fbdf920b70979c28364d1eee813fd701b1e5c7fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201405_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.08684605360031128 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201405_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201405_H_GLOBAL.out deleted file mode 100644 index 1d025447fcf092df1bac5305cb4b7259cfb71f68..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201405_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.11584437290827433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201405_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201405_M_GLOBAL.out deleted file mode 100644 index adfd4a2b9fb7de7a2f6f3cdc5f339e905d4e8f3e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201405_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201405 STATION NETCDFs -0.07450345357259115 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201406_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201406_D_GLOBAL.out deleted file mode 100644 index cebcccca9299a30261aa2ee1eebb08b86df49289..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201406_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.09986127614974975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201406_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201406_H_GLOBAL.out deleted file mode 100644 index d062221ce9d540644b798dfe689d86dfbe8ad985..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201406_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.08401023944218954 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201406_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201406_M_GLOBAL.out deleted file mode 100644 index f0e1910578f6f97c6a1651b26b5e8ea86c4f0ffa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201406_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201406 STATION NETCDFs -0.07960367600123087 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201407_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201407_D_GLOBAL.out deleted file mode 100644 index 8b3e8e700f8a1b609c1ac7f152c9c4f60322b4b9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201407_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.08608967463175456 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201407_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201407_H_GLOBAL.out deleted file mode 100644 index a1462dc3f0e3b41ae806b33fa23815194859319b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201407_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.08873041868209838 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201407_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201407_M_GLOBAL.out deleted file mode 100644 index c0134712948aa6dbc139676c8af2dbc7333d5b2b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201407_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201407 STATION NETCDFs -0.07663993835449219 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201408_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201408_D_GLOBAL.out deleted file mode 100644 index 21df9fc5cfbeaab4d28365e8212aa8599294abd3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201408_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.09433685938517253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201408_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201408_H_GLOBAL.out deleted file mode 100644 index b5a0f0fcaa25a5f1f98497c858035103c864260d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201408_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.0822773257891337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201408_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201408_M_GLOBAL.out deleted file mode 100644 index ff041a8a78e67223bd8e4b0273500fd432ab9505..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201408_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201408 STATION NETCDFs -0.07751200993855795 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201409_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201409_D_GLOBAL.out deleted file mode 100644 index 15fa9fc2b808c3f2a94b35065bd94ebfc58e0a19..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201409_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.08305445909500123 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201409_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201409_H_GLOBAL.out deleted file mode 100644 index af274534bc01d4761fc90b5c7e3cc45807a9c976..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201409_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.08535906871159872 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201409_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201409_M_GLOBAL.out deleted file mode 100644 index dbd7b84f761b5518dde714234a97c290116da208..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201409_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201409 STATION NETCDFs -0.09306417306264242 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201410_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201410_D_GLOBAL.out deleted file mode 100644 index c2c96d566f2951a0782c67588fdae2123aa62a89..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201410_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.08916329542795817 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201410_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201410_H_GLOBAL.out deleted file mode 100644 index 351b634a719e3fea599d8ab6c14213bed23b20de..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201410_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.09727139075597127 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201410_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201410_M_GLOBAL.out deleted file mode 100644 index eb359f6cc99e0a3bee58435f166dd6e48ebd0375..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201410_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201410 STATION NETCDFs -0.07801082928975424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201411_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201411_D_GLOBAL.out deleted file mode 100644 index 94b8487e7fb8870871a3aea705c7bad4c2e7598e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201411_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.06939564148585002 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201411_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201411_H_GLOBAL.out deleted file mode 100644 index e21da850345107edb41b7960e00783fe35174874..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201411_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.09495491981506347 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201411_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201411_M_GLOBAL.out deleted file mode 100644 index 89933335e4c80f496784b956460b8cdc1de34f6b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201411_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201411 STATION NETCDFs -0.08758509556452433 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201412_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201412_D_GLOBAL.out deleted file mode 100644 index ef5d03e8bf4fb4b4b9a79a9b4019891a3b6ebcb9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201412_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.10089402198791504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201412_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201412_H_GLOBAL.out deleted file mode 100644 index 7a9caabb2ca8c705c2e39ee2325443431527e784..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201412_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.07842158476511638 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201412_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201412_M_GLOBAL.out deleted file mode 100644 index 320c23bb9db30d1d86d71e4b6d41da71cadc1d04..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201412_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201412 STATION NETCDFs -0.08686908880869547 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201501_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201501_D_GLOBAL.out deleted file mode 100644 index 93b06532a1b422c5fd9db1f83f5fa9ad378e29c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201501_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.0980700174967448 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201501_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201501_H_GLOBAL.out deleted file mode 100644 index 629f8eec942bc616d7585824b527522aa35b482a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201501_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.07372287114461264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201501_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201501_M_GLOBAL.out deleted file mode 100644 index d4e7c227036aef54dfa3927716fb2a6ee5064bcd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201501_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201501 STATION NETCDFs -0.08055343627929687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201502_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201502_D_GLOBAL.out deleted file mode 100644 index e1eb00e132a4546429a6a5e4543ecf85f9b0016a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201502_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.08106850783030192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201502_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201502_H_GLOBAL.out deleted file mode 100644 index 82cf237aae66fc59c74d43e01fb6f1126bbf1b62..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201502_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.07674316962560018 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201502_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201502_M_GLOBAL.out deleted file mode 100644 index a7aee8550260e3f5291f695f05ceab339c094adc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201502_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201502 STATION NETCDFs -0.08869810899098714 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201503_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201503_D_GLOBAL.out deleted file mode 100644 index e23898e43c5898498160a88b9a0712fa26ce16fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201503_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.07831255594889323 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201503_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201503_H_GLOBAL.out deleted file mode 100644 index aa920c350f3c26cba4fa122aad76e4611dfcbe2c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201503_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.08820032278696696 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201503_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201503_M_GLOBAL.out deleted file mode 100644 index 16d2fbeae2efd1bc9ca67d19a9166735bf0587a3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201503_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201503 STATION NETCDFs -0.09770887692769369 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201504_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201504_D_GLOBAL.out deleted file mode 100644 index 5d5844f56ab86d34f15e8697fec469ca54463a37..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201504_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.08903736273447672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201504_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201504_H_GLOBAL.out deleted file mode 100644 index 10ea10772384d8e2dd11967819c8749a829b86d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201504_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.08430796066919963 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201504_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201504_M_GLOBAL.out deleted file mode 100644 index 7a75fd5a49c8adc26e5513a5807aad584c1487fa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201504_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201504 STATION NETCDFs -0.08122177521387736 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201505_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201505_D_GLOBAL.out deleted file mode 100644 index c34266f8db5351fc53bcebf9b8c3a35cf02b8b0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201505_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.09355503718058268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201505_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201505_H_GLOBAL.out deleted file mode 100644 index e1289aec5f0a76ab04f265257ed0bdca4ab7c1d8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201505_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.07271618445714315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201505_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201505_M_GLOBAL.out deleted file mode 100644 index 09e734bad564b80badd835c63bb92dd13428fdba..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201505_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201505 STATION NETCDFs -0.07997928460439047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201506_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201506_D_GLOBAL.out deleted file mode 100644 index 8ab9c0e88c587b76cf3a0ccb635d7438e8e8f256..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201506_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.08002919753392537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201506_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201506_H_GLOBAL.out deleted file mode 100644 index 7ef1416c6276e8e0a1e81d5a5e9653684193d822..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201506_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.07472344239552815 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201506_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201506_M_GLOBAL.out deleted file mode 100644 index 1ae3d844683b4b440259f134935a610cb869de8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201506_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201506 STATION NETCDFs -0.09357786178588867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201507_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201507_D_GLOBAL.out deleted file mode 100644 index fce80138261f6a6c58b5293b9832820006ea1f44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201507_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.08879810174306234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201507_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201507_H_GLOBAL.out deleted file mode 100644 index c39b5eda9e585dfea4c3da1e40c3a621fbf76aa0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201507_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.1050209641456604 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201507_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201507_M_GLOBAL.out deleted file mode 100644 index f8d346e28abce9a7f1325406933979c748d52ad7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201507_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201507 STATION NETCDFs -0.07831728458404541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201508_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201508_D_GLOBAL.out deleted file mode 100644 index a7769ddd11313cdb9f409ee60fb90c2c317af6ec..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201508_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.07758217255274455 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201508_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201508_H_GLOBAL.out deleted file mode 100644 index 2b33febe1c787bbfd76332c409d9742d084ea844..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201508_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.08332854111989339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201508_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201508_M_GLOBAL.out deleted file mode 100644 index ab8f3aadd00ef27c507d11fa4e0d078d970302e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201508_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201508 STATION NETCDFs -0.08273634910583497 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201509_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201509_D_GLOBAL.out deleted file mode 100644 index eedc944033c70d4c599b923d303373754189891a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201509_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.09180441697438559 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201509_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201509_H_GLOBAL.out deleted file mode 100644 index 361603f48cc443f5b9b6425be03a8a19650ca4f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201509_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.08933494885762533 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201509_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201509_M_GLOBAL.out deleted file mode 100644 index d1ed970331e7da5e37d4ba2c41a5da92e30e63e7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201509_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201509 STATION NETCDFs -0.09041924476623535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201510_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201510_D_GLOBAL.out deleted file mode 100644 index 09bc36d25acf586caf7105ffb2f34e8cde02bc75..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201510_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.127375857035319 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201510_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201510_H_GLOBAL.out deleted file mode 100644 index fe1a31501e9f4047f553eb0430d667f39126b28e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201510_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.08623118003209432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201510_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201510_M_GLOBAL.out deleted file mode 100644 index d1c30d7ff8b93e5efa71577a36aed351f624e27a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201510_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201510 STATION NETCDFs -0.10286379257837931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201511_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201511_D_GLOBAL.out deleted file mode 100644 index 21204b9cb8d1722305108f9cd0816f768fed51b7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201511_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.08068151473999023 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201511_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201511_H_GLOBAL.out deleted file mode 100644 index 5438100a3cfef66271070c022bbe3d47d269f4c5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201511_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.08107171456019084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201511_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201511_M_GLOBAL.out deleted file mode 100644 index f6dea02b6711c3f1bae1136e16b579ac1a1dc97e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201511_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201511 STATION NETCDFs -0.09108306964238484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201512_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201512_D_GLOBAL.out deleted file mode 100644 index f744262e8fc9d96499b7222bfc8021a1f8e4f0eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201512_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.08851560354232788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201512_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201512_H_GLOBAL.out deleted file mode 100644 index 0b6494f3620532f7a46c55da4238b913d7bbcb8e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201512_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.1253745436668396 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201512_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201512_M_GLOBAL.out deleted file mode 100644 index eb1c2c756d0e606f2659710707b6ee2be213aa9d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201512_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201512 STATION NETCDFs -0.10144579807917277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201601_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201601_D_GLOBAL.out deleted file mode 100644 index 2b218c73348c2666e1673614160c2b22944b759d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201601_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.0776632825533549 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201601_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201601_H_GLOBAL.out deleted file mode 100644 index 5a315eb19a09a9931ed5543cb8c41f417a28053d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201601_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.07739604711532592 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201601_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201601_M_GLOBAL.out deleted file mode 100644 index e9d9768d56a4e286b50f11a493b12b9ec0acdca6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201601_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201601 STATION NETCDFs -0.08623738686243693 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201602_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201602_D_GLOBAL.out deleted file mode 100644 index 2d181c51b01534281899bf85c7d628341e0bf547..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201602_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.0976211428642273 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201602_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201602_H_GLOBAL.out deleted file mode 100644 index 3342aac2e411666ea2849ee1190de1cb04e53026..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201602_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.07208387851715088 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201602_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201602_M_GLOBAL.out deleted file mode 100644 index b8853db182434f46b0570473d3a90fcfb595a294..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201602_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201602 STATION NETCDFs -0.07549840211868286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201603_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201603_D_GLOBAL.out deleted file mode 100644 index 7337144229dd4597484e8d0181c2ca51c97016dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201603_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.10523783365885417 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201603_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201603_H_GLOBAL.out deleted file mode 100644 index a99635295fd0019e2d58d34e48e53e6c237e5cfa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201603_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.0832348903020223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201603_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201603_M_GLOBAL.out deleted file mode 100644 index ae31031372eb78936a97094410ba118b7bafc9a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201603_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201603 STATION NETCDFs -0.0797138253847758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201604_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201604_D_GLOBAL.out deleted file mode 100644 index 5e71160d464643ed3ba645a788a97f9e09f30ffc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201604_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.08954116900761923 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201604_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201604_H_GLOBAL.out deleted file mode 100644 index 516e97b3382ab9a782ae285d0e4bb96db0e50952..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201604_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.076007878780365 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201604_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201604_M_GLOBAL.out deleted file mode 100644 index faf66696c710496e54b7770f60f449c854faf6b6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201604_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201604 STATION NETCDFs -0.09723974068959554 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201605_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201605_D_GLOBAL.out deleted file mode 100644 index fde1df5b0a630e9b737403b6335607b7ea44d42f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201605_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.08868770599365235 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201605_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201605_H_GLOBAL.out deleted file mode 100644 index 2a8e88dc45b6aef4ac09f2e403279ff14247fb34..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201605_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.07285605669021607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201605_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201605_M_GLOBAL.out deleted file mode 100644 index d8da2bc2fc539b943e6d8f7b933ed78c9a11529a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201605_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201605 STATION NETCDFs -0.11959156195322672 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201606_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201606_D_GLOBAL.out deleted file mode 100644 index 147acadcd95882e71e0be6999fe7f691ea20e663..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201606_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.07985579172770182 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201606_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201606_H_GLOBAL.out deleted file mode 100644 index a23afbd6ef20a113ef6d45bc5d5d1d24ab63370f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201606_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.07871102889378866 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201606_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201606_M_GLOBAL.out deleted file mode 100644 index a8f8cb63254282549e9dcf6c0dae9627398ed324..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201606_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201606 STATION NETCDFs -0.100166654586792 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201607_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201607_D_GLOBAL.out deleted file mode 100644 index 2f2aefd8cce8d0c4fc702c688d1bdc291c7d7d41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201607_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.08954710960388183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201607_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201607_H_GLOBAL.out deleted file mode 100644 index 6519f1bac68cd753540a9259824f493937a1444c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201607_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.09107094605763753 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201607_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201607_M_GLOBAL.out deleted file mode 100644 index 34f3a99c679d7cf125b37f1a904b4aadf1965ee9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201607_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201607 STATION NETCDFs -0.1095308780670166 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201608_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201608_D_GLOBAL.out deleted file mode 100644 index 4cd3421a107097689cfaab56ab1e42574901ef05..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201608_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.07786248524983724 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201608_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201608_H_GLOBAL.out deleted file mode 100644 index bf07407919747154955c985a2857a529e1947f3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201608_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.07721062103907267 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201608_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201608_M_GLOBAL.out deleted file mode 100644 index d091ec8c2f6cf6559ef6deacc1db9acfe0c2ae4a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201608_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201608 STATION NETCDFs -0.09884274403254191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201609_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201609_D_GLOBAL.out deleted file mode 100644 index 2c6848f0ef99c0ae4581cb3827ff4b53cfebe36d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201609_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.07760569651921591 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201609_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201609_H_GLOBAL.out deleted file mode 100644 index 5d402285bccf5e7b69920849d0c310d9086e8068..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201609_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.09766717751820882 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201609_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201609_M_GLOBAL.out deleted file mode 100644 index 59d0196105a9eacf9645058f5b66e99c9ded4ee6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201609_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201609 STATION NETCDFs -0.11580465237299602 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201610_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201610_D_GLOBAL.out deleted file mode 100644 index e3ece292fb784470aaf21b9577fe02217430739f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201610_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.10541949272155762 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201610_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201610_H_GLOBAL.out deleted file mode 100644 index 579c1531ab2daee0972f07a30a984ff2b6211c2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201610_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.08587834040323893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201610_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201610_M_GLOBAL.out deleted file mode 100644 index 43b5c87b6a9fa45a1d40f1fb8e288189c4819639..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201610_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201610 STATION NETCDFs -0.08713451623916627 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201611_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201611_D_GLOBAL.out deleted file mode 100644 index 6e7116b2b1e9b4e3dbe071a17c9182ac459fdad3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201611_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.08950567642847697 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201611_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201611_H_GLOBAL.out deleted file mode 100644 index 497b3afffc694302f90698fb341b25aa3ffaf141..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201611_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.09043767054875691 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201611_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201611_M_GLOBAL.out deleted file mode 100644 index f4e60109d87841d29f1fe77e7fbd6d29efdf68fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201611_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201611 STATION NETCDFs -0.08129201730092367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201612_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201612_D_GLOBAL.out deleted file mode 100644 index 16b768db3c53d885e9993e8f6c4826c6657249e2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201612_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.080812672773997 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201612_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201612_H_GLOBAL.out deleted file mode 100644 index 5ae384867f974384ec14167bf3d74451b3727ba0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201612_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.0955440878868103 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201612_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201612_M_GLOBAL.out deleted file mode 100644 index 9b94f93ecd14ce5f83daec7c006ac7e617260879..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201612_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201612 STATION NETCDFs -0.07557975053787232 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201701_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201701_D_GLOBAL.out deleted file mode 100644 index c0cb0411191be50211af47c426b83a2cbc3eec42..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201701_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.08772861957550049 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201701_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201701_H_GLOBAL.out deleted file mode 100644 index 2d019a4d9f05f4ac68e74c9359b0e08cb1f0cbd9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201701_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.08660073677698771 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201701_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201701_M_GLOBAL.out deleted file mode 100644 index f6990de061df73fe85c7a806aa091c8a0eef8ffd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201701_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201701 STATION NETCDFs -0.07720805009206136 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201702_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201702_D_GLOBAL.out deleted file mode 100644 index 710850d5ce7c8781aef9ce1ca924aeb62586d359..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201702_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.09044212102890015 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201702_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201702_H_GLOBAL.out deleted file mode 100644 index b2dbd4134207451ec0c3efaa762c58ce557d9685..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201702_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.06924126545588176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201702_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201702_M_GLOBAL.out deleted file mode 100644 index 86b64e17f5994a866ab6edb07d73b565d9d78085..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201702_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201702 STATION NETCDFs -0.08530591726303101 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201703_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201703_D_GLOBAL.out deleted file mode 100644 index aa25eaeb91fa11f9b119c2ee3465af40feac6e16..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201703_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.1191176970799764 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201703_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201703_H_GLOBAL.out deleted file mode 100644 index 2d2c548dbf9478fcd15876cd64426b7be6e27886..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201703_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.08915756146113078 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201703_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201703_M_GLOBAL.out deleted file mode 100644 index d8b80698c4ca498703490e151a67141e83253269..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201703_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201703 STATION NETCDFs -0.08788203001022339 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201704_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201704_D_GLOBAL.out deleted file mode 100644 index 2a3965d4d03374011bd44ea82b5c895f22105bed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201704_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.0757329265276591 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201704_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201704_H_GLOBAL.out deleted file mode 100644 index 87ee9ff32ef515edee33640bd14166983c8e86fb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201704_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.07216140031814575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201704_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201704_M_GLOBAL.out deleted file mode 100644 index b5013d971381e0720234074685b18b991760288e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201704_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201704 STATION NETCDFs -0.08946567376454671 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201705_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201705_D_GLOBAL.out deleted file mode 100644 index b0d2e45cd280455239cebaaaf85cb776c364aa9e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201705_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.07907247543334961 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201705_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201705_H_GLOBAL.out deleted file mode 100644 index 27e84341dc340afe2f18d63119782621ffd2c66f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201705_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.0868229866027832 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201705_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201705_M_GLOBAL.out deleted file mode 100644 index e53a51b16f5664d6fa0170a74269bfbe9b836fd0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201705_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201705 STATION NETCDFs -0.08162701924641927 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201706_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201706_D_GLOBAL.out deleted file mode 100644 index 75325bbd8c37576b2b51b6a16fb4c492f6dbf36e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201706_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.08752601544062297 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201706_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201706_H_GLOBAL.out deleted file mode 100644 index eba9abf1851b2b2a24e71526410190cc1dda5bc9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201706_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.08330618540445964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201706_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201706_M_GLOBAL.out deleted file mode 100644 index 21dce3cc0c0333c7e09c5fd3eed0232c21183690..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201706_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201706 STATION NETCDFs -0.08695015907287598 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201707_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201707_D_GLOBAL.out deleted file mode 100644 index ab362a9c5a802a0937d49c1a420ca9fab7c62e32..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201707_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.08678655624389649 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201707_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201707_H_GLOBAL.out deleted file mode 100644 index a34012279981bf3abb9357ac8104aea758df6ee7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201707_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.08796173731486003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201707_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201707_M_GLOBAL.out deleted file mode 100644 index d8b29900ae657b99140da234426b106ded094346..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201707_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201707 STATION NETCDFs -0.09959009488423666 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201708_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201708_D_GLOBAL.out deleted file mode 100644 index 7f1d5d5cd461970eaeee062d94b33c70dca4c136..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201708_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.08058467706044516 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201708_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201708_H_GLOBAL.out deleted file mode 100644 index a412f926b497e7640265b43f015cc8966016eb7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201708_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.09440059264500936 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201708_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201708_M_GLOBAL.out deleted file mode 100644 index 3f4db5b1cc20bc3c27f56250b7a2a3cbd051abd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201708_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201708 STATION NETCDFs -0.11020023028055827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201709_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201709_D_GLOBAL.out deleted file mode 100644 index d671c69ed903619625f9774c27444954bffd7ee0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201709_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.08135006427764893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201709_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201709_H_GLOBAL.out deleted file mode 100644 index 74df71a3233d400bda2f67c011909beac9f10a28..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201709_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.08936009009679159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201709_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201709_M_GLOBAL.out deleted file mode 100644 index 5fd6d75ab88a9b1ff1b29eebfc2add77a8e2f605..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201709_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201709 STATION NETCDFs -0.09163605372111003 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201710_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201710_D_GLOBAL.out deleted file mode 100644 index 4859829556a707ba761fc65d7b6d891bbe30bf63..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201710_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.08938246965408325 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201710_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201710_H_GLOBAL.out deleted file mode 100644 index 99fa09fe1cf2f56209da04ce1170e974fb9fa612..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201710_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.08622357447942099 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201710_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201710_M_GLOBAL.out deleted file mode 100644 index 039a07fc31fb74abbb09412302ff8312a82a5b4d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201710_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201710 STATION NETCDFs -0.07863207260767618 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201711_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201711_D_GLOBAL.out deleted file mode 100644 index 13e966daa36c5649a7ba35fd3b496220364aac4b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201711_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.1080019474029541 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201711_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201711_H_GLOBAL.out deleted file mode 100644 index 3cd62853f6f24fff304507a9e3c701a8628fcb53..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201711_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.09414469003677368 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201711_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201711_M_GLOBAL.out deleted file mode 100644 index 36a85eb726f0b9e1bafa66711cd0c471a9ecb069..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201711_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201711 STATION NETCDFs -0.093431822458903 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201712_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201712_D_GLOBAL.out deleted file mode 100644 index f7c7caf7e7b33d265f1d04a16cd66da6a561f89c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201712_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.09058839480082194 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201712_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201712_H_GLOBAL.out deleted file mode 100644 index cb7792889d834e05ff37c1b79cabd7c670ac0934..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201712_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.08456003665924072 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201712_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201712_M_GLOBAL.out deleted file mode 100644 index 1ffed8d97c2428d590bf1e9ba7c718274d9ec552..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201712_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201712 STATION NETCDFs -0.09452571868896484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201801_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201801_D_GLOBAL.out deleted file mode 100644 index 719bc03e35790638799874dfa2f52f8706a4bc0c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201801_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.1046950658162435 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201801_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201801_H_GLOBAL.out deleted file mode 100644 index 04d9248c645236392fe43169254d7ba127fba658..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201801_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.08792744477589926 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201801_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201801_M_GLOBAL.out deleted file mode 100644 index 13f5d0c5d23be939b879fb66651b48bee4ad08db..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201801_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201801 STATION NETCDFs -0.08343732357025146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201802_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201802_D_GLOBAL.out deleted file mode 100644 index fb12297532e352375e737114ac6d058453c22dca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201802_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.10339247385660807 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201802_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201802_H_GLOBAL.out deleted file mode 100644 index f82eb2ceee32c324a28017803ef6c12c594a79f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201802_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.08826859792073567 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201802_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201802_M_GLOBAL.out deleted file mode 100644 index 659c741f7499df519a05fda1fda7ded7628b4ef1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201802_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201802 STATION NETCDFs -0.08797306617101033 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201803_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201803_D_GLOBAL.out deleted file mode 100644 index ec380fca68e41ddd24fb694a33d30175b4c1c3bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201803_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.08879486719767253 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201803_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201803_H_GLOBAL.out deleted file mode 100644 index ff0d912054be4f3b94c0a84c845fcdc8c7e02d95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201803_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.09039116303126017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201803_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201803_M_GLOBAL.out deleted file mode 100644 index 72c2c993653a21e218aa065d3d3aa62f84940182..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201803_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201803 STATION NETCDFs -0.09689311981201172 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201804_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201804_D_GLOBAL.out deleted file mode 100644 index 834a2abbf04f1425e5e30887b87f7cc3364ba738..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201804_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.09679664373397827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201804_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201804_H_GLOBAL.out deleted file mode 100644 index ad90367f92fd2fb981cffe13169035000e169512..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201804_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.08856136401494344 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201804_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201804_M_GLOBAL.out deleted file mode 100644 index 141b30a39106f9ea65deae680b01fe516f634666..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201804_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201804 STATION NETCDFs -0.12076311111450196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201805_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201805_D_GLOBAL.out deleted file mode 100644 index 46cd77e24f0bcd68cdec285a76eed36d9990b241..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201805_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.08764296770095825 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201805_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201805_H_GLOBAL.out deleted file mode 100644 index e1017cfa59840dd9044c41c3eeb427f23b2a22d2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201805_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.10282160441080729 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201805_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201805_M_GLOBAL.out deleted file mode 100644 index a0d37f02fd4091f761867a6a0056076f78e70144..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201805_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201805 STATION NETCDFs -0.09671907424926758 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201806_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201806_D_GLOBAL.out deleted file mode 100644 index fab0b1fd56479649c9ebe14e703ad28fb45d8217..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201806_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.09466728369394938 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201806_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201806_H_GLOBAL.out deleted file mode 100644 index 54fa60b1d5b6d5f21cb370e482d0249bf5a2c59f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201806_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.07902247508366902 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201806_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201806_M_GLOBAL.out deleted file mode 100644 index 0bd5f15c6f923af0410afa4e3409e182a335a2dd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201806_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201806 STATION NETCDFs -0.08172467549641928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201807_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201807_D_GLOBAL.out deleted file mode 100644 index 1ee2b00e53d12e7791ff0c381f92e1b54d350004..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201807_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.09544801712036133 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201807_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201807_H_GLOBAL.out deleted file mode 100644 index d85930d5a59ece43e5f91317deb25f25780faf36..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201807_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.087550950050354 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201807_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201807_M_GLOBAL.out deleted file mode 100644 index 4849b200814c6c9b5ddb04da702568e6f1091ad0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201807_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201807 STATION NETCDFs -0.12252877950668335 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201808_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201808_D_GLOBAL.out deleted file mode 100644 index da4bb55099303826a26682ca3f6d933ff49f430f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201808_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.0890632708867391 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201808_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201808_H_GLOBAL.out deleted file mode 100644 index 9c18962234241b5a35cd74fddbe2b97211abc0eb..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201808_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.09098043044408162 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201808_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201808_M_GLOBAL.out deleted file mode 100644 index 70ab9cbceb33a431471fc75c4490665816f72b8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201808_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201808 STATION NETCDFs -0.105979323387146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201809_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201809_D_GLOBAL.out deleted file mode 100644 index 6d816b4cdb5630c6226c9aaf7fd4c795a91372dc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201809_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.09812313318252563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201809_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201809_H_GLOBAL.out deleted file mode 100644 index dc45c1a158db81d82a03a45b3a6ea5d2ecdc5f90..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201809_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.0870818297068278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201809_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201809_M_GLOBAL.out deleted file mode 100644 index 1370d8082a005589159f2425b6df5f35f073d259..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201809_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201809 STATION NETCDFs -0.09457236925760905 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201810_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201810_D_GLOBAL.out deleted file mode 100644 index 06a78d4c0f1f194ecf6c4c8afa3ced2b6a2cf713..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201810_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.08821231126785278 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201810_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201810_H_GLOBAL.out deleted file mode 100644 index 192415513b483e40f29bf2eaab680ed3cf6962d0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201810_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.08403913180033366 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201810_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201810_M_GLOBAL.out deleted file mode 100644 index f647b1965129e765e52459857c390c08c8a36e0d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201810_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201810 STATION NETCDFs -0.0948203166325887 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201811_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201811_D_GLOBAL.out deleted file mode 100644 index 828a58c1ff4f601012a43477bc0a312c691f4575..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201811_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.09083633422851563 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201811_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201811_H_GLOBAL.out deleted file mode 100644 index 169b4d12f59462fad58336f68a1550f822389e43..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201811_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.08794401486714681 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201811_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201811_M_GLOBAL.out deleted file mode 100644 index 8c8ea2c36db8344c2880465f3375fb04cfba1962..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201811_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201811 STATION NETCDFs -0.09261144399642944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201812_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201812_D_GLOBAL.out deleted file mode 100644 index e2eef7bb92543db67fbce0dc185778ab59a2fa44..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.09149850209554036 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201812_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201812_H_GLOBAL.out deleted file mode 100644 index 7c7f2c5071bf68ffe3d712f6d8ed96fb8f2145d7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.0870922327041626 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201812_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201812_M_GLOBAL.out deleted file mode 100644 index 8e5e55bf5f0153ea8d450f9b87fb142308dc493d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.09671836694081624 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index 98d26c3e2e4085dbcc869b964adf15dad139f720..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.09341471592585246 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index a42c9bc2b886eaf789a074476eb493572c249c9a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.09250611861546834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index af3d364bd931fece55dc6c91f7316e2bd756b1c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.09986485242843628 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index 6d6a826d16efafddea17607e3c35b3f139f84858..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.09361646175384522 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index 270297322aff3009360743ccdb2da9c2e8163493..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.08029073079427083 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index 3055b92ad5b05cca91c85076a865b9f8e92315b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.11409692366917928 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index 9b7f8356725294ba92cd48cec67e433dc082440f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.09568869272867839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index 2c25324c1a2602a99b310b1a4c736c0229340e7e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.09577425320943196 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index 08d4ce497d6a1a1273e6cc255bfd026a4836276e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.10234463612238566 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index 7cdeddd57fce00365f4ef1684831d7faad11e0f3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.09154539903004964 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index 4f36c466bbc7010634d09eaecfc597781ccfd3ca..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.07905501921971639 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index ff5a160170432d5daa99b46e0b8f328f42d7e170..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.09809960524241129 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index 330b1a83f59be9d15bd2543742ca90db4ab2dd8c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.09068113565444946 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index 4c836fff63890cad343327bef8c14c581eca5e6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.08845734596252441 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index 150d155240b53fc93a7f86e229ff51b7bd0656a9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.11297447284062703 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index 34a9f4d5b826ad7cb834860f81b665e27801e0b2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.08686946233113607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index a29ec84a07e21e0660ce9790cad0477f2868a4d3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.0816685438156128 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index 5c9acc8c9a5dc11718747a5f03c665dd5ed0e71e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.09152494668960572 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202006_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202006_D_GLOBAL.out deleted file mode 100644 index 53c389f6b8ba67adc2f7a762bc7890e7bdb526f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202006_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.08332897424697876 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202006_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202006_H_GLOBAL.out deleted file mode 100644 index a9531b497005f926adcb5eb148fad59ff13cb4a8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202006_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.0841686209042867 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202006_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202006_M_GLOBAL.out deleted file mode 100644 index cd022916c4c4adc155afd70c4167a5f0c96087a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202006_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202006 STATION NETCDFs -0.08108550707499186 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202007_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202007_D_GLOBAL.out deleted file mode 100644 index e4c7d078c1f8741e4e764f8bc70884a6ea9bad87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202007_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.09409105777740479 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202007_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202007_H_GLOBAL.out deleted file mode 100644 index 2f71128ae4d2d2587d84f7b172bbdc06f08855bc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202007_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.09295291105906169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202007_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202007_M_GLOBAL.out deleted file mode 100644 index e480d7a896fe74328bc40de974b5a711a136c5e8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202007_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202007 STATION NETCDFs -0.07869753440221151 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202008_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202008_D_GLOBAL.out deleted file mode 100644 index f4fd2e1ff02ae887c31667ee3f41320c30ca7b57..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202008_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.08049118518829346 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202008_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202008_H_GLOBAL.out deleted file mode 100644 index 0fe180794259b8580e9b4520098cd8e0a0ffbc3a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202008_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.06963467597961426 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202008_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202008_M_GLOBAL.out deleted file mode 100644 index 4fdd0bd0784069fe56602504ca0a5edf7e3a371b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202008_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202008 STATION NETCDFs -0.07677193880081176 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202009_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202009_D_GLOBAL.out deleted file mode 100644 index 4f50daca9a0e17f4b69fa908135f873b47afdf73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202009_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.07645152012507121 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202009_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202009_H_GLOBAL.out deleted file mode 100644 index d204c8121995ab533dd20a7e47d4e9ef05c0e70e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202009_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.09435596863428751 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202009_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202009_M_GLOBAL.out deleted file mode 100644 index 7fa2d1e7e6866f55186197c585fff72180f6f8ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202009_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202009 STATION NETCDFs -0.09075127442677816 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202010_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202010_D_GLOBAL.out deleted file mode 100644 index 377c76cda1faebaff8f6550dc72f41c7721ed191..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202010_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.0773741086324056 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202010_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202010_H_GLOBAL.out deleted file mode 100644 index 573e16dfa46dcb353b104884efaf9d68c25c64ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202010_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.08015214204788208 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202010_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202010_M_GLOBAL.out deleted file mode 100644 index 104b23e251ce54330541cad4b7113084a975cbdd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202010_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202010 STATION NETCDFs -0.07165056864420573 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202011_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202011_D_GLOBAL.out deleted file mode 100644 index 2fbfe61632988aa75d1398e795a04630e418c779..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202011_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.09552942117055258 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202011_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202011_H_GLOBAL.out deleted file mode 100644 index 1915404a6b7dc0f8f31f630bb5236103f1a46914..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202011_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.08735905885696411 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202011_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202011_M_GLOBAL.out deleted file mode 100644 index 133d9f0edff024fa6531f775201361e2d66c47f0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202011_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202011 STATION NETCDFs -0.087427286307017 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202012_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202012_D_GLOBAL.out deleted file mode 100644 index a286488dadf55f6ae52d238a4bcefd8e32259369..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202012_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.08420639832814535 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202012_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202012_H_GLOBAL.out deleted file mode 100644 index 08220d16cac7b272cdda5b6972bd498754674335..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202012_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.09006033738454183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202012_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202012_M_GLOBAL.out deleted file mode 100644 index 359abee7477d1d4bffc8d74f7b0a0d3c84eaf744..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202012_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202012 STATION NETCDFs -0.0844126542409261 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202101_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202101_D_GLOBAL.out deleted file mode 100644 index b6e117a49f793a13525a197c76372e4afada1172..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202101_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.05032498041788737 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202101_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202101_H_GLOBAL.out deleted file mode 100644 index be3e40ead94aa33c1178f395798b0d33dd7a794c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202101_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.04358071486155192 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202101_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202101_M_GLOBAL.out deleted file mode 100644 index 8d0273b97c3db37552b053bd3afbc1463d50a78c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202101_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202101 STATION NETCDFs -0.030256219704945884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202102_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202102_D_GLOBAL.out deleted file mode 100644 index 1dca117958403e7cd6eecd269b19dfb7b53dbbc5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202102_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.04604269663492839 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202102_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202102_H_GLOBAL.out deleted file mode 100644 index f3811bfb51d3e859aac499bf06ed6514fce47acf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202102_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.028288777669270834 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202102_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202102_M_GLOBAL.out deleted file mode 100644 index 473a13a11ec69023fb03797e0cd6cb8f425a69d5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202102_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202102 STATION NETCDFs -0.017596375942230225 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202103_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202103_D_GLOBAL.out deleted file mode 100644 index d3fc9292b47963e1c6d86ecc1907865a86d2013b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202103_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.029591047763824464 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202103_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202103_H_GLOBAL.out deleted file mode 100644 index c39b020fbee6213d3ddd9421852c6a5fb38ca3b1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202103_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.026082603136698405 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202103_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202103_M_GLOBAL.out deleted file mode 100644 index 9fa392fe5293382b7e3f604986818df9d9655574..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202103_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202103 STATION NETCDFs -0.026708634694417317 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202104_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202104_D_GLOBAL.out deleted file mode 100644 index 8a241f53a8bdee1db253c102adf97abd9c50e66b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202104_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.020573552449544272 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202104_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202104_H_GLOBAL.out deleted file mode 100644 index ce43a673eaf00d003d0a9cfc0f8a47c5a4c5b99d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202104_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.028926801681518555 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202104_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202104_M_GLOBAL.out deleted file mode 100644 index 23dda7408f435112e9c2c5b3019f6a142d270659..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202104_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202104 STATION NETCDFs -0.01910257339477539 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202105_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202105_D_GLOBAL.out deleted file mode 100644 index 45c9775ca7a0158e99f883d58f309b1c87208fd7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202105_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.026102507114410402 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202105_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202105_H_GLOBAL.out deleted file mode 100644 index b7ef6c097c88f546813a69b175272e95a478b128..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202105_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.02517388661702474 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202105_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202105_M_GLOBAL.out deleted file mode 100644 index 3c8d069d054683263a06f2a4803a3e2dc17aed08..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202105_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202105 STATION NETCDFs -0.025044484933217367 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202106_D_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202106_D_GLOBAL.out deleted file mode 100644 index 0b67fbeae82228b92aa05373b164c801ca3fc1fe..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202106_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.0356775959332784 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202106_H_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202106_H_GLOBAL.out deleted file mode 100644 index 7c6bcabae615bd8bb8d13536d5f314b697910230..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202106_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.03703003724416097 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_SO2/T2/0_202106_M_GLOBAL.out b/run/stage_logs/NAPMD_SO2/T2/0_202106_M_GLOBAL.out deleted file mode 100644 index afc1f23c2a55ee98b6d609bcc3cfdf137445b7ff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_SO2/T2/0_202106_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202106 STATION NETCDFs -0.04797900120417277 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/S1/0_2019.out b/run/stage_logs/NAPMD_TOLUENE/S1/0_2019.out deleted file mode 100644 index 62ed1aed7d1666ce41a8c9a92524afc91e751312..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/S1/0_2019.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/TOLUENE_2019.csv -110 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.010087259610493978 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/S1/0_2020.out b/run/stage_logs/NAPMD_TOLUENE/S1/0_2020.out deleted file mode 100644 index 21646a65c729056a0c2c1b4c8c083d879b182462..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/S1/0_2020.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/TOLUENE_2020.csv -110 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.009103842576344808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/S2/0_110_UNK.out b/run/stage_logs/NAPMD_TOLUENE/S2/0_110_UNK.out deleted file mode 100644 index 4daaa36f2d8cf8c18907fc34cc49a6abbf3bf6ae..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/S2/0_110_UNK.out +++ /dev/null @@ -1,4 +0,0 @@ -110_UNK -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006400640805562337 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/S2/0_96_UNK.out b/run/stage_logs/NAPMD_TOLUENE/S2/0_96_UNK.out deleted file mode 100644 index cf2e8c3c032363c321196d20149492a92e396666..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/S2/0_96_UNK.out +++ /dev/null @@ -1,4 +0,0 @@ -96_UNK -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.006246022383371989 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/S3/0_110_UNK.out b/run/stage_logs/NAPMD_TOLUENE/S3/0_110_UNK.out deleted file mode 100644 index c3fa18c27e4524f03fdd97ef6c42359fd65806f1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/S3/0_110_UNK.out +++ /dev/null @@ -1,23 +0,0 @@ -110_UNK -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.8972682078679403 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/S3/0_96_UNK.out b/run/stage_logs/NAPMD_TOLUENE/S3/0_96_UNK.out deleted file mode 100644 index 7b43b8dc9d5f7732c00d647c6e577544af8f0133..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/S3/0_96_UNK.out +++ /dev/null @@ -1,23 +0,0 @@ -96_UNK -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.1882375319798788 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T1/0_110_UNK_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T1/0_110_UNK_D_GLOBAL.out deleted file mode 100644 index 10dcd68e93a29c348d03ed5bf5fd4864bd92ba95..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T1/0_110_UNK_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.26262427965799967 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T1/0_110_UNK_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T1/0_110_UNK_H_GLOBAL.out deleted file mode 100644 index 41b5451e9f9de8e6261bdf73b0ab8123310b59da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T1/0_110_UNK_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.26029334863026937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T1/0_110_UNK_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T1/0_110_UNK_M_GLOBAL.out deleted file mode 100644 index 3efb286833527d492d73fa05a23f18e456223894..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T1/0_110_UNK_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.0571868896484375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T1/0_96_UNK_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T1/0_96_UNK_D_GLOBAL.out deleted file mode 100644 index 5ff70871ab056e6c5a3681850fd39b79a8e2da58..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T1/0_96_UNK_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2171059211095174 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T1/0_96_UNK_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T1/0_96_UNK_H_GLOBAL.out deleted file mode 100644 index c09a89d365f87fb4a3b545afa6ce6525a4f61b0e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T1/0_96_UNK_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.23141106764475505 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T1/0_96_UNK_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T1/0_96_UNK_M_GLOBAL.out deleted file mode 100644 index c340c5f399069deb79d9761c34dde36154ba19ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T1/0_96_UNK_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.05595018068949382 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201812_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201812_D_GLOBAL.out deleted file mode 100644 index 5b1fe12151361cab5e803064ded67f652e0dc39b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.075478196144104 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201812_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201812_H_GLOBAL.out deleted file mode 100644 index 8359980ced8551645491ff92a9ad1925f1471c98..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.043915176391601564 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201812_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201812_M_GLOBAL.out deleted file mode 100644 index fac9ca127c67db7532c03bc0d835b659cd228566..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.07522368828455607 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201901_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201901_D_GLOBAL.out deleted file mode 100644 index 21871116be2ab52f7381cc33629b8b13ea79b399..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.07318062782287597 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201901_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201901_H_GLOBAL.out deleted file mode 100644 index 2a3ee146fc3f3cbebc4a06476ee7760d91efd823..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.07525643110275268 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201901_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201901_M_GLOBAL.out deleted file mode 100644 index 9b45873ca0b2369b7294e9e559113f32413dee87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.05716026226679484 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201902_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201902_D_GLOBAL.out deleted file mode 100644 index 4f82fd9ae4b66e7285e434c03e5c9557febd895c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.07241308689117432 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201902_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201902_H_GLOBAL.out deleted file mode 100644 index a4d133870c4b0d26b8946a189708f88e2db9b5cd..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.07343512376149496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201902_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201902_M_GLOBAL.out deleted file mode 100644 index ec114f2b9066fe88ebf0cb8f182989766637d788..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.07389358282089234 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201903_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201903_D_GLOBAL.out deleted file mode 100644 index da04e05692e641694dffcab6be7f722708df671b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.06091479460398356 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201903_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201903_H_GLOBAL.out deleted file mode 100644 index 724f24e8f3ac8dc6a3dd193f88f8e787444b05a7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.07350335518519084 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201903_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201903_M_GLOBAL.out deleted file mode 100644 index 5f877752ee52dc0ac62ea5ec34b984f14d2f75a6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.03624106248219808 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201904_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201904_D_GLOBAL.out deleted file mode 100644 index 2c6349253cc7c2cc3394a5c657881956053335b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.07482246160507203 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201904_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201904_H_GLOBAL.out deleted file mode 100644 index de3ce6dcbba77ddcdddca6088c4523a7d0fa276d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.07372475862503051 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201904_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201904_M_GLOBAL.out deleted file mode 100644 index fed3273547bf1a77bf070ef13f1af248a8ecb6c2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.03511757453282674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201905_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201905_D_GLOBAL.out deleted file mode 100644 index a4e7d34841f68b5d48bff12fa16b4e2e2083d025..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.07228709061940511 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201905_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201905_H_GLOBAL.out deleted file mode 100644 index 3e80198ba93583135b22b16614dc0835bdc5e1ef..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.07231266895929972 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201905_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201905_M_GLOBAL.out deleted file mode 100644 index 38552473cae380abadc1333267daa9da04cd45da..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.03546467622121175 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201906_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201906_D_GLOBAL.out deleted file mode 100644 index 40d0966cc2035ba9d9ffc7eddaba066b1c57d0a1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.07495217720667521 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201906_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201906_H_GLOBAL.out deleted file mode 100644 index 27c9ac2a558af105d43cfc305a0f9f7e4a279a8b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.07475169499715169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201906_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201906_M_GLOBAL.out deleted file mode 100644 index 9e01d513c1e3b1339e0f7ffbebfccc91c0acbdaa..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.03146820068359375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201907_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201907_D_GLOBAL.out deleted file mode 100644 index fbbdef1318c9150dad8a6ade23f03e32403e02b5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.059649948279062906 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201907_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201907_H_GLOBAL.out deleted file mode 100644 index ded13df37ddb072e339d5b8addfd0b609eb3948b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.07383403380711874 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201907_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201907_M_GLOBAL.out deleted file mode 100644 index 2e5f0f22cdab8ee6305a7925fe45ba7eab17ccd2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.07353729804356893 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201908_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201908_D_GLOBAL.out deleted file mode 100644 index bb809c0b802bbce37142cb1733f56e9ffeba745f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.03129625717798869 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201908_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201908_H_GLOBAL.out deleted file mode 100644 index 86b1fa44d93dbd5c2d80b955b06ccd1eb3364ebf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.06068524122238159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201908_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201908_M_GLOBAL.out deleted file mode 100644 index 57aa30f57b36128ec4dd8bf5dbdd616f60facdb0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.07111701170603434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201909_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201909_D_GLOBAL.out deleted file mode 100644 index 8fdf858cf52f350177380a1ef3bab2fecd245129..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.03172462383906047 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201909_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201909_H_GLOBAL.out deleted file mode 100644 index 1a372dd394213524497a6561d7b7109562beb44f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.07324556907018026 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201909_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201909_M_GLOBAL.out deleted file mode 100644 index 4482f1c4f10c0da602f5e74f6904c68b936e2c5d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.06106828848520915 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201910_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201910_D_GLOBAL.out deleted file mode 100644 index f08a80405f5865f7f7deca23e156284a7a006adf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.029271177450815835 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201910_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201910_H_GLOBAL.out deleted file mode 100644 index eaff16e43df6e503f8cdf92869baed38008e6c81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.05875653028488159 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201910_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201910_M_GLOBAL.out deleted file mode 100644 index f789ffcbf2aa8909307b2bd5b97827225438fa3c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.0393739382425944 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201911_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201911_D_GLOBAL.out deleted file mode 100644 index 4a3d4e016e919cfc28ba227b411b773ca39f439d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.0761953075726827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201911_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201911_H_GLOBAL.out deleted file mode 100644 index 6715f6ff9ecfe9c93ea0f16aec0e31fa1a2715ed..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.07398120562235515 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201911_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201911_M_GLOBAL.out deleted file mode 100644 index 7838b98af210e6d1c469d0490596d2b4f5cdd9be..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.0323722243309021 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index 5e3436f911aa446fd9daed6d5dc40cc69cf84c87..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.06022040446599324 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index d75a618c635c9f62873c206363a3fb40854b481f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.04410010576248169 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index 0a01f623240d22c7225610e00e45b71aecdc2296..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.07784400383631389 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index e28c995e7612a89901dba8126dfb48345de71fd6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.0745779832204183 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index abec83d3dc248ddbf755939cb374109ada62092f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.0732146143913269 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index 0db78ffc809c3db8adba85249c53d73daf4ce796..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.03163508176803589 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index 95d455f0bbff298000601f74a2b7e6a318aadec4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.04466093381245931 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index 5dd1d8e148ecc82769e9599f0e40adf3878c8f7a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.06728532314300537 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index 4fccef0eb3f6fa75e4d70a8507d9d59c3f63e784..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.03972368637720744 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index ed7159f7c7e4b55f048783d173983b1c00342ca9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.07302010854085286 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index 1177af9e734a42f08f07b15eb0c7c257882589d1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.07461839516957601 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index bc412719361462a6e21d8c9d75020c220bff8d2a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.07130929629007975 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index 2a9478ab06a71f2d03692427fa3f4b2f820fc198..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.03198599815368652 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index f0b3d0f413e2facbed534a7296273725cea54ccc..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.07421692212422688 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index 253cf36ad09006b8924f02943a668afa6ca458c3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.02514272133509318 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index c7a85e92fd9527a0a35cfd90a525594417981c1c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.038414843877156574 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index d59b7d67d4e61844e490976f63ae21fabc24bb41..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.0627669334411621 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_TOLUENE/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_TOLUENE/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index 92eaa73b7204003e1f19573381c9d9a765069e73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_TOLUENE/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.07467031478881836 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/S1/0_2019.out b/run/stage_logs/NAPMD_XYLENE/S1/0_2019.out deleted file mode 100644 index 8b0795f805788acb315d61f06a6f371977bc4647..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/S1/0_2019.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2019/XYLENE_2019.csv -110 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.014780044555664062 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/S1/0_2020.out b/run/stage_logs/NAPMD_XYLENE/S1/0_2020.out deleted file mode 100644 index 4f74dd7e13073ce2ad2e8e516a9efa2f36e92f02..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/S1/0_2020.out +++ /dev/null @@ -1,4 +0,0 @@ -PROCESSING FILE: /gpfs/projects/bsc32/AC_cache/obs/ghost/NAPMD/original_files/1.5.1/hourly/2020/XYLENE_2020.csv -110 -- PARSING RAW DATA -96 -- PARSING RAW DATA -0.012568175792694092 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/S2/0_110_UNK.out b/run/stage_logs/NAPMD_XYLENE/S2/0_110_UNK.out deleted file mode 100644 index c63367c041c180341a5defb263fdb424ed99379e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/S2/0_110_UNK.out +++ /dev/null @@ -1,4 +0,0 @@ -110_UNK -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.005195677280426025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/S2/0_96_UNK.out b/run/stage_logs/NAPMD_XYLENE/S2/0_96_UNK.out deleted file mode 100644 index 004cd09ae9b677975ecb3e80c6e591d51463544f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/S2/0_96_UNK.out +++ /dev/null @@ -1,4 +0,0 @@ -96_UNK -- JOIN STATION SPECIFIC MEASUREMENTS -MULTIPLE FILES, BUT NO OVERLAPS. APPENDING FILES. -EVALUATING VARIABILITY OF REPORTED MEASUREMENT POSITION. -0.0029822548230489096 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/S3/0_110_UNK.out b/run/stage_logs/NAPMD_XYLENE/S3/0_110_UNK.out deleted file mode 100644 index e7603f953ea709d5c2e25367712d2fad813ec053..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/S3/0_110_UNK.out +++ /dev/null @@ -1,23 +0,0 @@ -110_UNK -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -0.9869797348976135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/S3/0_96_UNK.out b/run/stage_logs/NAPMD_XYLENE/S3/0_96_UNK.out deleted file mode 100644 index 6abe21048dacc485d9bde3c1e2d47e9914d7ed81..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/S3/0_96_UNK.out +++ /dev/null @@ -1,23 +0,0 @@ -96_UNK -- GLOBALLY GRIDDED METADATA -GETTING UMBC ANTHROME METADATA -GETTING ASTER v3 METADATA -GETTING ETOPO1 METADATA -GETTING GSFC COASTLINE PROXIMITY METADATA -GETTING KOPPEN-GEIGER CLASSIFICATION METADATA -GETTING MEYBECK TERRAIN CLASSIFICATION METADATA -GETTING IWAHASHI TERRAIN CLASSIFICATION METADATA -GETTING MODIS LAND USE/LAI METADATA -GETTING GHSL AREA/POPULATION DENSITIES AND SETTLEMENT MODEL CLASSIFICATIONS -GETTING NOAA DMSP OLS NIGHTTIME STABLE LIGHTS -GETTING GPW POPULATION DENSITY -GETTING OMI NO2 COLUMN DATA -GETTING EDGAR EMISSIONS DATA -GETTING JOLY-PEUCH CLASSIFICATION CODES -GETTING WWF TEOW CLASSIFICATION METADATA -GETTING WMO REGION METADATA -GETTING REVERSE GEOCODE STATION METADATA -GETTING STATION LOCAL TIMEZONE METADATA -GETTING WIGOS STATION IDENTIFIER METADATA -QUALITY CONTROL -TEMPORAL CODES -1.2732357740402223 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T1/0_110_UNK_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T1/0_110_UNK_D_GLOBAL.out deleted file mode 100644 index cc4eb443ef824cdfafde39b41183d142dca6379e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T1/0_110_UNK_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.18986556927363077 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T1/0_110_UNK_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T1/0_110_UNK_H_GLOBAL.out deleted file mode 100644 index b8edc8e3b88f92740b3be1a14cdc4a85941f3c10..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T1/0_110_UNK_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.28285767634709674 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T1/0_110_UNK_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T1/0_110_UNK_M_GLOBAL.out deleted file mode 100644 index 494bbb19d02eb5e92fc2454b0094ac95f5bd1b8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T1/0_110_UNK_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -110_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.057376023133595785 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T1/0_96_UNK_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T1/0_96_UNK_D_GLOBAL.out deleted file mode 100644 index 986a3712698175da326c6ec47bfdcb953bc82ef1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T1/0_96_UNK_D_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.31868858337402345 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T1/0_96_UNK_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T1/0_96_UNK_H_GLOBAL.out deleted file mode 100644 index 4f12a5c462ef9c816cd0188f3cb28149e6bad0c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T1/0_96_UNK_H_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.2865934451421102 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T1/0_96_UNK_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T1/0_96_UNK_M_GLOBAL.out deleted file mode 100644 index 5da0089f4d8584c77113cd9064da295798b1fff3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T1/0_96_UNK_M_GLOBAL.out +++ /dev/null @@ -1,3 +0,0 @@ -96_UNK -- TEMPORALLY AVERAGE DATA -WRITING TO MONTHLY STATION SPECIFIC TEMPORALLY GRIDDED netCDFs -0.057620410124460855 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201812_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201812_D_GLOBAL.out deleted file mode 100644 index f4114e2f30b9e5ecaeb08aae2f8cd5bd34d43e65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201812_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.033135036627451576 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201812_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201812_H_GLOBAL.out deleted file mode 100644 index 1f052190adb9e3df09581a4d67035940a885318a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201812_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.019976500670115152 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201812_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201812_M_GLOBAL.out deleted file mode 100644 index 231f11e2da5276426aeffb351c24ed437b847f5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201812_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201812 STATION NETCDFs -0.03004531462987264 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201901_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201901_D_GLOBAL.out deleted file mode 100644 index 000147352d5ed17c7a3964cb9b7eb8f132822133..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201901_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.03401256402333577 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201901_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201901_H_GLOBAL.out deleted file mode 100644 index 0ffad843eee415a85fe4cf7dd89580a35124aec3..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201901_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.027433490753173827 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201901_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201901_M_GLOBAL.out deleted file mode 100644 index 172895ce79b07bee7c5094206f053aed18d0cf65..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201901_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201901 STATION NETCDFs -0.03429196278254191 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201902_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201902_D_GLOBAL.out deleted file mode 100644 index fc60e269d9853939a7456f5500ef84b18387bdb7..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201902_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.01914056142171224 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201902_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201902_H_GLOBAL.out deleted file mode 100644 index 85d0287107c830d016182e4b076ea1a80ecdae6f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201902_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.020177904764811197 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201902_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201902_M_GLOBAL.out deleted file mode 100644 index f17dea5f7dc3df3d0bd61038bd5dd77f0123c36d..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201902_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201902 STATION NETCDFs -0.03238375584284465 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201903_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201903_D_GLOBAL.out deleted file mode 100644 index 8cdec5b74be94b6c0ba77ca469864abe8118750a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201903_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.02472058137257894 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201903_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201903_H_GLOBAL.out deleted file mode 100644 index 1825533081cadc1aee4072fc1d52616728504cd1..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201903_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.033168951670328774 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201903_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201903_M_GLOBAL.out deleted file mode 100644 index c34e8d6c03db0ad1579170841133c3e769f73bd5..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201903_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201903 STATION NETCDFs -0.03452415068944295 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201904_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201904_D_GLOBAL.out deleted file mode 100644 index c8110a64699ae5576da392443b2345514077892b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201904_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.03174459536870321 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201904_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201904_H_GLOBAL.out deleted file mode 100644 index 209f6fd700ec6fb20284e8d49489375eca039386..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201904_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.021265820662180582 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201904_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201904_M_GLOBAL.out deleted file mode 100644 index 08ee6a34430e11fbf953e1f364148357b49df266..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201904_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201904 STATION NETCDFs -0.019555715719858806 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201905_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201905_D_GLOBAL.out deleted file mode 100644 index 74bad4fd272ad2d20abef1797ca82453e1e7ffdf..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201905_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.02468344767888387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201905_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201905_H_GLOBAL.out deleted file mode 100644 index 5e24c56545ff4e75e3312caa0d6058e71ba2aaff..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201905_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.02297995090484619 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201905_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201905_M_GLOBAL.out deleted file mode 100644 index 17997c6a8fba8566d60ae8d533d6a3f1493f0f5f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201905_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201905 STATION NETCDFs -0.030541956424713135 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201906_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201906_D_GLOBAL.out deleted file mode 100644 index 02f30a6fb6175bbfa2ebc515288b0143b00620ad..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201906_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.023898688952128093 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201906_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201906_H_GLOBAL.out deleted file mode 100644 index 1fd5c0d90f5b34a605b70674145670fa50f3a19c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201906_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.033772762616475424 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201906_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201906_M_GLOBAL.out deleted file mode 100644 index cee4d32ba9848478db4cae30d7e8a786290f6965..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201906_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201906 STATION NETCDFs -0.01916613578796387 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201907_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201907_D_GLOBAL.out deleted file mode 100644 index 446ccf68d9ac743c88ef54c9f79dadce36ec9f7c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201907_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.02462069590886434 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201907_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201907_H_GLOBAL.out deleted file mode 100644 index 8f5f408a025e85c0645db139ee00af7b3da5443e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201907_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.02531410058339437 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201907_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201907_M_GLOBAL.out deleted file mode 100644 index 4c0d684e6ee76c912d45cdb7f03d04da7b9ecea2..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201907_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201907 STATION NETCDFs -0.028877667586008706 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201908_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201908_D_GLOBAL.out deleted file mode 100644 index e74d71e281d96bf9c6c4e1a813fdb7192a9cca45..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201908_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.02826395829518636 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201908_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201908_H_GLOBAL.out deleted file mode 100644 index 326774d152ef5165dd44c2d07e4b5855607655b8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201908_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.019872812430063884 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201908_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201908_M_GLOBAL.out deleted file mode 100644 index a24597ec43c067f7c821336f63104cb0d1710e88..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201908_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201908 STATION NETCDFs -0.03371312220891317 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201909_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201909_D_GLOBAL.out deleted file mode 100644 index 67878345e6a278e0da916d2c064c475f7635b0f8..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201909_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.025039509932200114 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201909_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201909_H_GLOBAL.out deleted file mode 100644 index fb7395b2adabac218582e78222640f975d40f9ce..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201909_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.025048784414927163 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201909_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201909_M_GLOBAL.out deleted file mode 100644 index e537c4ad94bd9d199f21b1f7f4c72a9979a79908..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201909_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201909 STATION NETCDFs -0.017439373334248862 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201910_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201910_D_GLOBAL.out deleted file mode 100644 index a2330feb1fcdf2b1a3e0c7ccd3eb6325be53d3c0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201910_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.03259564240773519 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201910_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201910_H_GLOBAL.out deleted file mode 100644 index 471e36b54992ac4177ec3ac661a928c31d4c12c6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201910_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.034855322043100996 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201910_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201910_M_GLOBAL.out deleted file mode 100644 index 281f3001889b699590f1e3c0890a812b1dc3f80f..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201910_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201910 STATION NETCDFs -0.030400331815083823 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201911_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201911_D_GLOBAL.out deleted file mode 100644 index 2af76b0d4a6785e41697260974dcfdefd8f14058..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201911_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.021372207005818687 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201911_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201911_H_GLOBAL.out deleted file mode 100644 index 2e5d399dbfb3f71de7f0af9d00e73ccdac198c83..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201911_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.030506332715352375 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201911_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201911_M_GLOBAL.out deleted file mode 100644 index fce43b8c2ab251577d92809c0a4c206b10471d7b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201911_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201911 STATION NETCDFs -0.015022846062978108 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201912_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201912_D_GLOBAL.out deleted file mode 100644 index adb0b8b15987ef888cb3f980df21fd482e14ab14..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201912_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.024791244665781656 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201912_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201912_H_GLOBAL.out deleted file mode 100644 index ef415df409b79cf383cee6ed22e5ca05c9b8dd8a..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201912_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.03148821194966634 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_201912_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_201912_M_GLOBAL.out deleted file mode 100644 index aba052361eb0852913e6c51af47d78696d46b027..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_201912_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 201912 STATION NETCDFs -0.023864348729451496 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202001_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202001_D_GLOBAL.out deleted file mode 100644 index 1958dfb1f278227f7cb50384b646a37311899aa9..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202001_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.032535831133524575 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202001_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202001_H_GLOBAL.out deleted file mode 100644 index b2efac47ffc58b5a7a4a47d8e69e4c87cae0b731..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202001_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.029724403222401937 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202001_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202001_M_GLOBAL.out deleted file mode 100644 index ff9a97fc23b4a369c603670e813748dbf763d1b4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202001_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202001 STATION NETCDFs -0.03370581865310669 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202002_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202002_D_GLOBAL.out deleted file mode 100644 index 97f2f3ad750089105e06df32782983142ff8d0c4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202002_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.03470508257548014 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202002_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202002_H_GLOBAL.out deleted file mode 100644 index 30083ec039efca099b5b0e5ca7d8dc36482a0bc6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202002_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.01965819994608561 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202002_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202002_M_GLOBAL.out deleted file mode 100644 index 73dff54e630faf4d4a143cf287ffa7391bb866f6..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202002_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202002 STATION NETCDFs -0.034512738386789955 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202003_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202003_D_GLOBAL.out deleted file mode 100644 index d7d0ddea49d1f0e8d3559666cb3b4a4f33788ea0..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202003_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.02346482276916504 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202003_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202003_H_GLOBAL.out deleted file mode 100644 index 16e95cb4a1718c03224d88ba0b9a3e1fa47229f4..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202003_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.033844486872355146 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202003_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202003_M_GLOBAL.out deleted file mode 100644 index e1e0c9057bf1fde5ddae36174af7385a51a5e82b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202003_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202003 STATION NETCDFs -0.034788894653320315 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202004_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202004_D_GLOBAL.out deleted file mode 100644 index 02399133933580758b6bfaa09f6af1f657e95b73..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202004_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.03483025232950846 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202004_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202004_H_GLOBAL.out deleted file mode 100644 index b6a4cd99a48ecdc81f8688cb49da0ca39a7ee39c..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202004_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.019096529483795165 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202004_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202004_M_GLOBAL.out deleted file mode 100644 index 9b2956af16afa7aacbbc45739eb988b871ad7b5b..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202004_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202004 STATION NETCDFs -0.020260481039683025 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202005_D_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202005_D_GLOBAL.out deleted file mode 100644 index 9df9c8cbff973d50dee1f51427df42190b2dac6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202005_D_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.032539220650990804 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202005_H_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202005_H_GLOBAL.out deleted file mode 100644 index 57d9aef0cfb6e5ce28bba6485511d92950ed2010..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202005_H_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.019570310910542805 \ No newline at end of file diff --git a/run/stage_logs/NAPMD_XYLENE/T2/0_202005_M_GLOBAL.out b/run/stage_logs/NAPMD_XYLENE/T2/0_202005_M_GLOBAL.out deleted file mode 100644 index ec7a4e58cf22671f240aaaa66d1db02c2bc33b6e..0000000000000000000000000000000000000000 --- a/run/stage_logs/NAPMD_XYLENE/T2/0_202005_M_GLOBAL.out +++ /dev/null @@ -1,2 +0,0 @@ -CONCATENATING 202005 STATION NETCDFs -0.02455549637476603 \ No newline at end of file diff --git a/run/start_GHOST_submit.sh b/run/start_GHOST_submit.sh index 417dc312117b86308a29fc19059967b28f55c08b..3c90018e31147c41ec5f8dbba19c1bcaa564a1e2 100644 --- a/run/start_GHOST_submit.sh +++ b/run/start_GHOST_submit.sh @@ -4,10 +4,9 @@ #SBATCH --ntasks=1 #SBATCH --output=/dev/null #SBATCH --error=/dev/null -##SBATCH --time=24:00:00 -#SBATCH --time=06:00:00 -#SBATCH --qos=gp_bsces #gp_bsces #gp_resa -#SBATCH --account=bsc32 #bsc32 #cns101 +##SBATCH --time=48:00:00 +#SBATCH --qos=gp_resa #gp_bsces #gp_resa +#SBATCH --account=cns101 #bsc32 #cns101 #load modules source load_modules.sh